Sziasztok! Egy kis problémám akadt a hud-al. Egyszerűen mindet próbáltam de semmi nem volt jó. A kaja és pia sehogy se jó
function drink()
if getElementData(localPlayer, \"logedin\") then
setTimer(function()
setElementData(localPlayer, \"drink\", getElementData(getLocalPlayer(), \"drink\") -50)
if getElementData(localPlayer, \"drink\") <= 0 then
setElementData(localPlayer, \"drink\", 0)
end
end, 50, 0)
end
end
function food()
if getElementData(localPlayer, \"logedin\") then
setTimer(function()
setElementData(localPlayer, \"food\", getElementData(getLocalPlayer(), \"food\") -1)
if getElementData(localPlayer, \"food\") <= 0 then
setElementData(localPlayer, \"food\", 0)
end
end, 50, 0)
end
end
Debugscript: