function main()
while not isSampAvailable() do wait(0) end wait(1)
while true do
wait(0)
local text, prefix, color, pcolor = sampGetChatString(99)
if text:find("123") then
lua_thread.create(function()
wait(1)
sampProcessChatInput("/re")
end)
end
end
end