Re: [Release] Shiny sprites.
Very nice.
I was going to release this.
http://i52.tinypic.com/zunlnd.png
Essentially does what u did...
Re: [Release] Shiny sprites.
Nice, that would have been so useful. It took me so long to do all those images (mainly renaming them all)
Re: [Release] Shiny sprites.
Re: [Release] Shiny sprites.
Probably. But I don't know the rate for them.
Re: [Release] Shiny sprites.
Quote:
Originally Posted by
xkl
Probably. But I don't know the rate for them.
They have a 5% chance of being shiny.
Pokenet > Server > Battle > Pokemon.java
PHP Code:
Pokemon p = new Pokemon(mech, species, nature, ability, item, gender, 100,
ivs, evs, entries, ppUp);
// Give it a 5% chance of being shiny.
if (random.nextDouble() < 0.05) {
p.setShiny(true);
}
return p;
Re: [Release] Shiny sprites.
Quote:
Originally Posted by
PokeOrb
They have a 5% chance of being shiny.
Pokenet > Server > Battle > Pokemon.java
PHP Code:
Pokemon p = new Pokemon(mech, species, nature, ability, item, gender, 100,
ivs, evs, entries, ppUp);
// Give it a 5% chance of being shiny.
if (random.nextDouble() < 0.05) {
p.setShiny(true);
}
return p;
Thanks :D
Re: [Release] Shiny sprites.
@pokeorb: tht's 4.9.. % better than the actual game lol
Re: [Release] Shiny sprites.
hah.
you can change the 5% to 100% lol
Re: [Release] Shiny sprites.
Re: [Release] Shiny sprites.
I'll re-upload it here soon. ;)
------------
:Edit:
New download link.
Re: [Release] Shiny sprites.
Quote:
Extract to Client>res>pokemon Overwrite everything.
To make your pokémon shiny, go into MySQL>pokemon>pn_pokemon then find the column 'isShiny' then change flase to true
questions.. how to change ishiny to true in phpmyadmin?.. got any executable command?
Re: [Release] Shiny sprites.
Quote:
Originally Posted by
mecatrix
questions.. how to change ishiny to true in phpmyadmin?.. got any executable command?
Go to phpMyAdmin, then locate to the pn_pokemon database, then select it then click browse.
image
Then it will load up all your pokemon information. Just click the edit button.
image
Now scroll down until your reach the isShiny column, then change false to ture
image
Now just scroll all the way down and save. That's it :)