Spaces:
Sleeping
Sleeping
Create ConditionalEvents/config.yml
Browse files
plugins/ConditionalEvents/config.yml
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Config:
|
2 |
+
# Whether the plugin should send notifications on join to OP
|
3 |
+
# players if an update is found
|
4 |
+
update_notification: true
|
5 |
+
|
6 |
+
# Whether actions should appear when using /ce debug command.
|
7 |
+
debug_actions: true
|
8 |
+
|
9 |
+
# This option defines the time (in minutes) to automatically save player data.
|
10 |
+
data_save_time: 5
|
11 |
+
|
12 |
+
# If you are using ConditionalEvents to create commands with the usage of
|
13 |
+
# player_command events, you can register those commands here, so they appear
|
14 |
+
# on the tab completion. Just remember to ignore the "/".
|
15 |
+
# IMPORTANT:
|
16 |
+
# If you make changes to this option you must restart your server.
|
17 |
+
register_commands:
|
18 |
+
- "hello"
|
19 |
+
|
20 |
+
# This option works ONLY for to_condition actions.
|
21 |
+
# Here you can define condition groups following the same format as usual.
|
22 |
+
to_condition_groups:
|
23 |
+
group1:
|
24 |
+
- "%player_has_permission_conditionalevents.somepermission% == yes"
|
25 |
+
|
26 |
+
# Enable it to use the new variable replacement method for ConditionalEvents.
|
27 |
+
# It adds the possibility to replace/parse variables that have multiple
|
28 |
+
# levels of more variables inside. For example
|
29 |
+
# %block_at_{player_x}_{math_0:0_{player_y}-1}_{player_z}_{player_world}%.
|
30 |
+
experimental:
|
31 |
+
variable_replacement: false
|