• 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!
  • 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.

Season conditional for Event

Hello ... I would like to make a question.

I'm using KLEIN STUDIO Pokemon Essentials BW V3.1.1...

So far the system has worked perfectly, I just want to know ... Is there any way to make an event is conditioned depending on the season?

For example: A character tells a specific text only if it is autumn.

Hugs and thanks!!
 
Last edited by a moderator:
If you use the script pbGetSeason, it will return the value of the constant set for that season.
Unfortunately, I modified my working copy of BW 3.1.1 (The original is zipped), so I can't tell you the values of each season.
Script section BW_Seasons would have it in the very top though.

Understand...

I try with this...

$PokemonGlobal.getSeason==3

Considering this values...

def pbGetSeasonName(season)
case season
when 1
return "winter"
when 2
return "spring"
when 3
return "summer"
when 4
return "autumn"
end
end

And apparently works good :) Thank you so much!

PD: Sorry about my english
 
Back
Top