- 1
- 0
Lua:
local key = 49
local active = false
function main()
while not isSampAvailable() do wait(0) end
while true do
wait(0)
if active then
sampSendChat('/ot')
end
if wasKeyPressed(key) then
if active then
active = false
sampAddChatMessage('Флудер в /ot выключен', -1)
else
active = true
sampAddChatMessage('Флудер в /ot включен', -1)
end
end
end
end
Последнее редактирование модератором: