Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: Magneto on Jul 31, 2018, 07:53 PM

Title: GUI Health problem
Post by: Magneto on Jul 31, 2018, 07:53 PM
I'm trying to use Aniks GUI Health & Armour Bar ( https://forum.vc-mp.org/?topic=4443.0 ) but there is an error: https://imgur.com/a/p7Ie63F
The error is on script or on me?
Title: Re: GUI Health problem
Post by: MatheuS on Jul 31, 2018, 11:55 PM
Hud.AddFlags(flags) — a function that enables a HUD element or multiple elements
Hud.RemoveFlags(flags) — a function that disables a HUD element or multiple

Example:
Hud.RemoveFlags(HUD_FLAG_HEALTH);
Source: https://forum.vc-mp.org/?topic=4660.0
Title: Re: GUI Health problem
Post by: Magneto on Aug 01, 2018, 11:54 AM
Thanks @MatheuS