- 8
- 0
Добрый вечер мужчины и мальчики, решил попробовать сделать автонарко при смерти, при попытки включения скрипта выдает только NOT WORK.
Код:
script_name("autousedrugs")
local min_health = 1
require "lib.moonloader"
local act = false
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand("autousedrugs", function()
act = not act
sampAddChatMessage("[autousedrugs]: "..(state and "work" or "not work"), -1)
end)
while true do
wait(0)
if act then
local health = getCharHealth(PLAYER_PED)
if health < min_health then
wait(2800)
sampSendChat('/usedrugs 15')
end
end
end
end