- 244
- 117
Нужно сделать так, чтобы каждые 100 мс при нажатии двух клавиш отнималось по 1 хп у персонажа.
Данный способ вычисления очков здоровья персонажа не работает по непонятной мне причине, списывает сразу 100 хп.
Пробовал так, не работает.:
require 'lib.moonloader'
local inicfg = require 'inicfg'
hp = getCharHealth(PLAYER_PED)
keyFirst = VK_LMENU
keySecond = VK_1
useDelay = true
delay = 1000
function main()
while true do
wait(1)
if isKeyControlAvailable() then
if isKeyDown(keyFirst) and isKeyDown(keySecond) and not isCharDead(PLAYER_PED) then
if timer == 0 then timer = os.clock() end
if useDelay and ((os.clock() - timer) < (delay / 1000)) then
printString('wait\': ' .. math.floor((os.clock() - timer) / delay * 1e5) ..'%', 100)
else
if not isCharInAnyCar(PLAYER_PED) then
lua_thread.create(function()
wait(100)
setCharHealth(PLAYER_PED, hp-1)
end)
else
setCharHealth(PLAYER_PED, hp-1)
--explodeCar(storeCarCharIsInNoSave(PLAYER_PED))
end
--printString('zemlya puhom!', 1500)
end
else
timer = 0
end
end
end
end
function isKeyControlAvailable()
if not isSampLoaded() then return true end
if not isSampfuncsLoaded() then return not sampIsChatInputActive() and not sampIsDialogActive() end
return not sampIsChatInputActive() and not sampIsDialogActive() and not isSampfuncsConsoleActive()
end
Данный способ вычисления очков здоровья персонажа не работает по непонятной мне причине, списывает сразу 100 хп.
Последнее редактирование: