A very simple script to allow your characters to gain EXP while simply walking on the map. Not sure if it will be handy for anyone. I needed this for a game I am making I just thought someone else might need this as well. When I was searching I could not find simple instructions for this.
author=Dream Wish i can find something like this for MV
Maaaaybe something like...
// Gain EXP by walking?gameparty_increasesteps=Game_Party.prototype.increaseSteps();Game_Party.prototype.increaseSteps=function(){gameparty_increasesteps;for(leti=0;i<this.members().length;i++){actor=this.members()[i];actor.gainExp(1);};};