local drugs = 3 --кол-во нарко
local min_health = 30 --Кол-во хп, при котором будет юзатся нарко
local auto_sbiv = false --Авто сбив после использования
local showmessage = true --Отображать сообщения скрипта
function main()
while not isSampAvailable() do wait(0) end
if showmessage then
sampAddChatMessage('[AutoDrugs] AutoDrug loaded. MinHP: ' .. min_health .. ', Drugs: ' .. drugs, -1)
end
while true do
wait(0)
local health = getCharHealth(PLAYER_PED) --получаем здоровье игрока
if health < min_health then --Если наше зворовье меньше, чем записанное в переменную min_health, то...
if showmessage then sampAddChatMessage('[AutoDrugs] +Drugs', -1) end
sampSendChat('/usedrugs ' .. drugs) --Отправить в чат команду /usedrugs [кол-во, которое указанно в переменной]
if auto_sbiv then
local x, y, z = sampGetCharCoordinates(PLAYER_PED)
setCharCoordinates(PLAYER_PED, x, y, z)
end
end
end
end