安装 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(越南语)
Українська(乌克兰语)
报告翻译问题






https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=2972499450
In scripts/widgets/iteminfo_desc.lua, line 401
local damagemult = self:GetPlayerDamageModifier()
damage = damage * damagemult
should be replaced by
if type(damage) == "number" then
local damagemult = self:GetPlayerDamageModifier()
damage = damage * damagemult
else
damage = "???"
end
and line 642
txt:SetString(Format1D(damage))
should be replaced by
local str = damage
if type(damage) == "number" then
str = Format1D(damage)
end
txt:SetString(str)
I hope you'll fix it soon
Here's the reference: https://forums.kleientertainment.com/forums/topic/88740-why-your-server-becomes-slow-or-laggy-overtime/
I wondered do this mod used the same approach? I wanted to know whether your mod will cause lag overtime or not. Thanks!
I wanted to see if I could make the fancy helmet in my rebalance of hamlet hats show the correct armor value when its special ability is activated or not. (display 95% when wearing body armor, 80% when not, right now it shows 80% regardless.)
Can you please add an option to off any item info and leave only food stats