Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

PokeMMO Shiny Followers

Skilled Illusionist
Joined
Aug 5, 2008
Messages
377
Reaction score
33
This is my shiny follower little system.
First you need to make a new folder called "shinyfollowers" in your site/resources folder.
Extract all this 151 shiny sprites into that new folder:
Credits to Naxio (Colaborator of my server) for making all this 151 sprites.

Now open you main.out.js file and search for:

Code:
if(chr.follower != null){
			if(lastFollower != chr.follower){
				image = Game.curGame.getImage('resources/followers/' + chr.follower + '.png');
			}

And replace it with:

Code:
if(this.chr.follower != null) {
		if(this.lastFollower != this.chr.follower && this.chr.followerShiny == 0) this.image = pokemmo.Game.curGame.getImage("resources/followers/" + this.chr.follower + ".png");
		else if(this.lastFollower != this.chr.follower && this.chr.followerShiny == 1) this.image = pokemmo.Game.curGame.getImage("resources/shinyfollowers/" + this.chr.follower + ".png");

Save file and that's all.
Image:

martinx09 - PokeMMO Shiny Followers - RaGEZONE Forums
 
Back
Top