Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
local toggle = false
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand('zv', function()
toggle = not toggle
sampAddChatMessage(toggle and "ON" or "OFF", -1)
end)
while true do
wait(0)
if toggle then
--CODE
end
end
end
local toggle = false
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand('zv', function()
toggle = not toggle
sampAddChatMessage(toggle and "ON" or "OFF", -1)
end)
while true do
wait(0)
if toggle then
--CODE
end
end
end