安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题






it even shows the amount of ammo for the tac-rp medkit (you have no idea how many huds struggle with that!)
I am using: "Health and Armor Commands"
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=1845716357
and I have tested "Custom HP v2"
https://psteamcommunity.yuanyoumao.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.