• The Eevee Expo Game Jam #10 has concluded, congratulations to all participants! Now it's time for the judges to play through the games, and you can play along to vote who deserves the community choice spotlight.
    You can check out the submitted games here!
    Play through the games and provide some feedback to the devs while you're at it!
  • Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!

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

ValiantSoul

World Traveller
Member
Joined
Sep 12, 2020
Posts
172
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