• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Regigigas and Post Game

29
Posts
2
Years
  • I have made a Regigigas event my game but I was wondering if there was anyway to lock the event until the player has caught the other 3 regi's (regirock, regice and registeel) and if there was a way to lock an event until the player has beaten the elite 4.
     
    311
    Posts
    4
    Years
  • You can use
    Code:
    $Trainer.has_species?(:REGIROCK)
    in a conditional branch to detect if you have the mons in your party. And then just use a conditional branch to see if the switch Defeated Elite Four is on.
    Regigigas and Post Game

    Keep in mind this method requires the player to have the Regi's in the party. In order to have it so you don't need them all in the party, replace $Trainer.has_species?(:REGIROCK) with
    Code:
    $Trainer.owned?[377]
    Hopefully this helped!
     
    Back
    Top