Ok so is there any script that can change the max exp, it is to the next level like for example, My exp it is max to 50 i want it to be more than 50 Exp you have to go to next level also I am using rmxp!!!
You can change this in the editor, in the actors tab. It's the one marked: "EXP Curve"
(http://puu.sh/b2KTr/970c1cde8e.png)
i know but the max for level 1 is 50 i want it to be 250 Exp you need to Level up
Not tested at all, but could probably be done with a script call:
$data_actors[ID].exp_basis = 250
$data_actors[ID].make_exp_list
I have no idea if that will actually work, but something along them lines.
Yeah, it works. Just append this above main.
class Game_Actor < Game_Battler
alias blah_make_exp_list make_exp_list
def make_exp_list
actor = $data_actors[@actor_id]
actor.exp_basis = 250
blah_make_exp_list
end
end
It works thank you
it laggs the system
Impossible. Unless you're calling this piece of code every frame, which you shouldn't be, this has no effect on your game's performance.
wuuuurd