First i want to say that the WIKI is awesome but,
i don't know if i may post questions about articles here, but there is something i dont get.
In the Pokemon Sprite Animations wiki, i don't understand this part:
Code:
Now in order to get Trainer's Pokemon animated, go to "pbTrainerSendOut" delete the function pbPlayCry, which should be present somewhere within the definition. Then go to the bottom of the definition, and just after the method sendout.dispose, paste this code:
[CODE]@sprites["pokemon#{battlerindex}"].bitmap=pbLoadPokemonBitmap2(pkmn,false)
pkmnwav=sprintf("Audio/SE/%03dCry",pkmn.species)
Audio.se_play(pkmnwav,90,100)
pbWait(30)
@sprites["pokemon#{battlerindex}"].bitmap=pbLoadPokemonBitmap(pkmn,false)
And for Player's Pokemon animating, once again go to "pbSendOut", find and remove pbPlayCry, and right after the method sendout.dispose, paste this code:
Code:
@sprites["pokemon#{battlerindex}"].bitmap=pbLoadPokemonBitmap2(pkmn,true)
pkmnwav=sprintf("Audio/SE/%03dCry",pkmn.species)
Audio.se_play(pkmnwav,100,100)
pbWait(30)
@sprites["pokemon#{battlerindex}"].bitmap=pbLoadPokemonBitmap(pkmn,true)
[/CODE] I dont get the ''Delete pbPlayCry function'' cause there are many of them, and if i delete them all, the game always chrashes. Can't you use this script with the newest version or something? I'm using the version of 7 May 2010.