MACIEJNIERZWICKI.PL
MINECRAFT PLUGINS
WG-GUI
Inventory-based interaction with WorldGuard
Configuration – region_templates.yml
Modern-formatted region_templates.yml (default on Paper 1.17+)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | # When RegionTemplatesUsePermissions in config.yml is set to true, players need permissions to see and use region templates. Permission node format: wggui.user.template.<templatename> (e.g. wggui.user.template.PvP) Templates: Empty: DisplayName: "Empty" Description: - "<yellow>Empty template." Icon: PAPER Mixed: DisplayName: "Mixed" Description: - "<yellow>Template for many types of games/events" - "<yellow>(e.g. parkour, maze)." Icon: ELYTRA Flags: invincible: value: allow group: members pvp: value: deny mob-spawning: value: deny use: value: allow chest-access: value: allow interact: value: allow PvP: DisplayName: "PvP" Description: - "<yellow>Template for pvp-related events/games." Icon: IRON_SWORD Flags: invincible: value: deny pvp: value: allow mob-spawning: value: deny use: value: allow chest-access: value: allow interact: value: allow MobArena: DisplayName: "MobArena" Description: - "<yellow>Template for MobArena event/game." Icon: ZOMBIE_SPAWN_EGG Flags: invincible: value: deny pvp: value: deny mob-spawning: value: allow use: value: allow chest-access: value: allow interact: value: allow mob-damage: value: allow damage-animals: value: allow blocked-cmds: value: - "/home" group: non_owners |
Legacy-formatted region_templates.yml (default when modern formatting not supported on running server)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | # When RegionTemplatesUsePermissions in config.yml is set to true, players need permissions to see and use region templates. Permission node format: wggui.user.template.<templatename> (e.g. wggui.user.template.PvP) Templates: Empty: DisplayName: "Empty" Description: - "&eEmpty template." Icon: PAPER Mixed: DisplayName: "Mixed" Description: - "&eTemplate for many types of games/events" - "&e(e.g. parkour, maze)." Icon: ELYTRA Flags: invincible: value: allow group: members pvp: value: deny mob-spawning: value: deny use: value: allow chest-access: value: allow interact: value: allow PvP: DisplayName: "PvP" Description: - "&eTemplate for pvp-related events/games." Icon: IRON_SWORD Flags: invincible: value: deny pvp: value: allow mob-spawning: value: deny use: value: allow chest-access: value: allow interact: value: allow MobArena: DisplayName: "MobArena" Description: - "&eTemplate for MobArena event/game." Icon: ZOMBIE_SPAWN_EGG Flags: invincible: value: deny pvp: value: deny mob-spawning: value: allow use: value: allow chest-access: value: allow interact: value: allow mob-damage: value: allow damage-animals: value: allow blocked-cmds: value: - "/home" group: non_owners |