• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • 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.

[Scripting Question] Need help about day and month event

2
Posts
7
Years
    • Seen May 16, 2024
    How can I create an event to occur on the day and month, for example 23.07.?
     
    1,682
    Posts
    8
    Years
    • Seen today
    Ruby:
    def pbIsDate?(month,day,time=nil)
      time = pbGetTimeNow if time.nil?
      return time.month==month && time.day == day
    end
    Then you can just slap this into the conditional branch as a script pbIsDate?(7,23)
     
    Back
    Top