Forcing Pokemon to the front of the party

Weter 23

Novice
Member
Joined
Mar 4, 2018
Posts
12
Similar to Zekrom/Reshiram in Black/White and Xerneas/Yveltal in X/Y. Also would like a similar thing for 2nd slot.

Sorry if this has been asked before.
 

Jonas930

Is anyonre there?
Member
Joined
Apr 15, 2017
Posts
102
Dont if anyone asked before, but this is what you can try.
Make an event, and have those following ckecks
1) check if that pokemon is in the party. If pokemon isnt in the party, then push player away and tell them to bring that pokemon.
2) if player pass the first check, then ckeck if pokemon is in first (or other position). If not, push player away, then tell player to switch that pokemon to the position.

This is checking if you have bulbasur in the party.
Code:
pbHasSpecies?(:BULBASAUR)

This is checking if first (0 is first, 5 is sixth) pokemon is bulbasaur.
Code:
$Trainer.party[0].species==(:BULBASAUR)
Just put them in conditional branches.
 
Top