New account registration is temporarily disabled.

WALKING EXP

RPG Maker VX Ace

Gain EXP while walking on the Map

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.

Posts

Pages: 1
Wish i can find something like this for MV
Marrend
Guardian of the Description Thread
21806
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 (let i=0; i<this.members().length; i++) {
		actor = this.members()[i];
		actor.gainExp(1);
	};
};

...this?
Pages: 1