Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
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