Daily Shops

This page don't have any description of it because all things I can tell you have been claimed in Shops page.

Create random placeholder

We need to create a number of random placeholders equal to the number of slots in the daily shop. In this example, our daily shop only has 7 slots to display product so we only create 7 random placeholders here.

The result of each random variable symbol is independent, and the not-same-as option ensures that their results are not the same. Therefore, about the random placeholder corresponding to the 7 slots:

  • They are refreshed every day.

  • The results of the refreshed random placeholders are different and independent from each other.

  • The result determines what product will appear in this slot by the condition system.

Please view Random Placeholder page for more info.

  random:
    daily-1:
      reset-mode: TIMED
      reset-time: '13:45:00'
      elements:
        - 'A'
        - 'B'
        - 'C'
        - 'D'
        - 'E'
        - 'F'
        - 'G'
    daily-2:
      reset-mode: TIMED
      reset-time: '00:00:00'
      elements:
        - 'daily-1'
      not-same-as:
        - 'daily-1'
        - 'daily-3'
        - 'daily-4'
        - 'daily-5'
        - 'daily-6'
    daily-3:
      reset-mode: TIMED
      reset-time: '00:00:00'
      elements:
        - 'daily-1'
      not-same-as:
        - 'daily-1'
        - 'daily-2'
        - 'daily-4'
        - 'daily-5'
        - 'daily-6'
    daily-4:
      reset-mode: TIMED
      reset-time: '00:00:00'
      elements:
        - 'daily-1'
      not-same-as:
        - 'daily-1'
        - 'daily-3'
        - 'daily-2'
        - 'daily-5'
        - 'daily-6'
    daily-5:
      reset-mode: TIMED
      reset-time: '00:00:00'
      elements:
        - 'daily-1'
      not-same-as:
        - 'daily-1'
        - 'daily-3'
        - 'daily-2'
        - 'daily-4'
        - 'daily-6'
    daily-6:
      reset-mode: TIMED
      reset-time: '00:00:00'
      elements:
        - 'daily-1'
      not-same-as:
        - 'daily-1'
        - 'daily-3'
        - 'daily-4'
        - 'daily-5'
        - 'daily-2'

Download Example Pack

Last updated