- Версия MoonLoader
- Другое
Хотел сделать, что бы автоматом юзало healme в инте, но почему то не юзает его, в чем проблемка?
Lua:
local directIni = 'Healme.ini'
local inicfg = require 'inicfg'
local ini = inicfg.load({
set = {
healme = true,
}}, directIni)
inicfg.save(ini, directIni)
local autohealme = true
local health = 0
local result, id = 0, 0
function Healme()
while true do
wait(100)
if ini.set.healme then
repeat
wait(100)
if autohealme then
result, id = sampGetPlayerIdByCharHandle(PLAYER_PED)
health = sampGetPlayerHealth(id)
if health < 100 then
wait(1000)
result, id = sampGetPlayerIdByCharHandle(PLAYER_PED)
health = sampGetPlayerHealth(id)
if health < 100 then
sampSendChat("/healme")
end
else
wait(2000)
autohealme = false
end
end
until not autohealme
end
end
end