- Initiateur de la discussion
ALkenos
Geek suprême
- Messages
- 76
- Score réaction
- 3
- Points
- 105
hook.Add("HUDPaint", "HUD Tuto", function()
-- on prend la valeur de vie ect du joueur
local health = LocalPlayer():Health()
local armor = LocalPlayer():Armor()
local nourriture = LocalPlayer():getDarkRPVar(Energy)
--On fait les boites de couleur
draw.RoundedBox(8, 0, 1000, health * 3, 15,Color(240,52,52,255))
draw.RoundedBox(8, 0, 980, armor * 3, 15,Color(49, 140, 231))
draw.RoundedBox(8, 0, 700, nourriture * 3, 15,Color(49, 140, 231))
end)
-------------------------------------------------------------------------------
-- Suprimé le HUD de base : Ne pas Suprimé /!\ --
-------------------------------------------------------------------------------
hook.Add( "HUDShouldDraw", "DefautHUD", function( name )
if ( name == "CHudHealth" or name == "CHudBattery" ) then
return false
end
end)
local hideHUDElement = {
["DarkRP Hungermod"] = true,
}
hook.Add("HUDShouldDraw", "HideDefaultDarkRPHud", function(name)
end)
voici mon code pour mon hud mais il me mets cette erreur
[ERROR] lua/autorun/hud.lua:9: attempt to perform arithmetic on local 'nourriture' (a nil value)
1. v - lua/autorun/hud.lua:9
2. unknown - lua/includes/modules/hook.lua:84
comment la régler merci d'avance
-- on prend la valeur de vie ect du joueur
local health = LocalPlayer():Health()
local armor = LocalPlayer():Armor()
local nourriture = LocalPlayer():getDarkRPVar(Energy)
--On fait les boites de couleur
draw.RoundedBox(8, 0, 1000, health * 3, 15,Color(240,52,52,255))
draw.RoundedBox(8, 0, 980, armor * 3, 15,Color(49, 140, 231))
draw.RoundedBox(8, 0, 700, nourriture * 3, 15,Color(49, 140, 231))
end)
-------------------------------------------------------------------------------
-- Suprimé le HUD de base : Ne pas Suprimé /!\ --
-------------------------------------------------------------------------------
hook.Add( "HUDShouldDraw", "DefautHUD", function( name )
if ( name == "CHudHealth" or name == "CHudBattery" ) then
return false
end
end)
local hideHUDElement = {
["DarkRP Hungermod"] = true,
}
hook.Add("HUDShouldDraw", "HideDefaultDarkRPHud", function(name)
end)
voici mon code pour mon hud mais il me mets cette erreur
[ERROR] lua/autorun/hud.lua:9: attempt to perform arithmetic on local 'nourriture' (a nil value)
1. v - lua/autorun/hud.lua:9
2. unknown - lua/includes/modules/hook.lua:84
comment la régler merci d'avance