饥荒联机版

饥荒联机版

Forge Speedrun Timer
T Shaw Killer  [开发者] 2017 年 11 月 20 日 下午 2:03
Bug Reports
Post your bug reports here.

In order to find your game's client_log.txt file:

PC: Go to your documents folder at
Documents\Klei\DoNotStarveTogether\client_log.txt

Mac: Go to your documents folder at
~/Documents/Klei/DoNotStarveTogether/client_log.txt

Linux: Go to your Klei folder at
.klei/DoNotStarveTogether/client_log.txt
< >
正在显示第 1 - 13 条,共 13 条留言
loganpea 2017 年 11 月 20 日 下午 5:19 
I'm getting a error message "attempt to compare number with table", with only this mod enabled.
LUA ERROR stack traceback:
../mods/workshop-1206714776/scripts/widgets/timerwidget.lua:347 in (method) UpdateDisplay (Lua) <342-379>
self =
I hope this helps.
T Shaw Killer  [开发者] 2017 年 11 月 20 日 下午 5:37 
引用自 loganpea
I'm getting a error message "attempt to compare number with table", with only this mod enabled.
LUA ERROR stack traceback:
../mods/workshop-1206714776/scripts/widgets/timerwidget.lua:347 in (method) UpdateDisplay (Lua) <342-379>
self =
I hope this helps.
Interesting, I thought I fixed that bug. OK, update should be pushed. Try it out and let me know how it goes.
最后由 T Shaw Killer 编辑于; 2017 年 11 月 20 日 下午 5:47
Sisyphus 2017 年 11 月 21 日 上午 2:47 
"Configuration Options: Split Sound" have no response. Alawys "Ding!".
T Shaw Killer  [开发者] 2017 年 11 月 21 日 上午 6:22 
引用自 Sisyphus
"Configuration Options: Split Sound" have no response. Alawys "Ding!".
Well, that's embarrassing. Should be fixed in the latest version.
loganpea 2017 年 11 月 21 日 下午 2:00 
The mod is working now, thank you :D
Penultimate Chimera 2018 年 11 月 21 日 下午 6:47 
Not a crashing error but -
I'm working on a mod which allows for changing the names of every enemy (mostly so people can use the old names for mobs)
Due to a recent fix of sorts I've done for it, the timer no longer proceeds past the first Boarilla round. This is presumably due to the fact that I force the mobnameoverride of all Boarillas to be nil so they can be renamed individually.
I've begun poking at a fix, will post again if I figure something out.
Penultimate Chimera 2018 年 11 月 21 日 下午 8:50 
I changed the
alive = { trails = 2 }
calls for
alive = { trails = 1, trails2 = 1 }
. so for now I'll be playing with this version.
T Shaw Killer  [开发者] 2018 年 11 月 23 日 上午 10:02 
引用自 Penultimate Chimera
Not a crashing error but -
I'm working on a mod which allows for changing the names of every enemy (mostly so people can use the old names for mobs)
Due to a recent fix of sorts I've done for it, the timer no longer proceeds past the first Boarilla round. This is presumably due to the fact that I force the mobnameoverride of all Boarillas to be nil so they can be renamed individually.
I've begun poking at a fix, will post again if I figure something out.
Perhaps you could use
self:displaynamefn()
instead of setting the nameoverride to nil for the boarillas. The reason I use nameoverride is to support the Forged Forge mod since all the mob prefabs are renamed (except boss).
最后由 T Shaw Killer 编辑于; 2018 年 11 月 23 日 上午 10:02
Penultimate Chimera 2018 年 11 月 23 日 上午 10:56 
what does displaynamefn() do?
T Shaw Killer  [开发者] 2018 年 11 月 23 日 上午 10:59 
引用自 Penultimate Chimera
what does displaynamefn() do?
It's a function that you can define that should return the correct name you want displayed and is called before nameoverride. You can search the DST codebase for it to get a better understanding.
Penultimate Chimera 2018 年 11 月 23 日 下午 6:30 
Tried some stuff with it - not sure how to work it though. If you know how to work it I'd like to know.
T Shaw Killer  [开发者] 2018 年 11 月 23 日 下午 7:32 
引用自 Penultimate Chimera
Tried some stuff with it - not sure how to work it though. If you know how to work it I'd like to know.
for _,boarilla in ipairs({"trails1", "trails2"}) do AddPrefabPostInit(boarilla, function(inst) inst.displaynamefn = function(inst) return inst.name end end) end
Penultimate Chimera 2018 年 11 月 25 日 上午 11:22 
Have attained confirmation of this working to fix the issue. Thanks for the help!
< >
正在显示第 1 - 13 条,共 13 条留言
每页显示数: 1530 50