- 6
- Posts
- 4
- Years
- Seen May 9, 2022
Probably not gonna get an answer since this thread is super old but:
1. Anyone got a fix for Pokémon in "except" and "except2" not being excluded from Wonder Trade? Not enough room in an event script to exclude all Legendaries... :(
2. Is there a way to disable random nicknames? Like let the Pokémon keep their actual name instead of them having a random nickname?
EDIT: not a direct fix but the best I could get to work is putting the nicknamer next to a Wonder Trade station and adding the following script(s) at the end of the Wonder Trade event (right below "pbWonderTrade(1,[],[])") or above the very first line in the nicknamer event; it effectively changes the OT Name and ID of your entire party to your own so you are able to rename traded Pokémon as if you were the OT)! I added 1 script for each Pokémon, so 6 scripts in total:
Oh boy I totally didn't see HarmonyConcept's comment, that's exactly what I was looking for so thank you very much!
Besides of that, AMAZING script! Good work!
1. Anyone got a fix for Pokémon in "except" and "except2" not being excluded from Wonder Trade? Not enough room in an event script to exclude all Legendaries... :(
2. Is there a way to disable random nicknames? Like let the Pokémon keep their actual name instead of them having a random nickname?
EDIT: not a direct fix but the best I could get to work is putting the nicknamer next to a Wonder Trade station and adding the following script(s) at the end of the Wonder Trade event (right below "pbWonderTrade(1,[],[])") or above the very first line in the nicknamer event; it effectively changes the OT Name and ID of your entire party to your own so you are able to rename traded Pokémon as if you were the OT)! I added 1 script for each Pokémon, so 6 scripts in total:
Spoiler:
pkmn = $Trainer.party[0]
pkmn.trainerID=$Trainer.id
pkmn.ot=$Trainer.name
pkmn.calcStats
pkmn = $Trainer.party[1]
pkmn.trainerID=$Trainer.id
pkmn.ot=$Trainer.name
pkmn.calcStats
pkmn = $Trainer.party[2]
pkmn.trainerID=$Trainer.id
pkmn.ot=$Trainer.name
pkmn.calcStats
pkmn = $Trainer.party[3]
pkmn.trainerID=$Trainer.id
pkmn.ot=$Trainer.name
pkmn.calcStats
pkmn = $Trainer.party[4]
pkmn.trainerID=$Trainer.id
pkmn.ot=$Trainer.name
pkmn.calcStats
pkmn = $Trainer.party[5]
pkmn.trainerID=$Trainer.id
pkmn.ot=$Trainer.name
pkmn.calcStats
pkmn.trainerID=$Trainer.id
pkmn.ot=$Trainer.name
pkmn.calcStats
pkmn = $Trainer.party[1]
pkmn.trainerID=$Trainer.id
pkmn.ot=$Trainer.name
pkmn.calcStats
pkmn = $Trainer.party[2]
pkmn.trainerID=$Trainer.id
pkmn.ot=$Trainer.name
pkmn.calcStats
pkmn = $Trainer.party[3]
pkmn.trainerID=$Trainer.id
pkmn.ot=$Trainer.name
pkmn.calcStats
pkmn = $Trainer.party[4]
pkmn.trainerID=$Trainer.id
pkmn.ot=$Trainer.name
pkmn.calcStats
pkmn = $Trainer.party[5]
pkmn.trainerID=$Trainer.id
pkmn.ot=$Trainer.name
pkmn.calcStats
Oh boy I totally didn't see HarmonyConcept's comment, that's exactly what I was looking for so thank you very much!
Besides of that, AMAZING script! Good work!
Last edited: