Steam饥荒

存档回滚

D:\Program Files (x86)\Steam\userdata\***\219740\remote

巨人国是survival_数字,海难是shipwreck_数字,哈姆雷特是porkland_数字。

先新建一个相同dll的文档,然后把备份覆盖进去改掉数字插槽位置,重新启动即可。

Lua脚本

快速采集

首先进入饥荒单机版目录D:\Program Files (x86)\Steam\steamapps\common\dont_starve\

1.草:用记事本打开游戏目录\data\DLC0001\scripts\prefabs\grass.lua文件,在inst:AddComponent("pickable")的下一行插入inst.components.pickable.quickpick = true
2.树枝:用记事本打开游戏目录\data\DLC0001\scripts\prefabs\sapling.lua文件,在inst:AddComponent("pickable")的下一行插入inst.components.pickable.quickpick = true
3.浆果:用记事本打开游戏目录\data\DLC0001\scripts\prefabs\berrybush.lua文件,在inst:AddComponent("pickable")的下一行插入inst.components.pickable.quickpick = true

远程采集和拾起物品

用记事本打开游戏目录\data\DLC0001\scripts\actions.lua文件,将下列内容:
PICK = Action(),
PICKUP = Action(1),
替换为:
PICK = Action(0, true, false, 20),
PICKUP = Action(1, true, false, 20),

https://wenku.baidu.com/view/53b888eb0912a216157929b7.html

猜你喜欢

转载自www.cnblogs.com/aeolian/p/10577725.html