You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Region Show Schema files must end in `_regionshowschema.yml`.
26
26
- `region`refers to the region that the region for which the show listener should be keeping track of player entrances/exits.
27
-
- `setup`refers to the show that should be run when the first player enters `region` (i.e. when the number of players in `region` goes from 0 to 1). See [`setup` Show Example](/Technicians/RegionShows#setup-show-example) for more information.
28
-
- `loop.name`refers to the show that should continue playing on loop as long as there are players `region`. See [`loop` Show Example](/Technicians/RegionShows#loop-show-example) for more information.
29
-
- `loop.delay` exists because some commands take time to fully execute, and you don't want to have your `loop` show start over while a long-running command is still executing. We cover this more in [`loop` Show Example](/Technicians/RegionShows#loop-show-example). The `loop.delay` field is optional and defaults to `0`. If you don't a delay between instances of your loop show, your schema can look like:
27
+
- `setup`refers to the show that should be run when the first player enters `region` (i.e. when the number of players in `region` goes from 0 to 1). See [`setup` Show Example](#setup-show-example) for more information.
28
+
- `loop.name`refers to the show that should continue playing on loop as long as there are players `region`. See [`loop` Show Example](#loop-show-example) for more information.
29
+
- `loop.delay` exists because some commands take time to fully execute, and you don't want to have your `loop` show start over while a long-running command is still executing. We cover this more in [`loop` Show Example](#loop-show-example). The `loop.delay` field is optional and defaults to `0`. If you don't a delay between instances of your loop show, your schema can look like:
- `shows.cleanup`refers to the show that should be run when the last player leaves `region` (i.e. when the number of players in `region` goes from 1 to 0). See [`cleanup` Show Example](/Technicians/RegionShows#cleanup-show-example) for more information.
36
+
- `shows.cleanup`refers to the show that should be run when the last player leaves `region` (i.e. when the number of players in `region` goes from 1 to 0). See [`cleanup` Show Example](#cleanup-show-example) for more information.
37
37
38
38
39
39
### `setup` Show Example
@@ -118,7 +118,7 @@ cleanup: 'path/to/cleanup'
118
118
```
119
119
120
120
### Setup Delay
121
-
Sometimes, you might want to a delay between when your [`setup` show](/Technicians/RegionShows#setup-show-example) completes and when your [`loop` show](/Technicians/RegionShows#loop-show-example) starts looping. You can accomplish this in the Schema file very similarly to how you add a delay for your loop show:
121
+
Sometimes, you might want to a delay between when your [`setup` show](#setup-show-example) completes and when your [`loop` show](#loop-show-example) starts looping. You can accomplish this in the Schema file very similarly to how you add a delay for your loop show:
0 commit comments