The Agle532
Usuario de oro
Hola chicos como todos ya saben yo no eh echo aportes pero hoy les traje uno, el Script para eliminar un pokemon del Equipo bueno este es el Script
Me tomo mucho tiempo y esfuerzo hacerlo pero lo hice.
Lo que van hacer es un nuevo script y ponen esto.
Luego lo que aran sera hacer un evento y llamar un script
Colocaran esto allí deleteSpecies(species) y donde dice species colocan el nombre del pokemon:lovelon:
Gracias
Me tomo mucho tiempo y esfuerzo hacerlo pero lo hice.
Lo que van hacer es un nuevo script y ponen esto.
Código:
def deleteSpecies(species)
#if only one Pokémon is in the party send message and return
if $Trainer.pokemonParty.length == 1
Kernel.pbMessage("You only have one Pokémon!") #show the message
return #end the function
end
#delete the first Pokémon in the party of the given species
for i in 0...$Trainer.pokemonParty.length
if ($Trainer.pokemonParty[i]!=nil) && ($Trainer.pokemonParty[i].species == species)
pbRemovePokemonAt(i) #delete the mon
break #break out of the for loop
end
end
end
Colocaran esto allí deleteSpecies(species) y donde dice species colocan el nombre del pokemon:lovelon:
Gracias
Última edición por un moderador: