diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ab71d3..e196a4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog All notable changes to this project will be documented in this file. +## [2.3] + +### Changed +- Updated to 1.16.5 +- All plugins and addons updated +- Use paper as base Jar + ## [2.2] ### Changed @@ -55,6 +62,7 @@ All notable changes to this project will be documented in this file. ### Changed - Initial commit of pack to Github for version control +[2.3]: https://github.com/apexhosting/HungerGames/releases/tag/2.3 [2.2]: https://github.com/apexhosting/HungerGames/releases/tag/2.2 [2.1]: https://github.com/apexhosting/HungerGames/releases/tag/2.1 [2.0]: https://github.com/apexhosting/HungerGames/releases/tag/2.0 diff --git a/jar/gametype_survivalgames.jar b/jar/gametype_HungerGames.jar similarity index 78% rename from jar/gametype_survivalgames.jar rename to jar/gametype_HungerGames.jar index e7eca2e..8962fa8 100644 Binary files a/jar/gametype_survivalgames.jar and b/jar/gametype_HungerGames.jar differ diff --git a/plugins/[1.16]CoreProtect-19.3.jar b/plugins/CoreProtect-19.4.jar similarity index 77% rename from plugins/[1.16]CoreProtect-19.3.jar rename to plugins/CoreProtect-19.4.jar index d2d1508..8989ae3 100644 Binary files a/plugins/[1.16]CoreProtect-19.3.jar and b/plugins/CoreProtect-19.4.jar differ diff --git a/plugins/CoreProtect/config.yml b/plugins/CoreProtect/config.yml new file mode 100644 index 0000000..440d2c1 --- /dev/null +++ b/plugins/CoreProtect/config.yml @@ -0,0 +1,141 @@ +# CoreProtect Config + +# CoreProtect is donationware. Obtain a donation key from coreprotect.net/donate/ +donation-key: + +# MySQL is optional and not required. +# If you prefer to use MySQL, enable the following and fill out the fields. +use-mysql: false +table-prefix: co_ +mysql-host: 127.0.0.1 +mysql-port: 3306 +mysql-database: database +mysql-username: root +mysql-password: + +# If enabled, CoreProtect will check for updates when your server starts up. +# If an update is available, you'll be notified via your server console. +check-updates: true + +# If enabled, other plugins will be able to utilize the CoreProtect API. +api-enabled: true + +# If enabled, extra data is displayed during rollbacks and restores. +# Can be manually triggered by adding "#verbose" to your rollback command. +verbose: true + +# If no radius is specified in a rollback or restore, this value will be +# used as the radius. Set to "0" to disable automatically adding a radius. +default-radius: 10 + +# The maximum radius that can be used in a command. Set to "0" to disable. +# To run a rollback or restore without a radius, you can use "r:#global". +max-radius: 100 + +# If enabled, items taken from containers (etc) will be included in rollbacks. +rollback-items: true + +# If enabled, entities, such as killed animals, will be included in rollbacks. +rollback-entities: true + +# If enabled, generic data, like zombies burning in daylight, won't be logged. +skip-generic-data: true + +# Logs blocks placed by players. +block-place: true + +# Logs blocks broken by players. +block-break: true + +# Logs blocks that break off of other blocks; for example, a sign or torch +# falling off of a dirt block that a player breaks. This is required for +# beds/doors to properly rollback. +natural-break: true + +# Properly track block movement, such as sand or gravel falling. +block-movement: true + +# Properly track blocks moved by pistons. +pistons: true + +# Logs blocks that burn up in a fire. +block-burn: true + +# Logs when a block naturally ignites, such as from fire spreading. +block-ignite: true + +# Logs explosions, such as TNT and Creepers. +explosions: true + +# Track when an entity changes a block, such as an Enderman destroying blocks. +entity-change: true + +# Logs killed entities, such as killed cows and enderman. +entity-kills: true + +# Logs text on signs. If disabled, signs will be blank when rolled back. +sign-text: true + +# Logs lava and water sources placed/removed by players who are using buckets. +buckets: true + +# Logs natural tree leaf decay. +leaf-decay: true + +# Logs tree growth. Trees are linked to the player who planted the sappling. +tree-growth: true + +# Logs mushroom growth. +mushroom-growth: true + +# Logs natural vine growth. +vine-growth: true + +# Logs when portals such as Nether portals generate naturally. +portals: true + +# Logs water flow. If water destroys other blocks, such as torches, +# this allows it to be properly rolled back. +water-flow: true + +# Logs lava flow. If lava destroys other blocks, such as torches, +# this allows it to be properly rolled back. +lava-flow: true + +# Allows liquid to be properly tracked and linked to players. +# For example, if a player places water which flows and destroys torches, +# it can all be properly restored by rolling back that single player. +liquid-tracking: true + +# Track item transactions, such as when a player takes items from +# a chest, furnace, or dispenser. +item-transactions: true + +# Logs items dropped by players. +item-drops: true + +# Logs items picked up by players. +item-pickups: true + +# Track all hopper transactions, such as when a hopper removes items from a +# chest, furnace, or dispenser. +hopper-transactions: true + +# Track player interactions, such as when a player opens a door, presses +# a button, or opens a chest. Player interactions can't be rolled back. +player-interactions: true + +# Logs messages that players send in the chat. +player-messages: true + +# Logs all commands used by players. +player-commands: true + +# Logs the logins and logouts of players. +player-sessions: true + +# Logs when a player changes their Minecraft username. +username-changes: true + +# Logs changes made via the plugin "WorldEdit" if it's in use on your server. +worldedit: true diff --git a/plugins/Essentials/items.json b/plugins/Essentials/items.json index a6c336c..61aa453 100644 --- a/plugins/Essentials/items.json +++ b/plugins/Essentials/items.json @@ -1,4 +1,4 @@ -#version: 2.18.1.0 +#version: 2.18.2.0 # This file is for internal EssentialsX usage. # We recommend using custom_items.yml to add custom aliases. { @@ -29011,4 +29011,4 @@ "zpmanmspawner": "zombified_piglin_spawner", "zpmanspawner": "zombified_piglin_spawner" } -#ae1c9750fc163b187fe265ec3bf902ad \ No newline at end of file +#f5df8e1a49de719313ce9e7a361dadef \ No newline at end of file diff --git a/plugins/EssentialsX-2.18.2.0.jar b/plugins/EssentialsX-2.18.2.0.jar new file mode 100644 index 0000000..a183348 Binary files /dev/null and b/plugins/EssentialsX-2.18.2.0.jar differ diff --git a/plugins/EssentialsXChat-2.18.2.0.jar b/plugins/EssentialsXChat-2.18.2.0.jar new file mode 100644 index 0000000..fd5717e Binary files /dev/null and b/plugins/EssentialsXChat-2.18.2.0.jar differ diff --git a/plugins/EssentialsXSpawn-2.18.2.0.jar b/plugins/EssentialsXSpawn-2.18.2.0.jar new file mode 100644 index 0000000..aba82c4 Binary files /dev/null and b/plugins/EssentialsXSpawn-2.18.2.0.jar differ diff --git a/plugins/[1.16]HolographicDisplays-2.4.5.jar b/plugins/HolographicDisplays-2.4.6.jar similarity index 74% rename from plugins/[1.16]HolographicDisplays-2.4.5.jar rename to plugins/HolographicDisplays-2.4.6.jar index bac056d..70b891c 100644 Binary files a/plugins/[1.16]HolographicDisplays-2.4.5.jar and b/plugins/HolographicDisplays-2.4.6.jar differ diff --git a/plugins/HungerGames-4.15.5.jar b/plugins/HungerGames-4.15.5.jar new file mode 100644 index 0000000..02238fc Binary files /dev/null and b/plugins/HungerGames-4.15.5.jar differ diff --git a/plugins/HungerGames/config.yml b/plugins/HungerGames/config.yml index fa08911..ed2c840 100644 --- a/plugins/HungerGames/config.yml +++ b/plugins/HungerGames/config.yml @@ -19,7 +19,15 @@ settings: min-bonus-chestcontent: 1 teleport-at-end: false teleport-at-end-time: 30 - max-team-size: 3 + debug: false + bonus-block-types: + - TRAPPED_CHEST + - BARREL + - SHULKER_BOX + hide-nametags: true + broadcast-join-messages: true + broadcast-win-messages: true + save-previous-location: true reward: enabled: false cash: 500 @@ -119,3 +127,8 @@ kits: - POTION potion:HEAL:60:2 2 name:&bSuper_Duper_Healing potion-effects: - FIRE_RESISTANCE:2:forever +team: + show-team-nametags: true + max-team-size: 3 + allow-friendly-fire: false + can-see-friendly-invisibles: true diff --git a/plugins/HungerGames/language.yml b/plugins/HungerGames/language.yml index 6a00e92..e0fc1e7 100644 --- a/plugins/HungerGames/language.yml +++ b/plugins/HungerGames/language.yml @@ -160,3 +160,24 @@ track-new2: '&a&l |&6&l Swing the stick to track players! &a&l lb-blank-space: '' lb-combined-separator: ' : ' cmd-exit-set-arena: '&6 Exit Spawn Set:' +spectator-start-title: You are now spectating! +team-prefix: '&7[&aTeam-&7]' +team-suffix: '' +team-created: '&aCreated team: &b' +team-already-exists: '&cTeam &b &calready exists.' +team-already-have: '&cYou have already created a team: &b' +team-none: '&cYou do not have a team, create one first with command &b''/hg team create + ''' +cmd-create-add-spawns: '&6You''re now ready to set some spawns with ''&a/hg addspawn&6''' +listener-wand-create-arena: '&6You''re now ready to create your arena with ''&a/hg + create&6''' +listener-wand-set-pos-2: '&6Now you need to set position 2!' +listener-wand-big-enough: '&cAn arena needs to be a cuboid of at least 5x5x5 in size.' +check-need-more-spawns: '&cYou still need &7 &c more spawns!' +check-broken-debug: '&cYour arena is marked as broken! use &7/hg debug &cto + check for errors!' +check-broken-debug-2: '&cIf no errors are found, please use &7/hg toggle &c!' +check-invalid-lobby: '&cYour LobbyWall is invalid! Please reset them!' +check-set-lobby: '&6Set lobbywall: &7/hg setlobbywall ' +check-ready-run: '&aYour HungerGames arena &7&a is ready to run!' +lb-missing-player: diff --git a/plugins/[1.16]Multiverse-Core-4.2.2.jar b/plugins/Multiverse-Core-4.2.2.jar similarity index 100% rename from plugins/[1.16]Multiverse-Core-4.2.2.jar rename to plugins/Multiverse-Core-4.2.2.jar diff --git a/plugins/Multiverse-Core/config.yml b/plugins/Multiverse-Core/config.yml index b7c2eea..8ff118c 100644 --- a/plugins/Multiverse-Core/config.yml +++ b/plugins/Multiverse-Core/config.yml @@ -33,3 +33,4 @@ multiverse-configuration: defaultportalsearch: 'false' portalsearchradius: '128' autopurge: 'true' + idonotwanttodonate: 'false' diff --git a/plugins/Multiverse-Core/worlds.yml b/plugins/Multiverse-Core/worlds.yml index 3d7702f..5a10591 100644 --- a/plugins/Multiverse-Core/worlds.yml +++ b/plugins/Multiverse-Core/worlds.yml @@ -89,54 +89,7 @@ worlds: bedRespawn: 'true' worldBlacklist: [] environment: NORMAL - seed: '461680750902393023' - generator: 'null' - playerLimit: '-1' - allowFlight: 'true' - flatroom: - ==: MVWorld - hidden: 'false' - alias: flatroom - color: WHITE - style: NORMAL - pvp: 'true' - scale: '1.0' - respawnWorld: '' - allowWeather: 'true' - difficulty: EASY - spawning: - ==: MVSpawnSettings - animals: - ==: MVSpawnSubSettings - spawn: 'true' - spawnrate: '-1' - exceptions: [] - monsters: - ==: MVSpawnSubSettings - spawn: 'true' - spawnrate: '-1' - exceptions: [] - entryfee: - ==: MVEntryFee - amount: '0.0' - hunger: 'true' - autoHeal: 'true' - adjustSpawn: 'true' - portalForm: ALL - gameMode: SURVIVAL - keepSpawnInMemory: 'true' - spawnLocation: - ==: MVSpawnLocation - x: 839.0 - y: 4.0 - z: 1028.0 - pitch: 0.0 - yaw: 0.0 - autoLoad: 'true' - bedRespawn: 'true' - worldBlacklist: [] - environment: NORMAL - seed: '-4893268947182547700' + seed: '1962504770608627350' generator: 'null' playerLimit: '-1' allowFlight: 'true' @@ -183,7 +136,7 @@ worlds: bedRespawn: 'true' worldBlacklist: [] environment: NETHER - seed: '461680750902393023' + seed: '1962504770608627350' generator: 'null' playerLimit: '-1' allowFlight: 'true' diff --git a/plugins/[1.16]NametagEdit-4.4.10.jar b/plugins/NametagEdit-Custom.jar similarity index 70% rename from plugins/[1.16]NametagEdit-4.4.10.jar rename to plugins/NametagEdit-Custom.jar index 5ee8613..62b3acd 100644 Binary files a/plugins/[1.16]NametagEdit-4.4.10.jar and b/plugins/NametagEdit-Custom.jar differ diff --git a/plugins/[1.16]PermissionsEx-1.23.4.jar b/plugins/PermissionsEx-1.23.4.jar similarity index 100% rename from plugins/[1.16]PermissionsEx-1.23.4.jar rename to plugins/PermissionsEx-1.23.4.jar diff --git a/plugins/[1.16]PlaceholderAPI-2.10.9.jar b/plugins/PlaceholderAPI-2.10.9.jar similarity index 100% rename from plugins/[1.16]PlaceholderAPI-2.10.9.jar rename to plugins/PlaceholderAPI-2.10.9.jar diff --git a/plugins/PluginMetrics/config.yml b/plugins/PluginMetrics/config.yml deleted file mode 100644 index 375fb4a..0000000 --- a/plugins/PluginMetrics/config.yml +++ /dev/null @@ -1,4 +0,0 @@ -# http://mcstats.org -opt-out: false -guid: c63404dd-ab5a-471c-a162-54d552482ba9 -debug: false diff --git a/plugins/ProtocolLib-495.jar b/plugins/ProtocolLib-495.jar new file mode 100644 index 0000000..a7b80eb Binary files /dev/null and b/plugins/ProtocolLib-495.jar differ diff --git a/plugins/ProtocolLib/lastupdate b/plugins/ProtocolLib/lastupdate index ade7f39..4de8ab9 100644 --- a/plugins/ProtocolLib/lastupdate +++ b/plugins/ProtocolLib/lastupdate @@ -1 +1 @@ -1604877058 \ No newline at end of file +1613961823 \ No newline at end of file diff --git a/plugins/ProtocolSupport-596.jar b/plugins/ProtocolSupport-596.jar new file mode 100644 index 0000000..9f11fec Binary files /dev/null and b/plugins/ProtocolSupport-596.jar differ diff --git a/plugins/[1.16]ServerListPlus-3.4.8-Universal.jar b/plugins/ServerListPlus-3.4.8-Universal.jar similarity index 100% rename from plugins/[1.16]ServerListPlus-3.4.8-Universal.jar rename to plugins/ServerListPlus-3.4.8-Universal.jar diff --git a/plugins/[1.16]TitleManager-2.3.1.jar b/plugins/TitleManager-2.3.1.jar similarity index 100% rename from plugins/[1.16]TitleManager-2.3.1.jar rename to plugins/TitleManager-2.3.1.jar diff --git a/plugins/TitleManager/animations/left-to-right.txt b/plugins/TitleManager/animations/left-to-right.txt index 2c8d37e..43cd902 100644 --- a/plugins/TitleManager/animations/left-to-right.txt +++ b/plugins/TitleManager/animations/left-to-right.txt @@ -1,18 +1,18 @@ -[0;5;0]&7&b-&7--------- -[0;2;0]&7-&b-&7-------- -[0;2;0]&7--&b-&7------- -[0;2;0]&7---&b-&7------ -[0;2;0]&7----&b-&7----- -[0;2;0]&7-----&b-&7---- -[0;2;0]&7------&b-&7--- -[0;2;0]&7-------&b-&7-- -[0;2;0]&7--------&b-&7- -[0;5;0]&7---------&b-&7 -[0;2;0]&7--------&b-&7- -[0;2;0]&7-------&b-&7-- -[0;2;0]&7------&b-&7--- -[0;2;0]&7-----&b-&7---- -[0;2;0]&7----&b-&7----- -[0;2;0]&7---&b-&7------ -[0;2;0]&7--&b-&7------- +[0;5;0]&7&b-&7--------- +[0;2;0]&7-&b-&7-------- +[0;2;0]&7--&b-&7------- +[0;2;0]&7---&b-&7------ +[0;2;0]&7----&b-&7----- +[0;2;0]&7-----&b-&7---- +[0;2;0]&7------&b-&7--- +[0;2;0]&7-------&b-&7-- +[0;2;0]&7--------&b-&7- +[0;5;0]&7---------&b-&7 +[0;2;0]&7--------&b-&7- +[0;2;0]&7-------&b-&7-- +[0;2;0]&7------&b-&7--- +[0;2;0]&7-----&b-&7---- +[0;2;0]&7----&b-&7----- +[0;2;0]&7---&b-&7------ +[0;2;0]&7--&b-&7------- [0;2;0]&7-&b-&7-------- \ No newline at end of file diff --git a/plugins/TitleManager/animations/right-to-left.txt b/plugins/TitleManager/animations/right-to-left.txt index 14e6377..606fb2c 100644 --- a/plugins/TitleManager/animations/right-to-left.txt +++ b/plugins/TitleManager/animations/right-to-left.txt @@ -1,18 +1,18 @@ -[0;5;0]&7---------&b-&7 -[0;2;0]&7--------&b-&7- -[0;2;0]&7-------&b-&7-- -[0;2;0]&7------&b-&7--- -[0;2;0]&7-----&b-&7---- -[0;2;0]&7----&b-&7----- -[0;2;0]&7---&b-&7------ -[0;2;0]&7--&b-&7------- -[0;2;0]&7-&b-&7-------- -[0;5;0]&7&b-&7--------- -[0;2;0]&7-&b-&7-------- -[0;2;0]&7--&b-&7------- -[0;2;0]&7---&b-&7------ -[0;2;0]&7----&b-&7----- -[0;2;0]&7-----&b-&7---- -[0;2;0]&7------&b-&7--- -[0;2;0]&7-------&b-&7-- +[0;5;0]&7---------&b-&7 +[0;2;0]&7--------&b-&7- +[0;2;0]&7-------&b-&7-- +[0;2;0]&7------&b-&7--- +[0;2;0]&7-----&b-&7---- +[0;2;0]&7----&b-&7----- +[0;2;0]&7---&b-&7------ +[0;2;0]&7--&b-&7------- +[0;2;0]&7-&b-&7-------- +[0;5;0]&7&b-&7--------- +[0;2;0]&7-&b-&7-------- +[0;2;0]&7--&b-&7------- +[0;2;0]&7---&b-&7------ +[0;2;0]&7----&b-&7----- +[0;2;0]&7-----&b-&7---- +[0;2;0]&7------&b-&7--- +[0;2;0]&7-------&b-&7-- [0;2;0]&7--------&b-&7- \ No newline at end of file diff --git a/plugins/[1.16]Vault-1.7.3.jar b/plugins/Vault-1.7.3.jar similarity index 100% rename from plugins/[1.16]Vault-1.7.3.jar rename to plugins/Vault-1.7.3.jar diff --git a/plugins/WorldGuard/config.yml b/plugins/WorldGuard/config.yml index aa0ea7f..8a0dd5d 100644 --- a/plugins/WorldGuard/config.yml +++ b/plugins/WorldGuard/config.yml @@ -24,6 +24,8 @@ regions: default: 7 use-paper-entity-origin: false cancel-chat-without-recipients: true + disable-bypass-by-default: false + announce-bypass-status: false auto-invincible: false auto-invincible-group: false auto-no-drowning-group: false @@ -50,6 +52,7 @@ protection: remove-infinite-stacks: false disable-xp-orb-drops: false disable-obsidian-generators: false + use-max-priority-association: false gameplay: block-potions: [] block-potions-overly-reliably: false @@ -161,3 +164,7 @@ blacklist: path: worldguard/logs/%Y-%m-%d.log open-files: 10 use-particle-effects: true +disable-permission-cache: false +turtle-egg: + disable-creature-trampling: false + disable-player-trampling: false diff --git a/plugins/WorldGuard/worlds/Breeze2/blacklist.txt b/plugins/WorldGuard/worlds/Breeze2/blacklist.txt index 8ed6e0d..ab76bd2 100644 --- a/plugins/WorldGuard/worlds/Breeze2/blacklist.txt +++ b/plugins/WorldGuard/worlds/Breeze2/blacklist.txt @@ -1,65 +1,65 @@ -# -# WorldGuard blacklist -# -# The blacklist lets you block actions, blocks, and items from being used. -# You choose a set of "items to affect" and a list of "actions to perform." -# -############################################################################### -# -# Example to block some ore mining and placement: -# [coalore,goldore,ironore] -# on-break=deny,log,kick -# on-place=deny,tell -# -# Events that you can detect: -# - on-break (when a block of this type is about to be broken) -# - on-destroy-with (the item/block held by the user while destroying) -# - on-place (a block is being placed) -# - on-use (an item like flint and steel or a bucket is being used) -# - on-interact (when a block in used (doors, chests, etc.)) -# - on-drop (an item is being dropped from the player's inventory) -# - on-acquire (an item enters a player's inventory via some method) -# - on-dispense (a dispenser is about to dispense an item) -# -# Actions (for events): -# - deny (deny completely, used blacklist mode) -# - allow (used in whitelist mode) -# - notify (notify admins with the 'worldguard.notify' permission) -# - log (log to console/file/database) -# - tell (tell a player that that's not allowed) -# - kick (kick player) -# - ban (ban player) -# -# Options: -# - ignore-groups (comma-separated list of groups to not affect) -# - ignore-perms (comma-separated list of permissions to not affect - make up -# your very own permissions!) -# - comment (message for yourself that is printed with 'log' and 'notify') -# - message (optional message to show the user instead; %s is the item name) -# -############################################################################### -# -# For more information, see: -# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist -# -############################################################################### -# -# Some examples follow. -# REMEMBER: If a line has # in front, it will be ignored. -# - -# Deny lava buckets -#[lavabucket] -#ignore-perms=my.own.madeup.permission -#ignore-groups=admins,mods -#on-use=deny,tell - -# Deny some ore -#[coalore,goldore,ironore] -#ignore-groups=admins,mods -#on-break=notify,deny,log - -# Some funky data value tests -#[wood:0;>=2] -#ignore-groups=admins,mods +# +# WorldGuard blacklist +# +# The blacklist lets you block actions, blocks, and items from being used. +# You choose a set of "items to affect" and a list of "actions to perform." +# +############################################################################### +# +# Example to block some ore mining and placement: +# [coalore,goldore,ironore] +# on-break=deny,log,kick +# on-place=deny,tell +# +# Events that you can detect: +# - on-break (when a block of this type is about to be broken) +# - on-destroy-with (the item/block held by the user while destroying) +# - on-place (a block is being placed) +# - on-use (an item like flint and steel or a bucket is being used) +# - on-interact (when a block in used (doors, chests, etc.)) +# - on-drop (an item is being dropped from the player's inventory) +# - on-acquire (an item enters a player's inventory via some method) +# - on-dispense (a dispenser is about to dispense an item) +# +# Actions (for events): +# - deny (deny completely, used blacklist mode) +# - allow (used in whitelist mode) +# - notify (notify admins with the 'worldguard.notify' permission) +# - log (log to console/file/database) +# - tell (tell a player that that's not allowed) +# - kick (kick player) +# - ban (ban player) +# +# Options: +# - ignore-groups (comma-separated list of groups to not affect) +# - ignore-perms (comma-separated list of permissions to not affect - make up +# your very own permissions!) +# - comment (message for yourself that is printed with 'log' and 'notify') +# - message (optional message to show the user instead; %s is the item name) +# +############################################################################### +# +# For more information, see: +# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist +# +############################################################################### +# +# Some examples follow. +# REMEMBER: If a line has # in front, it will be ignored. +# + +# Deny lava buckets +#[lavabucket] +#ignore-perms=my.own.madeup.permission +#ignore-groups=admins,mods +#on-use=deny,tell + +# Deny some ore +#[coalore,goldore,ironore] +#ignore-groups=admins,mods +#on-break=notify,deny,log + +# Some funky data value tests +#[wood:0;>=2] +#ignore-groups=admins,mods #on-break=notify,deny,log \ No newline at end of file diff --git a/plugins/WorldGuard/worlds/Chernobyl2015/blacklist.txt b/plugins/WorldGuard/worlds/Chernobyl2015/blacklist.txt index 8ed6e0d..ab76bd2 100644 --- a/plugins/WorldGuard/worlds/Chernobyl2015/blacklist.txt +++ b/plugins/WorldGuard/worlds/Chernobyl2015/blacklist.txt @@ -1,65 +1,65 @@ -# -# WorldGuard blacklist -# -# The blacklist lets you block actions, blocks, and items from being used. -# You choose a set of "items to affect" and a list of "actions to perform." -# -############################################################################### -# -# Example to block some ore mining and placement: -# [coalore,goldore,ironore] -# on-break=deny,log,kick -# on-place=deny,tell -# -# Events that you can detect: -# - on-break (when a block of this type is about to be broken) -# - on-destroy-with (the item/block held by the user while destroying) -# - on-place (a block is being placed) -# - on-use (an item like flint and steel or a bucket is being used) -# - on-interact (when a block in used (doors, chests, etc.)) -# - on-drop (an item is being dropped from the player's inventory) -# - on-acquire (an item enters a player's inventory via some method) -# - on-dispense (a dispenser is about to dispense an item) -# -# Actions (for events): -# - deny (deny completely, used blacklist mode) -# - allow (used in whitelist mode) -# - notify (notify admins with the 'worldguard.notify' permission) -# - log (log to console/file/database) -# - tell (tell a player that that's not allowed) -# - kick (kick player) -# - ban (ban player) -# -# Options: -# - ignore-groups (comma-separated list of groups to not affect) -# - ignore-perms (comma-separated list of permissions to not affect - make up -# your very own permissions!) -# - comment (message for yourself that is printed with 'log' and 'notify') -# - message (optional message to show the user instead; %s is the item name) -# -############################################################################### -# -# For more information, see: -# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist -# -############################################################################### -# -# Some examples follow. -# REMEMBER: If a line has # in front, it will be ignored. -# - -# Deny lava buckets -#[lavabucket] -#ignore-perms=my.own.madeup.permission -#ignore-groups=admins,mods -#on-use=deny,tell - -# Deny some ore -#[coalore,goldore,ironore] -#ignore-groups=admins,mods -#on-break=notify,deny,log - -# Some funky data value tests -#[wood:0;>=2] -#ignore-groups=admins,mods +# +# WorldGuard blacklist +# +# The blacklist lets you block actions, blocks, and items from being used. +# You choose a set of "items to affect" and a list of "actions to perform." +# +############################################################################### +# +# Example to block some ore mining and placement: +# [coalore,goldore,ironore] +# on-break=deny,log,kick +# on-place=deny,tell +# +# Events that you can detect: +# - on-break (when a block of this type is about to be broken) +# - on-destroy-with (the item/block held by the user while destroying) +# - on-place (a block is being placed) +# - on-use (an item like flint and steel or a bucket is being used) +# - on-interact (when a block in used (doors, chests, etc.)) +# - on-drop (an item is being dropped from the player's inventory) +# - on-acquire (an item enters a player's inventory via some method) +# - on-dispense (a dispenser is about to dispense an item) +# +# Actions (for events): +# - deny (deny completely, used blacklist mode) +# - allow (used in whitelist mode) +# - notify (notify admins with the 'worldguard.notify' permission) +# - log (log to console/file/database) +# - tell (tell a player that that's not allowed) +# - kick (kick player) +# - ban (ban player) +# +# Options: +# - ignore-groups (comma-separated list of groups to not affect) +# - ignore-perms (comma-separated list of permissions to not affect - make up +# your very own permissions!) +# - comment (message for yourself that is printed with 'log' and 'notify') +# - message (optional message to show the user instead; %s is the item name) +# +############################################################################### +# +# For more information, see: +# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist +# +############################################################################### +# +# Some examples follow. +# REMEMBER: If a line has # in front, it will be ignored. +# + +# Deny lava buckets +#[lavabucket] +#ignore-perms=my.own.madeup.permission +#ignore-groups=admins,mods +#on-use=deny,tell + +# Deny some ore +#[coalore,goldore,ironore] +#ignore-groups=admins,mods +#on-break=notify,deny,log + +# Some funky data value tests +#[wood:0;>=2] +#ignore-groups=admins,mods #on-break=notify,deny,log \ No newline at end of file diff --git a/plugins/WorldGuard/worlds/SurvivalGames_world/blacklist.txt b/plugins/WorldGuard/worlds/SurvivalGames_world/blacklist.txt index 8ed6e0d..ab76bd2 100644 --- a/plugins/WorldGuard/worlds/SurvivalGames_world/blacklist.txt +++ b/plugins/WorldGuard/worlds/SurvivalGames_world/blacklist.txt @@ -1,65 +1,65 @@ -# -# WorldGuard blacklist -# -# The blacklist lets you block actions, blocks, and items from being used. -# You choose a set of "items to affect" and a list of "actions to perform." -# -############################################################################### -# -# Example to block some ore mining and placement: -# [coalore,goldore,ironore] -# on-break=deny,log,kick -# on-place=deny,tell -# -# Events that you can detect: -# - on-break (when a block of this type is about to be broken) -# - on-destroy-with (the item/block held by the user while destroying) -# - on-place (a block is being placed) -# - on-use (an item like flint and steel or a bucket is being used) -# - on-interact (when a block in used (doors, chests, etc.)) -# - on-drop (an item is being dropped from the player's inventory) -# - on-acquire (an item enters a player's inventory via some method) -# - on-dispense (a dispenser is about to dispense an item) -# -# Actions (for events): -# - deny (deny completely, used blacklist mode) -# - allow (used in whitelist mode) -# - notify (notify admins with the 'worldguard.notify' permission) -# - log (log to console/file/database) -# - tell (tell a player that that's not allowed) -# - kick (kick player) -# - ban (ban player) -# -# Options: -# - ignore-groups (comma-separated list of groups to not affect) -# - ignore-perms (comma-separated list of permissions to not affect - make up -# your very own permissions!) -# - comment (message for yourself that is printed with 'log' and 'notify') -# - message (optional message to show the user instead; %s is the item name) -# -############################################################################### -# -# For more information, see: -# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist -# -############################################################################### -# -# Some examples follow. -# REMEMBER: If a line has # in front, it will be ignored. -# - -# Deny lava buckets -#[lavabucket] -#ignore-perms=my.own.madeup.permission -#ignore-groups=admins,mods -#on-use=deny,tell - -# Deny some ore -#[coalore,goldore,ironore] -#ignore-groups=admins,mods -#on-break=notify,deny,log - -# Some funky data value tests -#[wood:0;>=2] -#ignore-groups=admins,mods +# +# WorldGuard blacklist +# +# The blacklist lets you block actions, blocks, and items from being used. +# You choose a set of "items to affect" and a list of "actions to perform." +# +############################################################################### +# +# Example to block some ore mining and placement: +# [coalore,goldore,ironore] +# on-break=deny,log,kick +# on-place=deny,tell +# +# Events that you can detect: +# - on-break (when a block of this type is about to be broken) +# - on-destroy-with (the item/block held by the user while destroying) +# - on-place (a block is being placed) +# - on-use (an item like flint and steel or a bucket is being used) +# - on-interact (when a block in used (doors, chests, etc.)) +# - on-drop (an item is being dropped from the player's inventory) +# - on-acquire (an item enters a player's inventory via some method) +# - on-dispense (a dispenser is about to dispense an item) +# +# Actions (for events): +# - deny (deny completely, used blacklist mode) +# - allow (used in whitelist mode) +# - notify (notify admins with the 'worldguard.notify' permission) +# - log (log to console/file/database) +# - tell (tell a player that that's not allowed) +# - kick (kick player) +# - ban (ban player) +# +# Options: +# - ignore-groups (comma-separated list of groups to not affect) +# - ignore-perms (comma-separated list of permissions to not affect - make up +# your very own permissions!) +# - comment (message for yourself that is printed with 'log' and 'notify') +# - message (optional message to show the user instead; %s is the item name) +# +############################################################################### +# +# For more information, see: +# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist +# +############################################################################### +# +# Some examples follow. +# REMEMBER: If a line has # in front, it will be ignored. +# + +# Deny lava buckets +#[lavabucket] +#ignore-perms=my.own.madeup.permission +#ignore-groups=admins,mods +#on-use=deny,tell + +# Deny some ore +#[coalore,goldore,ironore] +#ignore-groups=admins,mods +#on-break=notify,deny,log + +# Some funky data value tests +#[wood:0;>=2] +#ignore-groups=admins,mods #on-break=notify,deny,log \ No newline at end of file diff --git a/plugins/WorldGuard/worlds/SurvivalGames_world_nether/blacklist.txt b/plugins/WorldGuard/worlds/SurvivalGames_world_nether/blacklist.txt index ae7f7da..98833e9 100644 --- a/plugins/WorldGuard/worlds/SurvivalGames_world_nether/blacklist.txt +++ b/plugins/WorldGuard/worlds/SurvivalGames_world_nether/blacklist.txt @@ -1,62 +1,62 @@ -# -# WorldGuard blacklist -# -# The blacklist lets you block actions, blocks, and items from being used. -# You choose a set of "items to affect" and a list of "actions to perform." -# -############################################################################### -# -# Example to block some ore mining and placement: -# [coal_ore,gold_ore,iron_ore] -# on-break=deny,log,kick -# on-place=deny,tell -# -# Events that you can detect: -# - on-break (when a block of this type is about to be broken) -# - on-destroy-with (the item/block held by the user while destroying) -# - on-place (a block is being placed) -# - on-use (an item like flint and steel or a bucket is being used) -# - on-interact (when a block in used (doors, chests, etc.)) -# - on-drop (an item is being dropped from the player's inventory) -# - on-acquire (an item enters a player's inventory via some method) -# - on-equip (an item is equipped to the player's armor slots) -# NOTE: on-equip is overprotective due to deficiencies in Bukkit API -# - on-dispense (a dispenser is about to dispense an item) -# -# Actions (for events): -# - deny (deny completely, used blacklist mode) -# - allow (used in whitelist mode) -# - notify (notify admins with the 'worldguard.notify' permission) -# - log (log to console/file/database) -# - tell (tell a player that that's not allowed) -# - kick (kick player) -# - ban (ban player) -# -# Options: -# - ignore-groups (comma-separated list of groups to not affect) -# - ignore-perms (comma-separated list of permissions to not affect - make up -# your very own permissions!) -# - comment (message for yourself that is printed with 'log' and 'notify') -# - message (optional message to show the user instead; %s is the item name) -# -############################################################################### -# -# For more information, see: -# https://worldguard.enginehub.org/en/latest/blacklist/ -# -############################################################################### -# -# Some examples follow. -# REMEMBER: If a line has # in front, it will be ignored. -# - -# Deny lava buckets -#[lava_bucket] -#ignore-perms=my.own.madeup.permission -#ignore-groups=admins,mods -#on-use=deny,tell - -# Deny some ore -#[coal_ore,gold_ore,iron_ore] -#ignore-groups=admins,mods -#on-break=notify,deny,log +# +# WorldGuard blacklist +# +# The blacklist lets you block actions, blocks, and items from being used. +# You choose a set of "items to affect" and a list of "actions to perform." +# +############################################################################### +# +# Example to block some ore mining and placement: +# [coal_ore,gold_ore,iron_ore] +# on-break=deny,log,kick +# on-place=deny,tell +# +# Events that you can detect: +# - on-break (when a block of this type is about to be broken) +# - on-destroy-with (the item/block held by the user while destroying) +# - on-place (a block is being placed) +# - on-use (an item like flint and steel or a bucket is being used) +# - on-interact (when a block in used (doors, chests, etc.)) +# - on-drop (an item is being dropped from the player's inventory) +# - on-acquire (an item enters a player's inventory via some method) +# - on-equip (an item is equipped to the player's armor slots) +# NOTE: on-equip is overprotective due to deficiencies in Bukkit API +# - on-dispense (a dispenser is about to dispense an item) +# +# Actions (for events): +# - deny (deny completely, used blacklist mode) +# - allow (used in whitelist mode) +# - notify (notify admins with the 'worldguard.notify' permission) +# - log (log to console/file/database) +# - tell (tell a player that that's not allowed) +# - kick (kick player) +# - ban (ban player) +# +# Options: +# - ignore-groups (comma-separated list of groups to not affect) +# - ignore-perms (comma-separated list of permissions to not affect - make up +# your very own permissions!) +# - comment (message for yourself that is printed with 'log' and 'notify') +# - message (optional message to show the user instead; %s is the item name) +# +############################################################################### +# +# For more information, see: +# https://worldguard.enginehub.org/en/latest/blacklist/ +# +############################################################################### +# +# Some examples follow. +# REMEMBER: If a line has # in front, it will be ignored. +# + +# Deny lava buckets +#[lava_bucket] +#ignore-perms=my.own.madeup.permission +#ignore-groups=admins,mods +#on-use=deny,tell + +# Deny some ore +#[coal_ore,gold_ore,iron_ore] +#ignore-groups=admins,mods +#on-break=notify,deny,log diff --git a/plugins/WorldGuard/worlds/TheZone85/blacklist.txt b/plugins/WorldGuard/worlds/TheZone85/blacklist.txt index 8ed6e0d..ab76bd2 100644 --- a/plugins/WorldGuard/worlds/TheZone85/blacklist.txt +++ b/plugins/WorldGuard/worlds/TheZone85/blacklist.txt @@ -1,65 +1,65 @@ -# -# WorldGuard blacklist -# -# The blacklist lets you block actions, blocks, and items from being used. -# You choose a set of "items to affect" and a list of "actions to perform." -# -############################################################################### -# -# Example to block some ore mining and placement: -# [coalore,goldore,ironore] -# on-break=deny,log,kick -# on-place=deny,tell -# -# Events that you can detect: -# - on-break (when a block of this type is about to be broken) -# - on-destroy-with (the item/block held by the user while destroying) -# - on-place (a block is being placed) -# - on-use (an item like flint and steel or a bucket is being used) -# - on-interact (when a block in used (doors, chests, etc.)) -# - on-drop (an item is being dropped from the player's inventory) -# - on-acquire (an item enters a player's inventory via some method) -# - on-dispense (a dispenser is about to dispense an item) -# -# Actions (for events): -# - deny (deny completely, used blacklist mode) -# - allow (used in whitelist mode) -# - notify (notify admins with the 'worldguard.notify' permission) -# - log (log to console/file/database) -# - tell (tell a player that that's not allowed) -# - kick (kick player) -# - ban (ban player) -# -# Options: -# - ignore-groups (comma-separated list of groups to not affect) -# - ignore-perms (comma-separated list of permissions to not affect - make up -# your very own permissions!) -# - comment (message for yourself that is printed with 'log' and 'notify') -# - message (optional message to show the user instead; %s is the item name) -# -############################################################################### -# -# For more information, see: -# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist -# -############################################################################### -# -# Some examples follow. -# REMEMBER: If a line has # in front, it will be ignored. -# - -# Deny lava buckets -#[lavabucket] -#ignore-perms=my.own.madeup.permission -#ignore-groups=admins,mods -#on-use=deny,tell - -# Deny some ore -#[coalore,goldore,ironore] -#ignore-groups=admins,mods -#on-break=notify,deny,log - -# Some funky data value tests -#[wood:0;>=2] -#ignore-groups=admins,mods +# +# WorldGuard blacklist +# +# The blacklist lets you block actions, blocks, and items from being used. +# You choose a set of "items to affect" and a list of "actions to perform." +# +############################################################################### +# +# Example to block some ore mining and placement: +# [coalore,goldore,ironore] +# on-break=deny,log,kick +# on-place=deny,tell +# +# Events that you can detect: +# - on-break (when a block of this type is about to be broken) +# - on-destroy-with (the item/block held by the user while destroying) +# - on-place (a block is being placed) +# - on-use (an item like flint and steel or a bucket is being used) +# - on-interact (when a block in used (doors, chests, etc.)) +# - on-drop (an item is being dropped from the player's inventory) +# - on-acquire (an item enters a player's inventory via some method) +# - on-dispense (a dispenser is about to dispense an item) +# +# Actions (for events): +# - deny (deny completely, used blacklist mode) +# - allow (used in whitelist mode) +# - notify (notify admins with the 'worldguard.notify' permission) +# - log (log to console/file/database) +# - tell (tell a player that that's not allowed) +# - kick (kick player) +# - ban (ban player) +# +# Options: +# - ignore-groups (comma-separated list of groups to not affect) +# - ignore-perms (comma-separated list of permissions to not affect - make up +# your very own permissions!) +# - comment (message for yourself that is printed with 'log' and 'notify') +# - message (optional message to show the user instead; %s is the item name) +# +############################################################################### +# +# For more information, see: +# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist +# +############################################################################### +# +# Some examples follow. +# REMEMBER: If a line has # in front, it will be ignored. +# + +# Deny lava buckets +#[lavabucket] +#ignore-perms=my.own.madeup.permission +#ignore-groups=admins,mods +#on-use=deny,tell + +# Deny some ore +#[coalore,goldore,ironore] +#ignore-groups=admins,mods +#on-break=notify,deny,log + +# Some funky data value tests +#[wood:0;>=2] +#ignore-groups=admins,mods #on-break=notify,deny,log \ No newline at end of file diff --git a/plugins/WorldGuard/worlds/mcsg2/blacklist.txt b/plugins/WorldGuard/worlds/mcsg2/blacklist.txt index 8ed6e0d..ab76bd2 100644 --- a/plugins/WorldGuard/worlds/mcsg2/blacklist.txt +++ b/plugins/WorldGuard/worlds/mcsg2/blacklist.txt @@ -1,65 +1,65 @@ -# -# WorldGuard blacklist -# -# The blacklist lets you block actions, blocks, and items from being used. -# You choose a set of "items to affect" and a list of "actions to perform." -# -############################################################################### -# -# Example to block some ore mining and placement: -# [coalore,goldore,ironore] -# on-break=deny,log,kick -# on-place=deny,tell -# -# Events that you can detect: -# - on-break (when a block of this type is about to be broken) -# - on-destroy-with (the item/block held by the user while destroying) -# - on-place (a block is being placed) -# - on-use (an item like flint and steel or a bucket is being used) -# - on-interact (when a block in used (doors, chests, etc.)) -# - on-drop (an item is being dropped from the player's inventory) -# - on-acquire (an item enters a player's inventory via some method) -# - on-dispense (a dispenser is about to dispense an item) -# -# Actions (for events): -# - deny (deny completely, used blacklist mode) -# - allow (used in whitelist mode) -# - notify (notify admins with the 'worldguard.notify' permission) -# - log (log to console/file/database) -# - tell (tell a player that that's not allowed) -# - kick (kick player) -# - ban (ban player) -# -# Options: -# - ignore-groups (comma-separated list of groups to not affect) -# - ignore-perms (comma-separated list of permissions to not affect - make up -# your very own permissions!) -# - comment (message for yourself that is printed with 'log' and 'notify') -# - message (optional message to show the user instead; %s is the item name) -# -############################################################################### -# -# For more information, see: -# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist -# -############################################################################### -# -# Some examples follow. -# REMEMBER: If a line has # in front, it will be ignored. -# - -# Deny lava buckets -#[lavabucket] -#ignore-perms=my.own.madeup.permission -#ignore-groups=admins,mods -#on-use=deny,tell - -# Deny some ore -#[coalore,goldore,ironore] -#ignore-groups=admins,mods -#on-break=notify,deny,log - -# Some funky data value tests -#[wood:0;>=2] -#ignore-groups=admins,mods +# +# WorldGuard blacklist +# +# The blacklist lets you block actions, blocks, and items from being used. +# You choose a set of "items to affect" and a list of "actions to perform." +# +############################################################################### +# +# Example to block some ore mining and placement: +# [coalore,goldore,ironore] +# on-break=deny,log,kick +# on-place=deny,tell +# +# Events that you can detect: +# - on-break (when a block of this type is about to be broken) +# - on-destroy-with (the item/block held by the user while destroying) +# - on-place (a block is being placed) +# - on-use (an item like flint and steel or a bucket is being used) +# - on-interact (when a block in used (doors, chests, etc.)) +# - on-drop (an item is being dropped from the player's inventory) +# - on-acquire (an item enters a player's inventory via some method) +# - on-dispense (a dispenser is about to dispense an item) +# +# Actions (for events): +# - deny (deny completely, used blacklist mode) +# - allow (used in whitelist mode) +# - notify (notify admins with the 'worldguard.notify' permission) +# - log (log to console/file/database) +# - tell (tell a player that that's not allowed) +# - kick (kick player) +# - ban (ban player) +# +# Options: +# - ignore-groups (comma-separated list of groups to not affect) +# - ignore-perms (comma-separated list of permissions to not affect - make up +# your very own permissions!) +# - comment (message for yourself that is printed with 'log' and 'notify') +# - message (optional message to show the user instead; %s is the item name) +# +############################################################################### +# +# For more information, see: +# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist +# +############################################################################### +# +# Some examples follow. +# REMEMBER: If a line has # in front, it will be ignored. +# + +# Deny lava buckets +#[lavabucket] +#ignore-perms=my.own.madeup.permission +#ignore-groups=admins,mods +#on-use=deny,tell + +# Deny some ore +#[coalore,goldore,ironore] +#ignore-groups=admins,mods +#on-break=notify,deny,log + +# Some funky data value tests +#[wood:0;>=2] +#ignore-groups=admins,mods #on-break=notify,deny,log \ No newline at end of file diff --git a/plugins/WorldGuard/worlds/sg7/blacklist.txt b/plugins/WorldGuard/worlds/sg7/blacklist.txt index 8ed6e0d..ab76bd2 100644 --- a/plugins/WorldGuard/worlds/sg7/blacklist.txt +++ b/plugins/WorldGuard/worlds/sg7/blacklist.txt @@ -1,65 +1,65 @@ -# -# WorldGuard blacklist -# -# The blacklist lets you block actions, blocks, and items from being used. -# You choose a set of "items to affect" and a list of "actions to perform." -# -############################################################################### -# -# Example to block some ore mining and placement: -# [coalore,goldore,ironore] -# on-break=deny,log,kick -# on-place=deny,tell -# -# Events that you can detect: -# - on-break (when a block of this type is about to be broken) -# - on-destroy-with (the item/block held by the user while destroying) -# - on-place (a block is being placed) -# - on-use (an item like flint and steel or a bucket is being used) -# - on-interact (when a block in used (doors, chests, etc.)) -# - on-drop (an item is being dropped from the player's inventory) -# - on-acquire (an item enters a player's inventory via some method) -# - on-dispense (a dispenser is about to dispense an item) -# -# Actions (for events): -# - deny (deny completely, used blacklist mode) -# - allow (used in whitelist mode) -# - notify (notify admins with the 'worldguard.notify' permission) -# - log (log to console/file/database) -# - tell (tell a player that that's not allowed) -# - kick (kick player) -# - ban (ban player) -# -# Options: -# - ignore-groups (comma-separated list of groups to not affect) -# - ignore-perms (comma-separated list of permissions to not affect - make up -# your very own permissions!) -# - comment (message for yourself that is printed with 'log' and 'notify') -# - message (optional message to show the user instead; %s is the item name) -# -############################################################################### -# -# For more information, see: -# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist -# -############################################################################### -# -# Some examples follow. -# REMEMBER: If a line has # in front, it will be ignored. -# - -# Deny lava buckets -#[lavabucket] -#ignore-perms=my.own.madeup.permission -#ignore-groups=admins,mods -#on-use=deny,tell - -# Deny some ore -#[coalore,goldore,ironore] -#ignore-groups=admins,mods -#on-break=notify,deny,log - -# Some funky data value tests -#[wood:0;>=2] -#ignore-groups=admins,mods +# +# WorldGuard blacklist +# +# The blacklist lets you block actions, blocks, and items from being used. +# You choose a set of "items to affect" and a list of "actions to perform." +# +############################################################################### +# +# Example to block some ore mining and placement: +# [coalore,goldore,ironore] +# on-break=deny,log,kick +# on-place=deny,tell +# +# Events that you can detect: +# - on-break (when a block of this type is about to be broken) +# - on-destroy-with (the item/block held by the user while destroying) +# - on-place (a block is being placed) +# - on-use (an item like flint and steel or a bucket is being used) +# - on-interact (when a block in used (doors, chests, etc.)) +# - on-drop (an item is being dropped from the player's inventory) +# - on-acquire (an item enters a player's inventory via some method) +# - on-dispense (a dispenser is about to dispense an item) +# +# Actions (for events): +# - deny (deny completely, used blacklist mode) +# - allow (used in whitelist mode) +# - notify (notify admins with the 'worldguard.notify' permission) +# - log (log to console/file/database) +# - tell (tell a player that that's not allowed) +# - kick (kick player) +# - ban (ban player) +# +# Options: +# - ignore-groups (comma-separated list of groups to not affect) +# - ignore-perms (comma-separated list of permissions to not affect - make up +# your very own permissions!) +# - comment (message for yourself that is printed with 'log' and 'notify') +# - message (optional message to show the user instead; %s is the item name) +# +############################################################################### +# +# For more information, see: +# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist +# +############################################################################### +# +# Some examples follow. +# REMEMBER: If a line has # in front, it will be ignored. +# + +# Deny lava buckets +#[lavabucket] +#ignore-perms=my.own.madeup.permission +#ignore-groups=admins,mods +#on-use=deny,tell + +# Deny some ore +#[coalore,goldore,ironore] +#ignore-groups=admins,mods +#on-break=notify,deny,log + +# Some funky data value tests +#[wood:0;>=2] +#ignore-groups=admins,mods #on-break=notify,deny,log \ No newline at end of file diff --git a/plugins/WorldGuard/worlds/world/blacklist.txt b/plugins/WorldGuard/worlds/world/blacklist.txt index ae7f7da..98833e9 100644 --- a/plugins/WorldGuard/worlds/world/blacklist.txt +++ b/plugins/WorldGuard/worlds/world/blacklist.txt @@ -1,62 +1,62 @@ -# -# WorldGuard blacklist -# -# The blacklist lets you block actions, blocks, and items from being used. -# You choose a set of "items to affect" and a list of "actions to perform." -# -############################################################################### -# -# Example to block some ore mining and placement: -# [coal_ore,gold_ore,iron_ore] -# on-break=deny,log,kick -# on-place=deny,tell -# -# Events that you can detect: -# - on-break (when a block of this type is about to be broken) -# - on-destroy-with (the item/block held by the user while destroying) -# - on-place (a block is being placed) -# - on-use (an item like flint and steel or a bucket is being used) -# - on-interact (when a block in used (doors, chests, etc.)) -# - on-drop (an item is being dropped from the player's inventory) -# - on-acquire (an item enters a player's inventory via some method) -# - on-equip (an item is equipped to the player's armor slots) -# NOTE: on-equip is overprotective due to deficiencies in Bukkit API -# - on-dispense (a dispenser is about to dispense an item) -# -# Actions (for events): -# - deny (deny completely, used blacklist mode) -# - allow (used in whitelist mode) -# - notify (notify admins with the 'worldguard.notify' permission) -# - log (log to console/file/database) -# - tell (tell a player that that's not allowed) -# - kick (kick player) -# - ban (ban player) -# -# Options: -# - ignore-groups (comma-separated list of groups to not affect) -# - ignore-perms (comma-separated list of permissions to not affect - make up -# your very own permissions!) -# - comment (message for yourself that is printed with 'log' and 'notify') -# - message (optional message to show the user instead; %s is the item name) -# -############################################################################### -# -# For more information, see: -# https://worldguard.enginehub.org/en/latest/blacklist/ -# -############################################################################### -# -# Some examples follow. -# REMEMBER: If a line has # in front, it will be ignored. -# - -# Deny lava buckets -#[lava_bucket] -#ignore-perms=my.own.madeup.permission -#ignore-groups=admins,mods -#on-use=deny,tell - -# Deny some ore -#[coal_ore,gold_ore,iron_ore] -#ignore-groups=admins,mods -#on-break=notify,deny,log +# +# WorldGuard blacklist +# +# The blacklist lets you block actions, blocks, and items from being used. +# You choose a set of "items to affect" and a list of "actions to perform." +# +############################################################################### +# +# Example to block some ore mining and placement: +# [coal_ore,gold_ore,iron_ore] +# on-break=deny,log,kick +# on-place=deny,tell +# +# Events that you can detect: +# - on-break (when a block of this type is about to be broken) +# - on-destroy-with (the item/block held by the user while destroying) +# - on-place (a block is being placed) +# - on-use (an item like flint and steel or a bucket is being used) +# - on-interact (when a block in used (doors, chests, etc.)) +# - on-drop (an item is being dropped from the player's inventory) +# - on-acquire (an item enters a player's inventory via some method) +# - on-equip (an item is equipped to the player's armor slots) +# NOTE: on-equip is overprotective due to deficiencies in Bukkit API +# - on-dispense (a dispenser is about to dispense an item) +# +# Actions (for events): +# - deny (deny completely, used blacklist mode) +# - allow (used in whitelist mode) +# - notify (notify admins with the 'worldguard.notify' permission) +# - log (log to console/file/database) +# - tell (tell a player that that's not allowed) +# - kick (kick player) +# - ban (ban player) +# +# Options: +# - ignore-groups (comma-separated list of groups to not affect) +# - ignore-perms (comma-separated list of permissions to not affect - make up +# your very own permissions!) +# - comment (message for yourself that is printed with 'log' and 'notify') +# - message (optional message to show the user instead; %s is the item name) +# +############################################################################### +# +# For more information, see: +# https://worldguard.enginehub.org/en/latest/blacklist/ +# +############################################################################### +# +# Some examples follow. +# REMEMBER: If a line has # in front, it will be ignored. +# + +# Deny lava buckets +#[lava_bucket] +#ignore-perms=my.own.madeup.permission +#ignore-groups=admins,mods +#on-use=deny,tell + +# Deny some ore +#[coal_ore,gold_ore,iron_ore] +#ignore-groups=admins,mods +#on-break=notify,deny,log diff --git a/plugins/WorldGuard/worlds/world_nether/blacklist.txt b/plugins/WorldGuard/worlds/world_nether/blacklist.txt index ae7f7da..98833e9 100644 --- a/plugins/WorldGuard/worlds/world_nether/blacklist.txt +++ b/plugins/WorldGuard/worlds/world_nether/blacklist.txt @@ -1,62 +1,62 @@ -# -# WorldGuard blacklist -# -# The blacklist lets you block actions, blocks, and items from being used. -# You choose a set of "items to affect" and a list of "actions to perform." -# -############################################################################### -# -# Example to block some ore mining and placement: -# [coal_ore,gold_ore,iron_ore] -# on-break=deny,log,kick -# on-place=deny,tell -# -# Events that you can detect: -# - on-break (when a block of this type is about to be broken) -# - on-destroy-with (the item/block held by the user while destroying) -# - on-place (a block is being placed) -# - on-use (an item like flint and steel or a bucket is being used) -# - on-interact (when a block in used (doors, chests, etc.)) -# - on-drop (an item is being dropped from the player's inventory) -# - on-acquire (an item enters a player's inventory via some method) -# - on-equip (an item is equipped to the player's armor slots) -# NOTE: on-equip is overprotective due to deficiencies in Bukkit API -# - on-dispense (a dispenser is about to dispense an item) -# -# Actions (for events): -# - deny (deny completely, used blacklist mode) -# - allow (used in whitelist mode) -# - notify (notify admins with the 'worldguard.notify' permission) -# - log (log to console/file/database) -# - tell (tell a player that that's not allowed) -# - kick (kick player) -# - ban (ban player) -# -# Options: -# - ignore-groups (comma-separated list of groups to not affect) -# - ignore-perms (comma-separated list of permissions to not affect - make up -# your very own permissions!) -# - comment (message for yourself that is printed with 'log' and 'notify') -# - message (optional message to show the user instead; %s is the item name) -# -############################################################################### -# -# For more information, see: -# https://worldguard.enginehub.org/en/latest/blacklist/ -# -############################################################################### -# -# Some examples follow. -# REMEMBER: If a line has # in front, it will be ignored. -# - -# Deny lava buckets -#[lava_bucket] -#ignore-perms=my.own.madeup.permission -#ignore-groups=admins,mods -#on-use=deny,tell - -# Deny some ore -#[coal_ore,gold_ore,iron_ore] -#ignore-groups=admins,mods -#on-break=notify,deny,log +# +# WorldGuard blacklist +# +# The blacklist lets you block actions, blocks, and items from being used. +# You choose a set of "items to affect" and a list of "actions to perform." +# +############################################################################### +# +# Example to block some ore mining and placement: +# [coal_ore,gold_ore,iron_ore] +# on-break=deny,log,kick +# on-place=deny,tell +# +# Events that you can detect: +# - on-break (when a block of this type is about to be broken) +# - on-destroy-with (the item/block held by the user while destroying) +# - on-place (a block is being placed) +# - on-use (an item like flint and steel or a bucket is being used) +# - on-interact (when a block in used (doors, chests, etc.)) +# - on-drop (an item is being dropped from the player's inventory) +# - on-acquire (an item enters a player's inventory via some method) +# - on-equip (an item is equipped to the player's armor slots) +# NOTE: on-equip is overprotective due to deficiencies in Bukkit API +# - on-dispense (a dispenser is about to dispense an item) +# +# Actions (for events): +# - deny (deny completely, used blacklist mode) +# - allow (used in whitelist mode) +# - notify (notify admins with the 'worldguard.notify' permission) +# - log (log to console/file/database) +# - tell (tell a player that that's not allowed) +# - kick (kick player) +# - ban (ban player) +# +# Options: +# - ignore-groups (comma-separated list of groups to not affect) +# - ignore-perms (comma-separated list of permissions to not affect - make up +# your very own permissions!) +# - comment (message for yourself that is printed with 'log' and 'notify') +# - message (optional message to show the user instead; %s is the item name) +# +############################################################################### +# +# For more information, see: +# https://worldguard.enginehub.org/en/latest/blacklist/ +# +############################################################################### +# +# Some examples follow. +# REMEMBER: If a line has # in front, it will be ignored. +# + +# Deny lava buckets +#[lava_bucket] +#ignore-perms=my.own.madeup.permission +#ignore-groups=admins,mods +#on-use=deny,tell + +# Deny some ore +#[coal_ore,gold_ore,iron_ore] +#ignore-groups=admins,mods +#on-break=notify,deny,log diff --git a/plugins/[1.16]Worldedit-7.2.0.jar b/plugins/Worldedit-7.2.3.jar similarity index 83% rename from plugins/[1.16]Worldedit-7.2.0.jar rename to plugins/Worldedit-7.2.3.jar index 029fee6..cd5f668 100644 Binary files a/plugins/[1.16]Worldedit-7.2.0.jar and b/plugins/Worldedit-7.2.3.jar differ diff --git a/plugins/[1.16]Worldguard-7.0.4.jar b/plugins/Worldguard-7.0.4.jar similarity index 100% rename from plugins/[1.16]Worldguard-7.0.4.jar rename to plugins/Worldguard-7.0.4.jar diff --git a/plugins/[1.16]EssentialsX-2.18.1.0.jar b/plugins/[1.16]EssentialsX-2.18.1.0.jar deleted file mode 100644 index 98a8a4f..0000000 Binary files a/plugins/[1.16]EssentialsX-2.18.1.0.jar and /dev/null differ diff --git a/plugins/[1.16]EssentialsXChat-2.18.1.0.jar b/plugins/[1.16]EssentialsXChat-2.18.1.0.jar deleted file mode 100644 index e057150..0000000 Binary files a/plugins/[1.16]EssentialsXChat-2.18.1.0.jar and /dev/null differ diff --git a/plugins/[1.16]EssentialsXSpawn-2.18.1.0.jar b/plugins/[1.16]EssentialsXSpawn-2.18.1.0.jar deleted file mode 100644 index d64ed5c..0000000 Binary files a/plugins/[1.16]EssentialsXSpawn-2.18.1.0.jar and /dev/null differ diff --git a/plugins/[1.16]HungerGames-4.15.0.jar b/plugins/[1.16]HungerGames-4.15.0.jar deleted file mode 100644 index f339552..0000000 Binary files a/plugins/[1.16]HungerGames-4.15.0.jar and /dev/null differ diff --git a/plugins/[1.16]ProtocolLib-4.6.0-Build-482.jar b/plugins/[1.16]ProtocolLib-4.6.0-Build-482.jar deleted file mode 100644 index a565909..0000000 Binary files a/plugins/[1.16]ProtocolLib-4.6.0-Build-482.jar and /dev/null differ