ติดตั้ง 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 (เวียดนาม)
Українська (ยูเครน)
รายงานปัญหาเกี่ยวกับการแปลภาษา
or you can port your mod dir to this dir, ensuring the mod dir is the certain files instead of xxx.bin
return {
... ,
["workshop-378160973"]={
configuration_options={
ENABLEPINGS=true,
FIREOPTIONS=2,
OVERRIDEMODE=false,
SHAREMINIMAPPROGRESS=true,
SHOWFIREICONS=true,
SHOWPLAYERICONS=true,
SHOWPLAYERSOPTIONS=2
},
enabled=true
},
...
}
And to load the mod in your overall mod config file under <install_dir>/mods/dedicated_server_mods_setup.lua :
ServerModSetup("378160973")
The general info on both these files should be summed up here : https://dontstarve.fandom.com/wiki/Guides/Don%E2%80%99t_Starve_Together_Dedicated_Servers#Mods
PS : works fine for me on an ubuntu server with this config (but not on my kube cluster, will try to relay other infos once the kube deployment works)
return {
["workshop-375859599"]={
configuration_options={
divider=5,
random_health_value=0,
random_range=0,
send_unknwon_prefabs=false,
show_type=0,
unknwon_prefabs=1,
use_blacklist=true
},
enabled=true
},
["workshop-378160973"]={
configuration_options={
ENABLEPINGS=true,
FIREOPTIONS=2,
OVERRIDEMODE=false,
SHAREMINIMAPPROGRESS=true,
SHOWFIREICONS=true,
SHOWPLAYERICONS=true,
SHOWPLAYERSOPTIONS=2
},
enabled=true
},
["workshop-569043634"]={
configuration_options={
Health_Penalty_Generic="Unchanged",
Health_Penalty_Maximum="Unchanged",
Health_Penalty_Meat_Effigy="Unchanged",
Health_Penalty_Portal="Unchanged",
Health_Respawn_Amount="Unchanged",
KeepInventory="Unchanged",
NoPlayerSkeletons="Unchanged",
ReturnHotkey="Unchanged",
ReturnHotkey_Mode="Closest",
SpawnProtection="Unchanged",
campfire="Enabled",
coldfire="Enabled",
coldfirepit="Enabled",
firepit="Enabled",
reviver="Unchanged",
skeleton="Unchanged",
usetags="Unchanged"
},
enabled=true
},
}
-- Health Info https://gtm.steamproxy.vip/sharedfiles/filedetails/?id=375859599
ServerModSetup("375859599")
-- Global Positions https://gtm.steamproxy.vip/sharedfiles/filedetails/?id=378160973
ServerModSetup("378160973")
-- Campfire Respawn https://gtm.steamproxy.vip/sharedfiles/filedetails/?id=569043634
ServerModSetup("569043634")