function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('lic', function ()
lua_thread.create(function ()
sampProcessChatInput('/me раз')
wait(1000)
sampProcessChatInput('/me два')
wait(1000)
sampProcessChatInput('/me три')
end)
end)
while true do
wait(0)
end
end