• 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.
  • Eevee Expo's webhost has been having technical issues since Nov. 20th and you might be unable to connect to our site. Staff are also facing issues connecting, so please send a DM to Cat on-site or through Discord directly for faster service!

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
175
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