初级玩家
![Rank: 2](static/image/common/star_level2.gif)
- 贡献度
- 1
- 金元
- 830
- 积分
- 87
- 精华
- 0
- 注册时间
- 2015-11-21
|
給1.31版本玩家可安裝刷怪模組的方法
第一步
開啟檔案 modRandomEncounters\content\scripts\game\actor.ws
找到這段文字:
public function RemoveAllNonAutoBuffs( optional removeOils : bool )
{
if( effectManager && effectManager.IsReady() )
effectManager.RemoveAllNonAutoEffects( removeOils );
}
將上面的文字更換成下面這行
public function RemoveAllNonAutoBuffs( optional removeOils : bool, optional skipPerk14 : bool )
{
if( effectManager && effectManager.IsReady() )
effectManager.RemoveAllNonAutoEffects( removeOils, skipPerk14 );
}
第二步
開啟檔案modRandomEncounters\content\scripts\game\player\player.ws
找到這段文字
if(!spawnData.restored)
inputHandler = new CPlayerInput in this;
將上面的文字更換成下面這行
if( !spawnData.restored )
{
inputHandler = new CPlayerInput in this;
theGame.EnableUberMovement( true );
((CInGameConfigWrapper)theGame.GetInGameConfigWrapper()).SetVarValue( 'Gameplay', 'EnableUberMovement', 1 );
}
|
|