Project1

标题: 有没有人知道经验值曲线公式啊? [打印本页]

作者: woodytt    时间: 2011-10-16 13:09
标题: 有没有人知道经验值曲线公式啊?
rt
跪求dsu_plus_rewardpost_czw
作者: feizhaodan    时间: 2011-10-16 13:12
Game_Actor类134-146行的
  1.   #--------------------------------------------------------------------------
  2.   # ● 计算经验值
  3.   #--------------------------------------------------------------------------
  4.   def make_exp_list
  5.     @exp_list[1] = @exp_list[100] = 0
  6.     m = actor.exp_basis
  7.     n = 0.75 + actor.exp_inflation / 200.0;
  8.     for i in 2..99
  9.       @exp_list[i] = @exp_list[i-1] + Integer(m)
  10.       m *= 1 + n;
  11.       n *= 0.9;
  12.     end
  13.   end
复制代码





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1