I have been lookin at the Game_Actor script and been messin with the experience calculations. I have changed a few things but it doesnt seem to be working in the actual game. Here is what I have modified so far:
CODE
class Game_Actor
def make_exp_list
@exp_list[1] = @exp_list[100] = 0
m = actor.exp_basis + 10
n = 0.65 + actor.exp_inflation / 50.0;
for i in 2..99
@exp_list[i] = @exp_list[i-1] + Integer(m)
m *= 0.9 + n;
n *= 0.3;
end
end
end
It doesnt seem to be making any impact at all, as I still need the same amount of EXP to level up. I even made it as a new Material and posted it in the Materials section since its overwriting an existing method. Any ideas?
EDIT: I even searched the forums and nothing came up so I made a new topic.
This post has been edited by Destinynite1: Jul 6 2012, 03:45 AM