六十七.自养高鸟不用喂食(不要与喂自养高鸟产便便同时修改)
用记事本打开游戏目录\\data\\scripts\\prefabs\\smallbird.lua文件,将下列内容:
inst:AddComponent("hunger")
inst.components.hunger:SetMax(TUNING.SMALLBIRD_HUNGER)
inst.components.hunger:SetRate(TUNING.SMALLBIRD_HUNGER/TUNING.SMALLBIRD_STARVE_TIME) inst.components.hunger:SetKillRate(TUNING.SMALLBIRD_HEALTH/TUNING.SMALLBIRD_STARVE_KILL_TIME)
inst.components.hunger:SetMax(TUNING.TEENBIRD_HUNGER)
inst.components.hunger:SetRate(TUNING.TEENBIRD_HUNGER/TUNING.TEENBIRD_STARVE_TIME) inst.components.hunger:SetKillRate(TUNING.TEENBIRD_HEALTH/TUNING.TEENBIRD_STARVE_KILL_TIME)
修改为:
--inst:AddComponent("hunger")
--inst.components.hunger:SetMax(TUNING.SMALLBIRD_HUNGER)
--inst.components.hunger:SetRate(TUNING.SMALLBIRD_HUNGER/TUNING.SMALLBIRD_STARVE_TIME)
--inst.components.hunger:SetKillRate(TUNING.SMALLBIRD_HEALTH/TUNING.SMALLBIRD_STARVE_KILL_TIME)
--inst.components.hunger:SetMax(TUNING.TEENBIRD_HUNGER)
--inst.components.hunger:SetRate(TUNING.TEENBIRD_HUNGER/TUNING.TEENBIRD_STARVE_TIME) --inst.components.hunger:SetKillRate(TUNING.TEENBIRD_HEALTH/TUNING.TEENBIRD_STARVE_KILL_TIME)
即可让自养高鸟不用喂食
六十八.牙齿陷阱不伤害自养高鸟
用记事本打开游戏目录\\data\\scripts\\prefabs\\trap_teeth.lua文件,将if target then替换为if target and not target:HasTag("smallbird") then即可
六十九.主角带肉不被兔人攻击
用记事本打开游戏目录\\data\\scripts\\prefabs\\bunnyman.lua
文件,将
if
guy:HasTag("player")替换为if guy:HasTag("monster")即可,注意替换的只是
一句中的一部分,语句其他部分不要动
七十.猪人永久跟随
用记事本打开游戏目录\\data\\scripts\\prefabs\\pigman.lua文件, 1.
--inst.components.follower:AddLoyaltyTime(item.components.edible:GetHunger() TUNING.PIG_LOYALTY_PER_HUNGER)
2.将inst.components.follower.maxfollo