- 224
- 98
Не могу найти ошибку. Я новичок, хотел сделать бота, который когда видит, что меньше 80хп, курит сигару. Не могу найти ошибку, помогите пожалуйста!
Это LUA
Это LUA
Код:
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand("smk", smk)
smoke = false
while true do
wait(0)
health = getCharHealth(PLAYER_PED)
if smoke then
if ( health < 80 ) then
sampSendChat("/smoke")
end
end
end
function smk()
smoke = not smoke
sampAddChatMessage("Запущен!", -1)
end
end