- 919
- 218
Пишу хук и хочу, чтобы мне автоматом вырубало игру при нужной мне строке. Но вместо этого вижу только
Кто шарит, в чём может быть проблема? Поток создается для того чтобы система не ругалась на флуд.
Lua:
require 'lib.moonloader'
local hook = require 'lib.samp.events'
function hook.onServerMessage(color,msg)
if flag then
if string.find(msg, "Server closed the connection") or string.find(msg, "The server didn't respond") then
lua_thread.create(function()
wait(1000)
sampSendChat("/q")
end)
end
end
end