饥荒联机和神话书说mod的一些常用控制台代码,如无敌模式,c_godmode(),全物品直接制造是GetPlayer()componentsbuilderGiveAllRecipes(),召唤生物:c_spawn(“召唤物代码”,数量),例,c_spawn(“beequeen”,1)。
避暑丹,不可食用,放在身上免疫火焰伤害,体温不会过热。配方是1犀牛角,1蓝宝石,1蕨叶,1硝石,冶炼时间960秒,耐久81天,耐久没了不会消失,可以放进炼丹炉中并加入除了犀牛角的另外三种材料重炼,可以恢复50%耐久。一、切斯特(狗箱)不死
用记事本打开游戏目录\data\scripts\prefabs\chesterlua文件,在inst:AddTag("noauradamage")的下一行插入instcomponentshealth:SetInvincible(true)
即可让切斯特不死
二、切斯特(狗箱)容量增加9倍(81格)
用记事本打开游戏目录\data\scripts\prefabs\chesterlua文件,
1将下列内容:
for y = 2, 0, -1 do
for x = 0, 2 do
替换为:
for y = 8, 0, -1 do
for x = 0, 8 do
2将下列内容:
instcomponentscontainerwidgetanimbank = "ui_chest_3x3"
instcomponentscontainerwidgetanimbuild = "ui_chest_3x3"
instcomponentscontainerwidgetpos = Vector3(0,200,0)
替换为:
--instcomponentscontainerwidgetanimbank = "ui_chest_3x3"
--instcomponentscontainerwidgetanimbuild = "ui_chest_3x3"
instcomponentscontainerwidgetpos = Vector3(0,100,0)
即可让切斯特(狗箱)容量增加9倍至81格
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)