Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Go steam/steamapps/common/garrysmod/garrysmod/addons/
find addon as a .gma file, as for me it is /hl2_quick_info_1138414631.gma
Extract your addon with GMAD and then seek for .lua file in created folder
Now open this file with a Wordpad and seek for:
local clrNormal = Color(R, G, B, A) - that is the color model used by source engine
RGBA is the the same color state as usual RGB but with Alpha (transparent) channel
^ so for setting the color you want - just seek for it in RGB and put it in ^
FOR EXAMPLE
i like white so i wanna have white hud
white in RGB looks like 255 255 255
so i set local clrNormal = Color(255, 255, 255, 255)
Basically you dont have to change Alpha (4th channel), so leave it as is, 255 (non-transparent)
Also, you can change next line ( local clrCaution ) the same way
It is already set to local clrCaution = Color(255, 48, 0, 255) , which means it to be ~red~
This way clrCaution ~red~ means hp/ammo indicator will turn red when player reaches cautious level of hp/ammo
WARNING! DELETE ORIGINAL .GMA FILE BEFORE STARTING THE GAME