安装 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=645871185
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=1930794331
[SW&ROG]
一、框选拾取不拾取恶魔花、荆棘丛、仙人掌
二、框选拾取不拾取鸟笼里的鸟
三、支持批量烤食物
四、砍树、挖矿、挖掘、拆除后自动捡起掉落的资源
五、完美支持镰刀模组框选收集,镰刀正常掉耐久
a new Action Queue
[SW&ROG]
1、Don't pick up Evil Flowers、Spiky Bush、Cactus
2、Don't pick up The bird in the cage
3、Support action Cook
4、Felling, mining...Automatic pick up fallen resources
5、Support Mod:Scythe
{链接已删除}link:http://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=645871185&searchtext=Action+Queue
forgot to say this adds no check for the mod presence (no idea how to make one)
so if you remove the scythe mod this will probably cause problems
superb mod, very clear code, thank you :)
to make it compatible with the scythe mod tool :
in "dont_starve\mods\workshop-263658444\scripts\components"
open the file "actionqueuer.lua"
look up : "local allowed_actions = {"
look up : " [ACTIONS.TAKEITEM] = true,"
just after it and before "}"
add : "[ACTIONS.MOWDOWN] = true,"
(without the quotes of course)
save
load up your game
that's it, it's finished
however if this mod is updated you might have to redo it again
I think if you delete those lines I told you to put in before, and instead add the lines below to the same file at line 56 after the "}" and before "local special_cases = {}" it might work (it worked for me for the 20 seconds it took me to load a ROG, pick some flowers, load a shipwreck, and hack some thorns).
if IsDLCEnabled(2) then
allowed_actions[ACTIONS.RETRIEVE] = true
allowed_actions[ACTIONS.HACK] = true
end
Maybe there's a better way to do it, but like I said, I don't know Lua or this game API.
Any ideas?
打开X:\SteamLibrary\steamapps\common\dont_starve\mods\workshop-263658444目录下的modinfo.lua,然后在reign_of_giants_compatible = true后面按格式添加一行shipwrecked_compatible = true后保存即可。这样mod就可以支持sw了。(此方法通用所有mod)
mac路径:~/Library/Application Support/Steam
C:\Program Files (x86)\Steam\steamapps\common\dont_starve\mods\workshop-263658444\scripts\components\actionqueuer.lua
and insert
[ACTIONS.RETRIEVE] = true,
[ACTIONS.HACK] = true,
at line 55 before the }
简单说就是在上面lua文件里自己改下就能用了,加入上面三行就行。
[ACTIONS.RETRIEVE] = true,
[ACTIONS.HACK] = true,
at line 55 before the }
I haven't tested it much, but it seems to work.