require "lib.moonloader"
local sampev = require 'lib.samp.events'
local state = false
function main()
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("act", function()
state = not state
sampAddChatMessage("Activate "..(state and "ON" or "OFF"), -1)
end)
wait(-1)
end
function sampev.onServerMessage(color, text)
if text:find("Твой текст") and state then
lua_thread.create(function() wait(10)
sampProcessChatInput("/q")
end)
end
end