• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • The Eevee Expo Game Jam has concluded! 🎉 Head on over to the game jam forum to play through the games.
    Don't forget to come back September 21st to vote for your favorites!
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!

Other static encounter regional form.

This thread's author wants feedback. Be constructive.

everblack95

Rookie
Member
Joined
Nov 2, 2020
Posts
1
I'm trying to add a static encounter/event encounter with a regional form. Does anyone have a suggestion?
I tried a couple of scripts which failed.

Control switches 32 = On


pbWildBattle(PBSpecies::MAROWAK,40,1)
Events.onWildPokemonCreate+=proc {|
sender,e|
pokemon=e[0]
if $game_switches[32]
pokemon.form=1
end
}
 
Upvote 0
Hey bud, no need to do that! In V18 you can just do it like so

Ruby:
Expand Collapse Copy
pbWildBattle(:MAROWAK_1,40)

Attach that to any static event and it will work :)
 
Back
Top