HUD

  • Initiateur de la discussion alexis62590
  • Date de début
  • Initiateur de la discussion
alexis62590

alexis62590

Geek suprême
Messages
399
Score réaction
42
Points
140
Bonjour je vien de dev mon HUD et enfaite j'ai oublier quelque chose de débile x'))
Comment on enleve sa x'):
https://www.garrycity.fr/attachments/capture-png.73/

Possible de le faire avec une ligne de code dans le HUD ou il faut le faire sur le serveur ?
 
estebandu44

estebandu44

Geek suprême
Messages
496
Score réaction
108
Points
150
(HS)

c'est toi le jaloux

 
KinGo

KinGo

Antho
Messages
312
Score réaction
32
Points
130
-- this is the code that actually disables the drawing.
hook.Add("HUDShouldDraw", "HideDefaultDarkRPHud", function(name)
if hideHUDElements[name] then return false end
end)
 
estebandu44

estebandu44

Geek suprême
Messages
496
Score réaction
108
Points
150
KinGo à dit:
-- this is the code that actually disables the drawing.
hook.Add("HUDShouldDraw", "HideDefaultDarkRPHud", function(name)
if hideHUDElements[name] then return false end
end)
Ca c'est l'HUD sandbox
 
KinGo

KinGo

Antho
Messages
312
Score réaction
32
Points
130
En mettant ceci moi ça me l'enlève
 
FrenchSwan ♪

FrenchSwan ♪

Bambi
Messages
57
Score réaction
8
Points
35
Bonjour,
Pour enlever le HUD de base, il suffit de mettre se code si dans le code de votre HUD.
Code:
hook.Add("HUDShouldDraw", "HideDefaultDarkRPHud", function(name)
if hideHUDElements[name] then return false end
end)
Cordialement,

PS: Pense à mettee ton post en résolu ;-)
 
  • Banni
WabelHD

WabelHD

Geek suprême
Messages
262
Score réaction
59
Points
130
FrenchSwan ♪ à dit:
Bonjour,
Pour enlever le HUD de base, il suffit de mettre se code si dans le code de votre HUD.
Code:
hook.Add("HUDShouldDraw", "HideDefaultDarkRPHud", function(name)
if hideHUDElements[name] then return false end
end)
Cordialement,

PS: Pense à mettee ton post en résolu ;-)
Il manque pas un petit bout de code genre?
 
ZarosOVH

ZarosOVH

Modérateur
Membre du Staff
Messages
6 527
Score réaction
5 488
Points
1 295
FrenchSwan ♪ à dit:
Bonjour,
Pour enlever le HUD de base, il suffit de mettre se code si dans le code de votre HUD.
Code:
hook.Add("HUDShouldDraw", "HideDefaultDarkRPHud", function(name)
if hideHUDElements[name] then return false end
end)
Cordialement,

PS: Pense à mettee ton post en résolu ;-)
C'est bien gentil mais il manque une partie du code xD
 
FrenchSwan ♪

FrenchSwan ♪

Bambi
Messages
57
Score réaction
8
Points
35
Bonjour,
Code:
hook.Add( "HUDShouldDraw", "hide hud", function( name ) if ( name == "CHudHealth" or name == "CHudBattery" ) then return false end
Cordialement,
 
Feytone

Feytone

Chuck Norris
Messages
4 741
Score réaction
1 301
Points
600
Code:
local hideHUDElements = { -- if you DarkRP_HUD this to true, ALL of DarkRP's HUD will be disabled. That is the health bar and stuff, -- but also the agenda, the voice chat icons, lockdown text, player arrested text and the names above players' heads ["DarkRP_HUD"] = false, -- DarkRP_EntityDisplay is the text that is drawn above a player when you look at them. -- This also draws the information on doors and vehicles ["DarkRP_EntityDisplay"] = false, -- This is the one you're most likely to replace first -- DarkRP_LocalPlayerHUD is the default HUD you see on the bottom left of the screen -- It shows your health, job, salary and wallet, but NOT hunger (if you have hungermod enabled) ["DarkRP_LocalPlayerHUD"] = true, -- If you have hungermod enabled, you will see a hunger bar in the DarkRP_LocalPlayerHUD -- This does not get disabled with DarkRP_LocalPlayerHUD so you will need to disable DarkRP_Hungermod too ["DarkRP_Hungermod"] = true, -- Drawing the DarkRP agenda ["DarkRP_Agenda"] = true, -- Lockdown info on the HUD ["DarkRP_LockdownHUD"] = true, -- Arrested HUD ["DarkRP_ArrestedHUD"] = true,
}
-- this is the code that actually disables the drawing.
hook.Add("HUDShouldDraw", "HideDefaultDarkRPHud", function(name) if hideHUDElements[name] then return false end
end)
en client
 
Heist

Heist

Bambi
Messages
29
Score réaction
5
Points
35
Voila
 

Pièces jointes

  • Capture.PNG
    Capture.PNG
    40.2 KB Vues: 33
  • J'aime
Réactions: Mamadou Trug
  • Banni
WabelHD

WabelHD

Geek suprême
Messages
262
Score réaction
59
Points
130
FrenchSwan ♪ à dit:
Bonjour,
Code:
hook.Add( "HUDShouldDraw", "hide hud", function( name ) if ( name == "CHudHealth" or name == "CHudBattery" ) then return false end
Cordialement,
Ta encore oublier quelque chose
 
Feytone

Feytone

Chuck Norris
Messages
4 741
Score réaction
1 301
Points
600
  • Banni
WabelHD

WabelHD

Geek suprême
Messages
262
Score réaction
59
Points
130
thepsyca

thepsyca

Psychopathe
Messages
2 164
Score réaction
648
Points
365
  • J'aime
Réactions: Feytone
  • Banni
WabelHD

WabelHD

Geek suprême
Messages
262
Score réaction
59
Points
130
  • J'aime
Réactions: thepsyca
Feytone

Feytone

Chuck Norris
Messages
4 741
Score réaction
1 301
Points
600
  • Banni
WabelHD

WabelHD

Geek suprême
Messages
262
Score réaction
59
Points
130
Il y a un end pour fermer la condition et un pour fermer la fonction du hook ^^
 
FrenchSwan ♪

FrenchSwan ♪

Bambi
Messages
57
Score réaction
8
Points
35
WabelHD à dit:
Il y a un end pour fermer la condition et un pour fermer la fonction du hook ^^
Bonsoir ^^ ,
J'ai complétement zapé, merci du renseignement ;-)
Cordialement,
 
  • Initiateur de la discussion
alexis62590

alexis62590

Geek suprême
Messages
399
Score réaction
42
Points
140
Marche pas le HUD du darkrp est encore la :/
 
Feytone

Feytone

Chuck Norris
Messages
4 741
Score réaction
1 301
Points
600
alexis62590 à dit:
Marche pas le HUD du darkrp est encore la :/
Je te l'ai mis au dessus : à mettre en client (pour le coup moi il est dans mes modules darkrp, cl_hudreplacement.lua)
 
  • Initiateur de la discussion
alexis62590

alexis62590

Geek suprême
Messages
399
Score réaction
42
Points
140
J'ai vu.

Ah mais enfaite il faut passer en true:

local hideHUDElements = {
-- if you DarkRP_HUD this to true, ALL of DarkRP's HUD will be disabled. That is the health bar and stuff,
-- but also the agenda, the voice chat icons, lockdown text, player arrested text and the names above players' heads
["DarkRP_HUD"] = false,
 
thepsyca

thepsyca

Psychopathe
Messages
2 164
Score réaction
648
Points
365
Code:
-- This is the one you're most likely to replace first
-- DarkRP_LocalPlayerHUD is the default HUD you see on the bottom left of the screen
-- It shows your health, job, salary and wallet, but NOT hunger (if you have hungermod enabled)
["DarkRP_LocalPlayerHUD"] = false,
 
  • Initiateur de la discussion
alexis62590

alexis62590

Geek suprême
Messages
399
Score réaction
42
Points
140
Résolu merci a tous (il suffisait de mettre DarkRP_LocalPlayerHUD en false
 
thepsyca

thepsyca

Psychopathe
Messages
2 164
Score réaction
648
Points
365
alexis62590 à dit:
Résolu merci a tous (il suffisait de mettre DarkRP_LocalPlayerHUD en false
Go mettre résolu au nom du topic alors ;)
 
  • Initiateur de la discussion
alexis62590

alexis62590

Geek suprême
Messages
399
Score réaction
42
Points
140
J'ai rien dit enfaite il est revenu apres un reboot x')
 
Mamadou Trug

Mamadou Trug

Geek suprême
Messages
201
Score réaction
39
Points
130
Discord d'entraide
Rejoignz-nous sur Discord