- Версия MoonLoader
- .026-beta
Скрипт крашит игру, в чём ошибся?
код:
local active = true
script_name(FOR_YURA)
script_author(DiteD331)
function main()
while not isSampAvailable() do wait(0) end
sampAddChatMessage('Script activated', 0xff0000)
while true do
wait(0)
sampRegisterChatCommand('okay', okay)
sampRegisterChatCommand('notokay', NotOkay)
end
end
function okay()
while active do
sampSendChat('/anim 6 13')
sampAddChatMessage('Proverka', 0xff0000)
end
end
function NotOkay()
active = not active
end