local sampev = require 'lib.samp.events'
cmd = false
function main() --this function will start when script load
while not isSampAvailable() do wait(0) end --wait for samp load
sampRegisterChatCommand('mycash', function() cmd = not cmd end)
while true do
wait(0)
--code
end
end
function sampev.onServerMessage(color, text)
if cmd then
if text:find("Не флуди!") and not text:find("%w+_%w+ говорит:") then
return false
end
end
end