游戏狂人
 
- 贡献度
- 99
- 金元
- 13663
- 积分
- 1762
- 精华
- 0
- 注册时间
- 2011-5-10
|
本帖最后由 f96541 于 2011-9-20 20:47 编辑
大家都知道,游戏里的钱是很重要的,买武器,强化等等,而僵尸只掉几十块,多了也就两三百,这根本不够用的。本人也是刚学的,不想用修改器而又想自力更的可以看看。
这个只是10级的僵尸。1级的僵尸能掉300-500也够用了,到了40级都是几千的。开旅游包和箱子也能开出这么多。下面是教程:
首先打开目录找到F:\Dead Island\DI的Data1.
用压缩文件打开。
把default.loot解压出来。
然后用记事本打开。
sub StandardCash(float weight = 1.0, float prob = 1.0)
{
Set(Cash, weight, prob)
{
ItemCount("Cash_Wallet", 200, 10, 20.0);
ItemCount("Cash_Wallet", 200, 150, 5.0);
ItemCount("Cash_Cash", 100, 30, 10.0);
}
}
sub MediumCash(float weight = 1.0, float prob = 1.0)
{
Set(Cash, weight, prob)
{
ItemCount("Cash_Cash", 500, 150, 5.0);
}
}
sub BigCash(float weight = 1.0, float prob = 1.0)
{
Set(Cash, weight, prob)
{
ItemCount("Cash_Cash", 1000, 300, 3.34);
}
这几行就是改钱,如果你不知道怎么改,那就对照你的原文件改好了,就是把数值改高点就行了。游戏还是不要那么不和谐的好。
修改好了替换原文件,好了。就这么简单。 |
|