Modification texte de munition jaune en bas

  • Initiateur de la discussion
X

xZaykow

Nouveau né
Messages
1
Score réaction
0
Points
15
Bonjour j'aimerai savoir si il est possible de modifier le texte de base ou 'hud' des munitions qu'il nous reste dans le chargeur ( écrit en bas droite en jaune in game ) ou savoir si il se change avec certain hud ? merci
 
Marco.D

Marco.D

Bambi
Messages
19
Score réaction
3
Points
30
Il change avec un hud tu peux aussi l'enlever avec ça dans
/garrysmod/lua/autorun/client
Code:
hook.Add("HUDShouldDraw", "hide_hud", function(element) local ply = LocalPlayer() if not ply:IsValid() then return end if (element == "CHudHealth" and ply:Health() == ply:GetMaxHealth()) or (element == "CHudBattery" and ply:Armor() == 100) then return false end if element == "CHudAmmo" or element == "CHudSecondaryAmmo" then local wep = ply:GetActiveWeapon() if wep:IsValid() then if element == "CHudAmmo" and wep:Clip1() == wep:GetMaxClip1() then return false end if element == "CHudSecondaryAmmo" and wep:Clip2() == wep:GetMaxClip2() then return false end end end
end)
 
Discord d'entraide
Rejoignz-nous sur Discord