This commit is contained in:
mgr
2025-03-07 18:48:54 +01:00
commit 96a425477d
52 changed files with 3695 additions and 0 deletions

1
spigot/plugins/WorldGuard/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/cache

View File

@@ -0,0 +1,168 @@
regions:
uuid-migration:
perform-on-next-start: false
keep-names-that-lack-uuids: true
use-creature-spawn-event: true
disable-bypass-by-default: false
announce-bypass-status: false
use-paper-entity-origin: false
enable: true
invincibility-removes-mobs: false
cancel-chat-without-recipients: true
nether-portal-protection: true
fake-player-build-override: true
explosion-flags-block-entity-damage: true
high-frequency-flags: false
protect-against-liquid-flow: false
wand: minecraft:leather
max-claim-volume: 30000
claim-only-inside-existing-regions: false
set-parent-on-claim: ''
location-flags-only-inside-regions: false
max-region-count-per-player:
default: 7
auto-invincible: false
auto-invincible-group: false
auto-no-drowning-group: false
use-player-move-event: true
use-player-teleports: true
use-particle-effects: true
disable-permission-cache: false
security:
deop-everyone-on-join: false
block-in-game-op-command: false
host-keys-allow-forge-clients: false
host-keys: {}
summary-on-start: true
op-permissions: true
build-permission-nodes:
enable: false
deny-message: '&eSorry, but you are not permitted to do that here.'
event-handling:
block-entity-spawns-with-untraceable-cause: false
interaction-whitelist: []
emit-block-use-at-feet: []
ignore-hopper-item-move-events: false
break-hoppers-on-denied-move: true
protection:
item-durability: true
remove-infinite-stacks: false
disable-xp-orb-drops: false
use-max-priority-association: false
gameplay:
block-potions: []
block-potions-overly-reliably: false
disable-conduit-effects: false
default:
pumpkin-scuba: false
disable-health-regain: false
physics:
no-physics-gravel: false
no-physics-sand: false
vine-like-rope-ladders: false
allow-portal-anywhere: false
disable-water-damage-blocks: []
ignition:
block-tnt: false
block-tnt-block-damage: false
block-lighter: false
fire:
disable-lava-fire-spread: false
disable-all-fire-spread: false
disable-fire-spread-blocks: []
lava-spread-blocks: []
mobs:
block-creeper-explosions: false
block-creeper-block-damage: false
block-wither-explosions: false
block-wither-block-damage: false
block-wither-skull-explosions: false
block-wither-skull-block-damage: false
block-enderdragon-block-damage: false
block-enderdragon-portal-creation: false
block-fireball-explosions: false
block-fireball-block-damage: false
anti-wolf-dumbness: false
allow-tamed-spawns: true
disable-enderman-griefing: false
disable-snowman-trails: false
block-painting-destroy: false
block-item-frame-destroy: false
block-armor-stand-destroy: false
block-plugin-spawning: true
block-above-ground-slimes: false
block-other-explosions: false
block-zombie-door-destruction: false
block-vehicle-entry: false
block-creature-spawn: []
block-windcharge-explosions: false
player-damage:
disable-fall-damage: false
disable-lava-damage: false
disable-fire-damage: false
disable-lightning-damage: false
disable-drowning-damage: false
disable-suffocation-damage: false
disable-contact-damage: false
teleport-on-suffocation: false
disable-void-damage: false
teleport-on-void-falling: false
reset-fall-on-void-teleport: false
disable-explosion-damage: false
disable-mob-damage: false
disable-death-messages: false
crops:
disable-creature-trampling: false
disable-player-trampling: false
turtle-egg:
disable-creature-trampling: false
disable-player-trampling: false
weather:
prevent-lightning-strike-blocks: []
disable-lightning-strike-fire: false
disable-thunderstorm: false
disable-weather: false
disable-pig-zombification: false
disable-villager-witchification: false
disable-powered-creepers: false
always-raining: false
always-thundering: false
dynamics:
disable-mushroom-spread: false
disable-ice-melting: false
disable-snow-melting: false
disable-snow-formation: false
disable-ice-formation: false
disable-leaf-decay: false
disable-grass-growth: false
disable-mycelium-spread: false
disable-vine-growth: false
disable-rock-growth: false
disable-sculk-growth: false
disable-crop-growth: false
disable-soil-dehydration: false
disable-coral-block-fade: false
snow-fall-blocks: []
disable-copper-block-fade: false
disable-soil-moisture-change: false
blacklist:
use-as-whitelist: false
logging:
console:
enable: true
database:
enable: false
dsn: jdbc:mysql://localhost:3306/minecraft
user: root
pass: ''
table: blacklist_events
file:
enable: false
path: worldguard/logs/%Y-%m-%d.log
open-files: 10
custom-metrics-charts: true
extra-timings:
session-handlers: true
sniffer-egg:
disable-creature-trampling: false
disable-player-trampling: false

View File

@@ -0,0 +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

View File

@@ -0,0 +1,13 @@
#
# WorldGuard's world configuration file
#
# This is a world configuration file. Anything placed into here will only
# affect this world. If you don't put anything in this file, then the
# settings will be inherited from the main configuration file.
#
# If you see {} below, that means that there are NO entries in this file.
# Remove the {} and add your own entries.
#
regions:
titles-always-use-default-times: true

View File

@@ -0,0 +1,200 @@
#
# WorldGuard regions file
#
# WARNING: THIS FILE IS AUTOMATICALLY GENERATED. If you modify this file by
# hand, be aware that A SINGLE MISTYPED CHARACTER CAN CORRUPT THE FILE. If
# WorldGuard is unable to parse the file, your regions will FAIL TO LOAD and
# the contents of this file will reset. Please use a YAML validator such as
# http://yaml-online-parser.appspot.com (for smaller files).
#
# REMEMBER TO KEEP PERIODICAL BACKUPS.
#
regions:
busfahrerlukas_plot_2:
min: {x: -1116, y: -64, z: 1385}
max: {x: -1090, y: 319, z: 1410}
members: {}
flags: {}
owners:
unique-ids: [5fdf7eee-58b0-4fe3-9647-7236017cbedf]
type: cuboid
priority: 0
mcraftdan_plot_5:
min: {x: -35, y: -64, z: 569}
max: {x: -34, y: 319, z: 570}
members: {}
flags: {chest-access: allow}
owners:
unique-ids: [d51c9805-6298-4f93-9386-dfacad2eae28]
type: cuboid
priority: 10
mcraftdan_plot_6:
min: {x: -1040, y: -64, z: 2580}
max: {x: -1029, y: 319, z: 2589}
members: {}
flags: {}
owners:
unique-ids: [d51c9805-6298-4f93-9386-dfacad2eae28]
type: cuboid
priority: 0
weiixer_plot_1:
min: {x: 672, y: -64, z: 516}
max: {x: 689, y: 319, z: 537}
members: {}
flags: {}
owners:
unique-ids: [d6381dc3-59c9-4c0e-97cd-6e9a682a5d51]
type: cuboid
priority: 0
mcraftdan_plot_1:
min: {x: 736, y: -64, z: 800}
max: {x: 767, y: 319, z: 831}
members: {}
flags: {}
owners:
unique-ids: [d51c9805-6298-4f93-9386-dfacad2eae28]
type: cuboid
priority: 0
mcraftdan_plot_2:
min: {x: -96, y: -64, z: 528}
max: {x: 64, y: 319, z: 704}
members: {}
flags: {tnt: allow}
owners:
unique-ids: [d51c9805-6298-4f93-9386-dfacad2eae28]
type: cuboid
priority: 0
mcraftdan_plot_4:
min: {x: -1056, y: -64, z: 2560}
max: {x: -976, y: 319, z: 2623}
members: {}
flags: {}
owners:
unique-ids: [d51c9805-6298-4f93-9386-dfacad2eae28]
type: cuboid
priority: 0
lukas_plot_1:
min: {x: -746, y: -64, z: 1606}
max: {x: -631, y: 319, z: 1684}
members:
unique-ids: [3cb054a7-828c-4a48-9bb4-15e9b4f29558, c3371e36-f288-4eae-b9d5-b90e47258444]
flags: {}
owners:
unique-ids: [5fdf7eee-58b0-4fe3-9647-7236017cbedf]
type: cuboid
priority: 0
_spawn_portal:
min: {x: 390, y: 62, z: 456}
max: {x: 403, y: 69, z: 468}
members: {}
flags: {}
owners: {}
type: cuboid
priority: 0
voxain_plot_1:
min: {x: -7, y: -64, z: 344}
max: {x: 57, y: 319, z: 435}
members:
unique-ids: [ce17302f-a5b4-4b03-a3de-cdb9d4ca0409, d51c9805-6298-4f93-9386-dfacad2eae28]
flags: {}
owners:
unique-ids: [78fffe82-e08c-49e2-86c7-f0257708391e]
type: cuboid
priority: 0
zekro_plot_1:
min: {x: -16, y: -64, z: 750}
max: {x: 180, y: 319, z: 1020}
members:
unique-ids: [3cb054a7-828c-4a48-9bb4-15e9b4f29558, da3f4fb9-7486-4a64-b939-1c4e263c3b7b,
b7d57e48-f73c-46e2-9761-3c471327fb31, 5fdf7eee-58b0-4fe3-9647-7236017cbedf,
b6708a23-96b5-480b-90f9-c242bba54ac5, d6381dc3-59c9-4c0e-97cd-6e9a682a5d51,
715a6b4e-ad28-4bd2-a04e-8e900c4d7106]
flags: {}
owners:
unique-ids: [c3371e36-f288-4eae-b9d5-b90e47258444]
type: cuboid
priority: 0
_spawn_temple:
min: {x: 383, y: 58, z: 501}
max: {x: 395, y: 71, z: 513}
members: {}
flags: {}
owners: {}
type: cuboid
priority: 0
sinrex_plot_1:
min: {x: 3840, y: -64, z: -1825}
max: {x: 3940, y: 319, z: -1725}
members: {}
flags: {}
owners:
unique-ids: [5f35da29-c6a4-4f66-a429-37f87b17cdd5]
type: cuboid
priority: 0
skillkilller_plot_1:
min: {x: 397, y: -64, z: 146}
max: {x: 538, y: 319, z: 269}
members: {}
flags: {}
owners:
unique-ids: [da3f4fb9-7486-4a64-b939-1c4e263c3b7b]
type: cuboid
priority: 0
luxtracon_plot_1:
min: {x: -89, y: -64, z: 1037}
max: {x: 115, y: 319, z: 1241}
members:
unique-ids: [b6708a23-96b5-480b-90f9-c242bba54ac5, c3371e36-f288-4eae-b9d5-b90e47258444]
flags: {}
owners:
unique-ids: [3cb054a7-828c-4a48-9bb4-15e9b4f29558]
type: cuboid
priority: 0
zack_plot_1:
min: {x: 3356, y: -64, z: -2587}
max: {x: 3599, y: 319, z: -2286}
members:
unique-ids: [5f35da29-c6a4-4f66-a429-37f87b17cdd5, d6381dc3-59c9-4c0e-97cd-6e9a682a5d51]
flags: {}
owners:
unique-ids: [b7d57e48-f73c-46e2-9761-3c471327fb31]
type: cuboid
priority: 0
zekrotja_plot_4:
min: {x: 135, y: -64, z: 1560}
max: {x: 172, y: 319, z: 1600}
members:
unique-ids: [3cb054a7-828c-4a48-9bb4-15e9b4f29558]
flags: {sleep: allow, item-drop: allow, exp-drops: allow, use: allow, mob-damage: allow,
item-pickup: allow, damage-animals: allow, interact: allow, chest-access: allow,
use-anvil: allow}
owners:
unique-ids: [c3371e36-f288-4eae-b9d5-b90e47258444]
type: cuboid
priority: 0
mediaahh_plot_1:
min: {x: -480, y: -64, z: -80}
max: {x: -130, y: 319, z: 380}
members:
unique-ids: [d6381dc3-59c9-4c0e-97cd-6e9a682a5d51]
flags: {}
owners:
unique-ids: [74e73b86-723c-404b-898f-0d1952c8e08b]
type: cuboid
priority: 0
zack_plot_2:
min: {x: 4230, y: -64, z: -2114}
max: {x: 4341, y: 319, z: -1971}
members:
unique-ids: [5f35da29-c6a4-4f66-a429-37f87b17cdd5]
flags: {}
owners:
unique-ids: [b7d57e48-f73c-46e2-9761-3c471327fb31]
type: cuboid
priority: 0
__global__:
members: {}
flags: {notify-enter: false, enderman-grief: deny, notify-leave: false}
owners: {}
type: global
priority: 0

View File

@@ -0,0 +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

View File

@@ -0,0 +1,13 @@
#
# WorldGuard's world configuration file
#
# This is a world configuration file. Anything placed into here will only
# affect this world. If you don't put anything in this file, then the
# settings will be inherited from the main configuration file.
#
# If you see {} below, that means that there are NO entries in this file.
# Remove the {} and add your own entries.
#
regions:
titles-always-use-default-times: true

View File

@@ -0,0 +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

View File

@@ -0,0 +1,13 @@
#
# WorldGuard's world configuration file
#
# This is a world configuration file. Anything placed into here will only
# affect this world. If you don't put anything in this file, then the
# settings will be inherited from the main configuration file.
#
# If you see {} below, that means that there are NO entries in this file.
# Remove the {} and add your own entries.
#
regions:
titles-always-use-default-times: true