- Initiateur de la discussion
SkyWarZzeur
Geek
- Messages
- 31
- Score réaction
- 7
- Points
- 95
Bonsoir, j'ai un petit sous avec mon hud, alors voilà, j'ai ajouté un texte permettant d'indiquer la vie, l'armure, et la faim sur celui-ci, mais la barre d'indication passe avant le texte, or je veux le contraire: Screenshot
voilà le code:
si quelqu'un à une idée je suis preneur, merci d'avance ^^
voilà le code:
code:
Health = Lerp(FrameTime() * 6, Health, LocalPlayer():Health()) local HealthWidth = math.Min(170 * (Health / 100), 170) local HealthText = ply:Health() ChifumasDrawIcon(Scrw - 222, Scrh - (Height - 8), 16, 16, Color06, Icon01) draw.SimpleText(HealthText, "ChifumasRoboto20b", Scrw - 120, Scrh - (Height - 6), Color(255,255,255)) draw.RoundedBox(0, Scrw - 194, Scrh - (Height - 15), 170, 2, Color02) draw.RoundedBox(0, Scrw - 194, Scrh - (Height - 15), HealthWidth, 2, Color06) Armor = Lerp(FrameTime() * 6, Armor, LocalPlayer():Armor()) local ArmorWidth = math.Min(170 * (Armor / 100), 170) local ArmorText = ply:Armor() ChifumasDrawIcon(Scrw - 222, Scrh - (Height - 40), 16, 16, Color07, Icon02) draw.SimpleText(ArmorText, "ChifumasRoboto20b", Scrw - 120, Scrh - (Height - 38), Color(255,255,255)) draw.RoundedBox(0, Scrw - 194, Scrh - (Height - 47), 170, 2, Color02) draw.RoundedBox(0, Scrw - 194, Scrh - (Height - 47), ArmorWidth, 2, Color07) if not Hungermod then Hunger = Lerp(FrameTime() * 6, Hunger, LocalPlayer():getDarkRPVar("Energy")) local HungerWidth = math.Min(170 * (Hunger / 100), 170) local HungerText = math.Round(ply:getDarkRPVar("Energy")) ChifumasDrawIcon(Scrw - 222, Scrh - (Height - 72), 16, 16, Color08, Icon03) draw.SimpleText(HungerText, "ChifumasRoboto20b", Scrw - 120, Scrh - (Height - 70), Color(255,255,255)) draw.RoundedBox(0, Scrw - 194, Scrh - (Height - 79), 170, 2, Color02) draw.RoundedBox(0, Scrw - 194, Scrh - (Height - 79), HungerWidth, 2, Color08) end