游戏达人
![Rank: 7](static/image/common/star_level3.gif) ![Rank: 7](static/image/common/star_level2.gif) ![Rank: 7](static/image/common/star_level1.gif)
- 贡献度
- 80
- 金元
- 18912
- 积分
- 2221
- 精华
- 1
- 注册时间
- 2010-11-27
|
1304755606 发表于 2013-10-30 18:35 ![](static/image/common/back.gif)
我想问把饱食度提升后食物加的饱食度怎么会下降
如果胃大了10倍,食物补饥饿值当然就相当于原来的1/10了,要相应修改食物补饥饿值
提高食物补饥饿值10倍
用记事本打开游戏目录\data\scripts\tuning.lua文件,将下列内容:
CALORIES_TINY = calories_per_day/8, -- berries
CALORIES_SMALL = calories_per_day/6, -- veggies
CALORIES_MEDSMALL = calories_per_day/4,
CALORIES_MED = calories_per_day/3, -- meat
CALORIES_LARGE = calories_per_day/2, -- cooked meat
CALORIES_HUGE = calories_per_day, -- crockpot foods?
CALORIES_SUPERHUGE = calories_per_day*2, -- crockpot foods?
替换为:
CALORIES_TINY = calories_per_day/8*10, -- berries
CALORIES_SMALL = calories_per_day/6*10, -- veggies
CALORIES_MEDSMALL = calories_per_day/4*10,
CALORIES_MED = calories_per_day/3*10, -- meat
CALORIES_LARGE = calories_per_day/2*10, -- cooked meat
CALORIES_HUGE = calories_per_day*10, -- crockpot foods?
CALORIES_SUPERHUGE = calories_per_day*20, -- crockpot foods?
|
|