• Salut Visiteur ! ✌
    Découvre nos partenaires officiels avec VeryLeak's. Des choix réfléchis, dignes de confiance pour tes avantages.

    StoryFound | REFUNDER TEAM

    StoryFound

    Rejoindre le Canal ✨ ou Plus d'information 📃

    Une question ? Rejoingnez nos différents canaux (Discord, Telegram, Revolt)

    Nos Canaux Communautaires

    Cet affichage peut se clôturer définitivement via la croix en haut à droite.

Non-Officiel KDHUD | NoLeak | Exclu VL

.Dera

Salut les terriens
Level 2

Torrents Stats

Messages
75
J'aime
282
Trophées
140
Inscrit
5 Octobre 2018
Bonjour je vous présente mon HUD celui-ci est fortement inspiré de l'HUD d'AdastraV2 (gtarp).

Fonctionne que avec la faim d’activer
Screen:
rp_glife_rockford30032.jpgrp_glife_rockford30033.jpg

Content: https://steamcommunity.com/sharedfiles/filedetails/?id=1734360495
Téléchargement:
Contenu masqué
Contenu masqué
Vous devez aimer ce post pour à accéder à ce contenu.
???Si vous avez des questions ça ce passe ici ???​
 
Dernière édition:

iron carmona

l'Actif 🥉
Level 1

Torrents Stats

Messages
11
J'aime
0
Trophées
56
Inscrit
23 Janvier 2018

Miadow

VeryLeak's Unique Member 👑
Level 4

Torrents Stats

Messages
247
J'aime
2 638
Trophées
622
Inscrit
25 Décembre 2018
Excellent ça!
 

Miadow

VeryLeak's Unique Member 👑
Level 4

Torrents Stats

Messages
247
J'aime
2 638
Trophées
622
Inscrit
25 Décembre 2018
Je suis spammer d'erreurs dans la console, et, l'argent n'est aucunement affiché.
 

JamesPositive

l'Affirmé 🥈
Level 1

Torrents Stats

Messages
86
J'aime
2
Trophées
116
Inscrit
6 Juin 2017
Merci
 

ergo

l'Actif 🥉
Level 1

Torrents Stats

Messages
13
J'aime
1
Trophées
76
Inscrit
13 Juin 2018
franchement très propre comme HUD pour un débutant ;) tous se qui manque je dirais de mettre le jobs en questions et la tu aura un HUD vraiment au top
 

darkvador

VeryLeak's Unique Member 👑
Level 1

Torrents Stats

Messages
104
J'aime
4
Trophées
366
Inscrit
27 Décembre 2017
gg merci
 

quent1du78

Sup19
Level 5

Torrents Stats

Messages
107
J'aime
277
Trophées
275
Inscrit
21 Juillet 2018

.Dera

Salut les terriens
Level 2

Torrents Stats

Messages
75
J'aime
282
Trophées
140
Inscrit
5 Octobre 2018

Miadow

VeryLeak's Unique Member 👑
Level 4

Torrents Stats

Messages
247
J'aime
2 638
Trophées
622
Inscrit
25 Décembre 2018
Ouais je suis bien en DarkRP
 

.Dera

Salut les terriens
Level 2

Torrents Stats

Messages
75
J'aime
282
Trophées
140
Inscrit
5 Octobre 2018
Envoie l'erreur
 

wassim

VeryLeak's Unique Member 👑
Level 2

Torrents Stats

Messages
110
J'aime
10
Trophées
368
Inscrit
2 Février 2018

Miadow

VeryLeak's Unique Member 👑
Level 4

Torrents Stats

Messages
247
J'aime
2 638
Trophées
622
Inscrit
25 Décembre 2018
Pourquoi les images ne sont pas en blanches chez moi ? xd
 

.Dera

Salut les terriens
Level 2

Torrents Stats

Messages
75
J'aime
282
Trophées
140
Inscrit
5 Octobre 2018
Petite erreur de ma par remplace le code par celui-ci @SynokaSAMP
Code:
--[[-------------------------------------------------------------------------
 
KDHUD crée par Kinad.

Discord: Kinad330#9223
Steam: https://steamcommunity.com/id/45441545455/

---------------------------------------------------------------------------]]

--[[-------------------------------------------------------------------------
        CONFIG
---------------------------------------------------------------------------]]


--Ne pas toucher
local hide = {
    CHudHealth = true,
    CHudBattery = true,
    DarkRP_HUD = true,
    DarkRP_Hungermod = true,
    CHudAmmo = true,
    CHudSecondaryAmmo = true
}

hook.Add("HUDShouldDraw", "S:KD:HUD:Hook:HUDShouldDraw", function(name)
    if (hide[name]) then return false end
end)


--Vous pouvez touché :)
local config = {}
config.backColor = Color(25, 25, 25, 245) -- Couleur noir
config.blueColor = Color(0, 80, 117, 245) -- Couleur bleu
config.textColor = Color(255, 255, 255, 255) -- Couleur du text
config.textmoney = " €" -- Money utiliser
config.borderRadius = 1 -- Pourcentage de degrés des angles
config.hungerMod = false -- L'addon est fait pour utiliser l'HungerMod.



--[[-------------------------------------------------------------------------
        DESIGN
---------------------------------------------------------------------------]]
hook.Add( "HUDPaint", "KDHUD", function()
draw.RoundedBox(config.borderRadius, ScrW() / 250 * 193.6, ScrH() / 1.054, ScrW() / 6.65, ScrH() / 250, config.blueColor)
draw.RoundedBox(config.borderRadius, ScrW() / 250 * 193.6, ScrH() / 1.049, ScrW() / 6.65, ScrH() / 26, config.backColor)
draw.RoundedBox(config.borderRadius, ScrW() / 300 * 279, ScrH() / 1.054, ScrW() / 15.5, ScrH() / 250, config.blueColor)
draw.RoundedBox(config.borderRadius, ScrW() / 300 * 279, ScrH() / 1.049, ScrW() / 15.5, ScrH() / 26, config.backColor)

--[[-------------------------------------------------------------------------
        TEXT
---------------------------------------------------------------------------]]
--Health
surface.SetMaterial(Material("materials/KDHUD/health.png"))
    surface.SetDrawColor(255, 255, 255)
    surface.DrawTexturedRect(ScrW() / 254 * 204, ScrH() / 1.044, 24, 24)
draw.SimpleText (LocalPlayer():Health() .. "", "KDTEXT", ScrW() / 1.250, ScrH() / 1.038, config.textColor, TEXT_ALIGN_RIGHT, TEXT_ALIGN_RIGHT)


--Armor
surface.SetMaterial(Material("materials/KDHUD/armor.png"))
     surface.SetDrawColor(255, 255, 255)
     surface.DrawTexturedRect(ScrW() / 239.6 * 204, ScrH() / 1.044, 24, 24)
draw.SimpleText (LocalPlayer():Armor() .. "", "KDTEXT",ScrW() / 1.178 , ScrH() / 1.038, config.textColor, TEXT_ALIGN_RIGHT, TEXT_ALIGN_RIGHT)

--Food
surface.SetMaterial(Material("materials/KDHUD/food.png"))
    surface.SetDrawColor(255, 255, 255)
    surface.DrawTexturedRect(ScrW() / 227 * 204, ScrH() / 1.044, 24, 24)
draw.SimpleText (math.Round(LocalPlayer():getDarkRPVar("Energy")) .. "", "KDTEXT", ScrW() / 1.1172 , ScrH() / 1.038, config.textColor, TEXT_ALIGN_RIGHT, TEXT_ALIGN_RIGHT)

--Money
draw.SimpleText (LocalPlayer():getDarkRPVar("money") .. config.textmoney, "KDMONEY", ScrW() / 1.01, ScrH() / 1.038, config.textColor, TEXT_ALIGN_RIGHT, TEXT_ALIGN_RIGHT)

if !LocalPlayer():Alive() then return end
if not IsValid(LocalPlayer():GetActiveWeapon()) then return end

    if LocalPlayer():GetActiveWeapon():Clip1() ~= -1 then
          draw.RoundedBox(config.borderRadius, ScrW() / 278 * 193.6, ScrH() / 1.049, ScrW() / 13.5, ScrH() / 26, config.backColor)
          draw.RoundedBox(config.borderRadius, ScrW() / 278 * 193.6, ScrH() / 1.054, ScrW() / 13.5, ScrH() / 250, config.blueColor)
        draw.SimpleText(LocalPlayer():GetActiveWeapon():Clip1() .. "/" .. LocalPlayer():GetAmmoCount(LocalPlayer():GetActiveWeapon():GetPrimaryAmmoType()), "KDAMMO",ScrW() / 1.36,  ScrH() / 1.028, Color(255, 255, 255), TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER)
    end
end)

surface.CreateFont( "KDTEXT", {
    font = "Roboto",
    extended = false,
    size = 17,
    weight = 500,
    blursize = 0,
    scanlines = 0,
    antialias = true,
    underline = false,
    italic = false,
    strikeout = false,
    symbol = false,
    rotary = false,
    shadow = false,
    additive = false,
    outline = false,
} )

surface.CreateFont( "KDMONEY", {
    font = "Roboto",
    extended = false,
    size = 18,
    weight = 500,
    blursize = 0,
    scanlines = 0,
    antialias = true,
    underline = false,
    italic = false,
    strikeout = false,
    symbol = false,
    rotary = false,
    shadow = false,
    additive = false,
    outline = false,
} )

surface.CreateFont( "KDAMMO", {
    font = "Roboto",
    extended = false,
    size = 22,
    weight = 500,
    blursize = 0,
    scanlines = 0,
    antialias = true,
    underline = false,
    italic = false,
    strikeout = false,
    symbol = false,
    rotary = false,
    shadow = false,
    additive = false,
    outline = false,
} )
 

H4X0RR

VeryLeak's Unique Member 👑
Level 5

Torrents Stats

Messages
1 513
J'aime
1 234
Trophées
830
Inscrit
26 Novembre 2015
Petite erreur de ma par remplace le code par celui-ci @SynokaSAMP
Code:
--[[-------------------------------------------------------------------------

KDHUD crée par Kinad.

Discord: Kinad330#9223
Steam: https://steamcommunity.com/id/45441545455/

---------------------------------------------------------------------------]]

--[[-------------------------------------------------------------------------
        CONFIG
---------------------------------------------------------------------------]]


--Ne pas toucher
local hide = {
    CHudHealth = true,
    CHudBattery = true,
    DarkRP_HUD = true,
    DarkRP_Hungermod = true,
    CHudAmmo = true,
    CHudSecondaryAmmo = true
}

hook.Add("HUDShouldDraw", "S:KD:HUD:Hook:HUDShouldDraw", function(name)
    if (hide[name]) then return false end
end)


--Vous pouvez touché :)
local config = {}
config.backColor = Color(25, 25, 25, 245) -- Couleur noir
config.blueColor = Color(0, 80, 117, 245) -- Couleur bleu
config.textColor = Color(255, 255, 255, 255) -- Couleur du text
config.textmoney = " €" -- Money utiliser
config.borderRadius = 1 -- Pourcentage de degrés des angles
config.hungerMod = false -- L'addon est fait pour utiliser l'HungerMod.



--[[-------------------------------------------------------------------------
        DESIGN
---------------------------------------------------------------------------]]
hook.Add( "HUDPaint", "KDHUD", function()
draw.RoundedBox(config.borderRadius, ScrW() / 250 * 193.6, ScrH() / 1.054, ScrW() / 6.65, ScrH() / 250, config.blueColor)
draw.RoundedBox(config.borderRadius, ScrW() / 250 * 193.6, ScrH() / 1.049, ScrW() / 6.65, ScrH() / 26, config.backColor)
draw.RoundedBox(config.borderRadius, ScrW() / 300 * 279, ScrH() / 1.054, ScrW() / 15.5, ScrH() / 250, config.blueColor)
draw.RoundedBox(config.borderRadius, ScrW() / 300 * 279, ScrH() / 1.049, ScrW() / 15.5, ScrH() / 26, config.backColor)

--[[-------------------------------------------------------------------------
        TEXT
---------------------------------------------------------------------------]]
--Health
surface.SetMaterial(Material("materials/KDHUD/health.png"))
    surface.SetDrawColor(255, 255, 255)
    surface.DrawTexturedRect(ScrW() / 254 * 204, ScrH() / 1.044, 24, 24)
draw.SimpleText (LocalPlayer():Health() .. "", "KDTEXT", ScrW() / 1.250, ScrH() / 1.038, config.textColor, TEXT_ALIGN_RIGHT, TEXT_ALIGN_RIGHT)


--Armor
surface.SetMaterial(Material("materials/KDHUD/armor.png"))
     surface.SetDrawColor(255, 255, 255)
     surface.DrawTexturedRect(ScrW() / 239.6 * 204, ScrH() / 1.044, 24, 24)
draw.SimpleText (LocalPlayer():Armor() .. "", "KDTEXT",ScrW() / 1.178 , ScrH() / 1.038, config.textColor, TEXT_ALIGN_RIGHT, TEXT_ALIGN_RIGHT)

--Food
surface.SetMaterial(Material("materials/KDHUD/food.png"))
    surface.SetDrawColor(255, 255, 255)
    surface.DrawTexturedRect(ScrW() / 227 * 204, ScrH() / 1.044, 24, 24)
draw.SimpleText (math.Round(LocalPlayer():getDarkRPVar("Energy")) .. "", "KDTEXT", ScrW() / 1.1172 , ScrH() / 1.038, config.textColor, TEXT_ALIGN_RIGHT, TEXT_ALIGN_RIGHT)

--Money
draw.SimpleText (LocalPlayer():getDarkRPVar("money") .. config.textmoney, "KDMONEY", ScrW() / 1.01, ScrH() / 1.038, config.textColor, TEXT_ALIGN_RIGHT, TEXT_ALIGN_RIGHT)

if !LocalPlayer():Alive() then return end
if not IsValid(LocalPlayer():GetActiveWeapon()) then return end

    if LocalPlayer():GetActiveWeapon():Clip1() ~= -1 then
          draw.RoundedBox(config.borderRadius, ScrW() / 278 * 193.6, ScrH() / 1.049, ScrW() / 13.5, ScrH() / 26, config.backColor)
          draw.RoundedBox(config.borderRadius, ScrW() / 278 * 193.6, ScrH() / 1.054, ScrW() / 13.5, ScrH() / 250, config.blueColor)
        draw.SimpleText(LocalPlayer():GetActiveWeapon():Clip1() .. "/" .. LocalPlayer():GetAmmoCount(LocalPlayer():GetActiveWeapon():GetPrimaryAmmoType()), "KDAMMO",ScrW() / 1.36,  ScrH() / 1.028, Color(255, 255, 255), TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER)
    end
end)

surface.CreateFont( "KDTEXT", {
    font = "Roboto",
    extended = false,
    size = 17,
    weight = 500,
    blursize = 0,
    scanlines = 0,
    antialias = true,
    underline = false,
    italic = false,
    strikeout = false,
    symbol = false,
    rotary = false,
    shadow = false,
    additive = false,
    outline = false,
} )

surface.CreateFont( "KDMONEY", {
    font = "Roboto",
    extended = false,
    size = 18,
    weight = 500,
    blursize = 0,
    scanlines = 0,
    antialias = true,
    underline = false,
    italic = false,
    strikeout = false,
    symbol = false,
    rotary = false,
    shadow = false,
    additive = false,
    outline = false,
} )

surface.CreateFont( "KDAMMO", {
    font = "Roboto",
    extended = false,
    size = 22,
    weight = 500,
    blursize = 0,
    scanlines = 0,
    antialias = true,
    underline = false,
    italic = false,
    strikeout = false,
    symbol = false,
    rotary = false,
    shadow = false,
    additive = false,
    outline = false,
} )
Ton update a été accepté au passage ^^
 

Miadow

VeryLeak's Unique Member 👑
Level 4

Torrents Stats

Messages
247
J'aime
2 638
Trophées
622
Inscrit
25 Décembre 2018
Super merci à toi de la petite update de code!
 

Pana4800

Nouveau 🌱
Level 1

Torrents Stats

Messages
3
J'aime
0
Trophées
3
Inscrit
13 Mai 2019

wassim

VeryLeak's Unique Member 👑
Level 2

Torrents Stats

Messages
110
J'aime
10
Trophées
368
Inscrit
2 Février 2018
Toujour une erreur :
[ERROR] lua/includes/extensions/math.lua:156: attempt to perform arithmetic on local 'num' (a nil value)
1. Round - lua/includes/extensions/math.lua:156
2. fn - addons/kdhud/lua/autorun/client/kdhud.lua:70
3. unknown - addons/ulib/lua/ulib/shared/hook.lua:109
 

.Dera

Salut les terriens
Level 2

Torrents Stats

Messages
75
J'aime
282
Trophées
140
Inscrit
5 Octobre 2018
C’est celle que on a règler non ?
 
Haut Bas