- 192
- 30
что не так? (суть: хочу вывести рядом хп)
Lua:
require("lib.moonloader")
local display = true
local font = renderCreateFont("Arial", 20, 15)
function main()
sampRegisterChatCommand("hud", cmd_hud)
while true do
wait(0)
renderFontDrawText(font, "$" .. getPlayerMoney(PLAYER_HANDLE), 1200, 50, -1)
renderFontDrawText(font, "H" .. getCharHealth(pedHandle_ped))
end
end
function cmd_hud()
display = not display
displayHud(display)
end