triazov
Активный
- 264
- 58
Лучше сделай так меньше зависимостей и плюс оптимизация всегда нужна
Луа:
local state = false
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand('smk', function() state = not state
sampAddChatMessage(state and 'Включен' or 'Выключен', -1)
end)
while true do
wait(0)
if state and getCharHealth(1) < 20 then
sampSendChat('/smoke')
wait(10000)
end
end
end