安裝 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(越南文)
Українська(烏克蘭文)
回報翻譯問題
The HUD element was made with vscripting and it's part of this mutation, not a separate mod. Vscripts are fine as long as you are working on mutations or maps because they can have dedicated script files. However, if you modify the default script files you are going to have conflicts with all other mods using the same method (don't do it!).
L4D2 scripting language is Squirrel. Learning that is a rocky road if you don't have prior experience of other languages. If you do then it should be quite easy to pick up. Here are the steps if you really want to go for it:
1. Create the HUD element:
https://developer.valvesoftware.com/wiki/L4D2_EMS/Appendix:_HUD
2. Create table where to store kill counts:
https://developer.valvesoftware.com/wiki/Squirrel#Tables
3. Update the data table and HUD every time an infected is killed. This one should be connected to "OnGameEvent_zombie_death" event function. Basically you just validate that zombie death was caused by a survivor, increment the value in the data table and call a function which updates the HUD.