Time Based

Time-based placeholders allow you to dynamically change placeholder output depending on the current time, date, or day, with full priority control and timezone handling

Basic Structure:

placeholder_name:
  time_based: true
  timezone: "server"  # or "player"
  types:
    - priority: 1
      time_conditions:
        - time_range: "09:00-17:00"
        - day_of_week: "MONDAY,FRIDAY"
      output: 'Time-based message!'
    
    - priority: 2
      time_conditions:
        - date: "2025-12-25"
      output: 'Christmas message!'
    
    - priority: 3
      output: 'Default message'

Last updated