procedure TempExpBylv();
var tempLv , tempExp : integer;
begin
tempExp := 0;
tempLv := This_Player.Level;
if (tempLv >= 0) and (tempLv <= 39) then tempExp := 100;
if tempExp > 0 then
begin
This_Player.MultiTempExpRate := tempExp;
This_Player.PlayerNotice('当前经验倍数:' + inttostr(tempExp) + '倍',2);
end;
end;
请问我要改成三十级以前一百倍经验 三十到三十九10倍经验 40开始正常经验 应该怎么改?
|