EXP level 1 max Change

Started by GohanRocks922, August 21, 2014, 10:38:30 pm

Previous topic - Next topic

GohanRocks922

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!!!

Zexion

You can change this in the editor, in the actors tab. It's the one marked: "EXP Curve"

GohanRocks922

i know but the max for level 1 is 50 i want it to be 250 Exp you need to Level up

ForeverZer0

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.
I am done scripting for RMXP. I will likely not offer support for even my own scripts anymore, but feel free to ask on the forum, there are plenty of other talented scripters that can help you.

ArcaneAlchemy

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
"Wait? Do I look like a waiter?" -Kefka

GohanRocks922


GohanRocks922


KK20

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.

Other Projects
RPG Maker XP Ace  Upgrade RMXP to RMVXA performance!
XPA Tilemap  Tilemap rewrite with many features, including custom resolution!

Nintendo Switch Friend Code: 8310-1917-5318
Discord: KK20 Tyler#8901

Join the CP Discord Server!

ArcaneAlchemy

"Wait? Do I look like a waiter?" -Kefka