Chapter 3
Picker
A part of Planner to choose a specific Arena
A part of Planner to choose a specific Arena
This is a simple picker that choose a random arena from the planner.
picker-type: random
pick-delay: <time>
settings:
# Your game settings are generated here
pick-delay
: The time to wait before choosing the next arenaVariable | Description |
---|---|
{picker_time_left} | The time left before choosing the next arena |
This is a picker that choose a random arena based on the specific chance of it.
picker-type: chance
pick-delay: <time>
pick-chance:
arena1: 10
arena2: 20
arena3: 30
arena4: 40
settings:
# Your game settings are generated here
pick-delay
: The time to wait before choosing the next arenapick-chance
: The chance that an arena would be pickedVariable | Description |
---|---|
{picker_time_left} | The time left before choosing the next arena |
This is a picker that choose an arena in the specific sequence of arenas.
picker-type: sequence
pick-delay: <time>
pick-sequence:
- "arena1,arena2,arena3"
- "arena4,arena5"
- "arena6"
settings:
# Your game settings are generated here
pick-delay
: The time to wait before choosing the next arenapick-sequence
: The sequence of arenas (as a list) that the picker would follow along withThe picker would follow the sequence line-by-line. However, you can add multiple arenas in a line and let the picker randomly choose one of them.
pick-sequence:
- "arena1,arena2,arena3" # 1. Play one of arena1, arena2, arena3
- "arena4,arena5" # 2. Play one of arena4, arena5
- "arena6" # 3. Play arena6
Variable | Description |
---|---|
{picker_time_left} | The time left before choosing the next arena |