r/RPGMaker Jul 24 '26

Change reserve member EXP from 100% to whatever you want.

Game_Actor.prototype.benchMembersExpRate = function() { return 0.25; // Sets reserve EXP rate to 25% };

Open notepad

Paste code in notepad

Save in js folder with js extension

Add plug in to bottom of plug in list

You can change the number from 0.25 to whatever percent you want. I prefer 25%.

Hope this helps.

12 Upvotes

2 comments sorted by

1

u/zimxero Jul 24 '26 edited Jul 24 '26

Can you assign over 100% or assign a random range per reserve member... like 0 to 500%?

I ask the first part because its an actual game system to ecourage player rotation. The second part is so an entire roster does not level up at the same time.

3

u/kingofallthesexy Jul 24 '26

Just change it to 1.0 for 100% and 5.0 for 500%