| 文件路径:D:/mud2.0/mir200/Envir/PsMapQuest/LogonQuest.pas 
 
 
 找到这几句代码:  procedure TempExpBylv(); var tempLv : integer; begin     tempLv := This_Player.Level;     if (tempLv >= 1) and (tempLv <= 39) then      begin     This_Player.MultiTempExpRate := 50;  这里就是 经验倍数  可以随便调整      This_Player.PlayerNotice('当前经验倍数:50倍',2);     This_Player.PlayerNotice('40级之前你都可以获得系统赠送的50倍经验',2);     end;  end;  
 
 
 D:/mud2.0/mir200/share/PlayerUpgradeExp           人物升级经验修改 
 D:/mud2.0/mir200/Gsl/Setconfig/hero_lv_exp       英雄升级经验修改 
 |