安裝 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(越南文)
Українська(烏克蘭文)
回報翻譯問題
Reported this on the RPGhud comments too but not sure if you could do something differently to avoid the incompatibility.
[--smart with food items:
if inst:HasTag("equipped") then
if ent.components.edible and ent.components.edible.hungervalue>0 then
if ((GetPlayer().components.hunger.current-GetPlayer().components.hunger.max)*-1)>ent.components.edible.hungervalue and GetPlayer().components.eater:CanEat(ent) and inst.hungercooldown<=0 then
GetPlayer().components.hunger:DoDelta(ent.components.edible.hungervalue)
if ent.components.edible.healthvalue then
GetPlayer().components.health:DoDelta(ent.components.edible.healthvalue)
end
if ent.components.edible.sanityvalue then
GetPlayer().components.sanity:DoDelta(ent.components.edible.sanityvalue)
end
inst.hungercooldown=15
inst.components.container:ConsumeByName(ent.prefab, 1)
end
end]
The sack will still prioritize Hunger above Health and Sanity when selecting foods, and it will also select the very first item in its inventory, but the actual stats gained will more accurately reflect the food's values.
I think you could just get this mod to fix that,
https://gtm.steamproxy.vip/sharedfiles/filedetails/?id=272741699&searchtext=bee
I don't know if its compatible though.