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
I am using: "Health and Armor Commands"
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=1845716357
and I have tested "Custom HP v2"
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=975378872
Have a good day!
The small things which show segments like to get out of the healthbar.
Is it something that can be fixed?
Also check this very helpful guide: https://www.gmodstore.com/community/threads/6976
Thanks for addon and keep it up.
[Ike HUD] lua/autorun/client/cl_ike_hud.lua:361: attempt to index field 'Victim' (a nil value)
1. OnDeath - lua/autorun/client/cl_ike_hud.lua:361
2. v - lua/autorun/client/cl_ike_hud.lua:1117
3. unknown - lua/includes/modules/hook.lua:84 (x181)
I guess you need some changes:
death.Victim:IsValid() -> death.Victim
death.Attacker:IsValid() -> death.Attacker
(lua automatic validation aka ~= nil for table value)
in line 361 `if displayTime < duration and death.Victim:IsValid() and death.Attacker:IsValid() then`
(if displayTime < duration and death.Victim and death.Attacker then)
I've tested the change and it fixed the error.