- 19
- 5
крч не могу запустить пишет что в 19 строчке что то не так. Хотя вроде бы всё так.
Код:
require("lib.moonloader")
local script = false
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand("pepe", pepe)
while true do
wait(0)
end
end
function pepe(message)
script = not script
sampAddChatMessage(script and "Active!" or "Not active!", -1)
end
while true do
wait(0)
if script then
printStyledString("Active!", 20, 7)
end
end