• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • Akari, Red, Kris, May - which Pokémon protagonist is your favorite? Let us know by voting in our semifinal favorite protagonist poll!
  • 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

  • 31
    Posts
    3
    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.
     
    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.
    [PokeCommunity.com] 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