release-1.0.0 #39
@ -4,9 +4,11 @@
|
|||||||
*/versions
|
*/versions
|
||||||
*/plugins/.paper-remapped
|
*/plugins/.paper-remapped
|
||||||
|
|
||||||
*/world
|
src/world/advancements
|
||||||
*/world_nether
|
src/world/stats
|
||||||
*/world_the_end
|
src/world/data
|
||||||
|
src/world/playerdata
|
||||||
|
src/world/level.dat_old
|
||||||
|
|
||||||
*/.console_history
|
*/.console_history
|
||||||
|
|
||||||
@ -30,16 +32,10 @@ src/plugins/CustomizablePlayerModels
|
|||||||
src/plugins/CarbonChat/users
|
src/plugins/CarbonChat/users
|
||||||
src/plugins/CarbonChat/libraries
|
src/plugins/CarbonChat/libraries
|
||||||
|
|
||||||
src/plugins/FancyHolograms/holograms.yml
|
|
||||||
src/plugins/FancyHolograms/logs
|
src/plugins/FancyHolograms/logs
|
||||||
|
|
||||||
src/plugins/FancyNpcs/npcs.yml
|
|
||||||
src/plugins/FancyNpcs/logs
|
src/plugins/FancyNpcs/logs
|
||||||
src/plugins/FancyNpcs/skins
|
|
||||||
src/plugins/FancyNpcs/.data
|
|
||||||
|
|
||||||
src/plugins/ImageFrame/data
|
|
||||||
src/plugins/ImageFrame/player
|
|
||||||
src/plugins/ImageFrame/upload
|
src/plugins/ImageFrame/upload
|
||||||
src/map-color-cache.dat
|
src/map-color-cache.dat
|
||||||
|
|
||||||
|
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -1 +1,3 @@
|
|||||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.mca filter=lfs diff=lfs merge=lfs -text
|
||||||
|
src/plugins/ImageFrame/data/* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
14
.gitignore
vendored
14
.gitignore
vendored
@ -4,9 +4,11 @@
|
|||||||
*/versions
|
*/versions
|
||||||
*/plugins/.paper-remapped
|
*/plugins/.paper-remapped
|
||||||
|
|
||||||
*/world
|
src/world/advancements
|
||||||
*/world_nether
|
src/world/stats
|
||||||
*/world_the_end
|
src/world/data
|
||||||
|
src/world/playerdata
|
||||||
|
src/world/level.dat_old
|
||||||
|
|
||||||
*/.console_history
|
*/.console_history
|
||||||
|
|
||||||
@ -30,16 +32,10 @@ src/plugins/CustomizablePlayerModels
|
|||||||
src/plugins/CarbonChat/users
|
src/plugins/CarbonChat/users
|
||||||
src/plugins/CarbonChat/libraries
|
src/plugins/CarbonChat/libraries
|
||||||
|
|
||||||
src/plugins/FancyHolograms/holograms.yml
|
|
||||||
src/plugins/FancyHolograms/logs
|
src/plugins/FancyHolograms/logs
|
||||||
|
|
||||||
src/plugins/FancyNpcs/npcs.yml
|
|
||||||
src/plugins/FancyNpcs/logs
|
src/plugins/FancyNpcs/logs
|
||||||
src/plugins/FancyNpcs/skins
|
|
||||||
src/plugins/FancyNpcs/.data
|
|
||||||
|
|
||||||
src/plugins/ImageFrame/data
|
|
||||||
src/plugins/ImageFrame/players
|
|
||||||
src/plugins/ImageFrame/upload
|
src/plugins/ImageFrame/upload
|
||||||
src/map-color-cache.dat
|
src/map-color-cache.dat
|
||||||
|
|
||||||
|
31
Dockerfile
31
Dockerfile
@ -22,12 +22,6 @@ RUN touch ${DATA_PATH}/usercache.json && \
|
|||||||
ln -sf ${DATA_PATH}/usercache.json ${CONFIG_PATH}
|
ln -sf ${DATA_PATH}/usercache.json ${CONFIG_PATH}
|
||||||
RUN touch ${DATA_PATH}/whitelist.json && \
|
RUN touch ${DATA_PATH}/whitelist.json && \
|
||||||
ln -sf ${DATA_PATH}/whitelist.json ${CONFIG_PATH}
|
ln -sf ${DATA_PATH}/whitelist.json ${CONFIG_PATH}
|
||||||
RUN mkdir ${DATA_PATH}/world && \
|
|
||||||
ln -sf ${DATA_PATH}/world ${CONFIG_PATH}
|
|
||||||
RUN mkdir ${DATA_PATH}/world_nether && \
|
|
||||||
ln -sf ${DATA_PATH}/world_nether ${CONFIG_PATH}
|
|
||||||
RUN mkdir ${DATA_PATH}/world_the_end && \
|
|
||||||
ln -sf ${DATA_PATH}/world_the_end ${CONFIG_PATH}
|
|
||||||
|
|
||||||
# Add symlinks to Plasmo Voice files
|
# Add symlinks to Plasmo Voice files
|
||||||
RUN touch ${DATA_PATH}/pv-voice_mutes.json && \
|
RUN touch ${DATA_PATH}/pv-voice_mutes.json && \
|
||||||
@ -50,34 +44,11 @@ RUN mkdir -p ${DATA_PATH}/CustomizablePlayerModels && \
|
|||||||
RUN mkdir -p ${DATA_PATH}/FancyHolograms/logs && \
|
RUN mkdir -p ${DATA_PATH}/FancyHolograms/logs && \
|
||||||
ln -sf ${DATA_PATH}/FancyHolograms/logs/ \
|
ln -sf ${DATA_PATH}/FancyHolograms/logs/ \
|
||||||
${CONFIG_PATH}/plugins/FancyHolograms/logs && \
|
${CONFIG_PATH}/plugins/FancyHolograms/logs && \
|
||||||
touch ${DATA_PATH}/FancyHolograms/holograms.yml && \
|
|
||||||
ln -sf ${DATA_PATH}/FancyHolograms/holograms.yml \
|
|
||||||
${CONFIG_PATH}/plugins/FancyHolograms/holograms.yml
|
|
||||||
|
|
||||||
# Add symlinks to FancyNpcs files
|
# Add symlinks to FancyNpcs files
|
||||||
RUN mkdir -p ${DATA_PATH}/FancyNpcs/.data && \
|
RUN mkdir -p ${DATA_PATH}/FancyNpcs/logs && \
|
||||||
ln -sf ${DATA_PATH}/FancyNpcs/.data/ \
|
|
||||||
${CONFIG_PATH}/plugins/FancyNpcs/.data && \
|
|
||||||
mkdir -p ${DATA_PATH}/FancyNpcs/logs && \
|
|
||||||
ln -sf ${DATA_PATH}/FancyNpcs/logs/ \
|
ln -sf ${DATA_PATH}/FancyNpcs/logs/ \
|
||||||
${CONFIG_PATH}/plugins/FancyNpcs/logs && \
|
${CONFIG_PATH}/plugins/FancyNpcs/logs && \
|
||||||
mkdir -p ${DATA_PATH}/FancyNpcs/skins && \
|
|
||||||
ln -sf ${DATA_PATH}/FancyNpcs/skins/ \
|
|
||||||
${CONFIG_PATH}/plugins/FancyNpcs/skins && \
|
|
||||||
touch ${DATA_PATH}/FancyNpcs/npcs.yml && \
|
|
||||||
ln -sf ${DATA_PATH}/FancyNpcs/npcs.yml \
|
|
||||||
${CONFIG_PATH}/plugins/FancyNpcs/npcs.yml
|
|
||||||
|
|
||||||
# Add symlinks to ImageFrame files
|
|
||||||
RUN mkdir -p ${DATA_PATH}/ImageFrame/data && \
|
|
||||||
ln -sf ${DATA_PATH}/ImageFrame/data/ \
|
|
||||||
${CONFIG_PATH}/plugins/ImageFrame/data && \
|
|
||||||
mkdir -p ${DATA_PATH}/ImageFrame/players && \
|
|
||||||
ln -sf ${DATA_PATH}/ImageFrame/players/ \
|
|
||||||
${CONFIG_PATH}/plugins/ImageFrame/players && \
|
|
||||||
mkdir -p ${DATA_PATH}/ImageFrame/upload && \
|
|
||||||
ln -sf ${DATA_PATH}/ImageFrame/upload/ \
|
|
||||||
${CONFIG_PATH}/plugins/ImageFrame/upload
|
|
||||||
|
|
||||||
# Add symlinks to DiscordSRV files
|
# Add symlinks to DiscordSRV files
|
||||||
RUN mkdir -p ${DATA_PATH}/DiscordSRV && \
|
RUN mkdir -p ${DATA_PATH}/DiscordSRV && \
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
settings:
|
settings:
|
||||||
allow-end: true
|
allow-end: false
|
||||||
warn-on-overload: true
|
warn-on-overload: true
|
||||||
permissions-file: permissions.yml
|
permissions-file: permissions.yml
|
||||||
update-folder: update
|
update-folder: update
|
||||||
|
89
src/plugins/FancyHolograms/holograms.yml
Normal file
89
src/plugins/FancyHolograms/holograms.yml
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
version: 2 # DO NOT CHANGE
|
||||||
|
holograms:
|
||||||
|
teleport_survival:
|
||||||
|
type: TEXT
|
||||||
|
location:
|
||||||
|
world: world
|
||||||
|
x: 255.5
|
||||||
|
y: 3.057499885559082
|
||||||
|
z: 262.5
|
||||||
|
yaw: -180.0
|
||||||
|
pitch: 0.0
|
||||||
|
visibility_distance: -1
|
||||||
|
visibility: ALL
|
||||||
|
persistent: true
|
||||||
|
scale_x: 1.0
|
||||||
|
scale_y: 1.0
|
||||||
|
scale_z: 1.0
|
||||||
|
translation_x: 0.0
|
||||||
|
translation_y: 0.0
|
||||||
|
translation_z: 0.0
|
||||||
|
shadow_radius: 0.0
|
||||||
|
shadow_strength: 1.0
|
||||||
|
text:
|
||||||
|
- <color:#DCC678><bold>Bebrashield SMP</bold></color>
|
||||||
|
- <gray>Ванильный полуприватный SMP сервер.
|
||||||
|
- <gray>Без приватов, гриферства и донатов.
|
||||||
|
- <gray>Для игры требуется привязка <color:#6558F4>Discord</color>.
|
||||||
|
- <gray>Кликните, чтобы войти.
|
||||||
|
text_shadow: false
|
||||||
|
see_through: false
|
||||||
|
text_alignment: center
|
||||||
|
update_text_interval: -1
|
||||||
|
linkedNpc: teleport_survival
|
||||||
|
link_bebrashield_discord:
|
||||||
|
type: TEXT
|
||||||
|
location:
|
||||||
|
world: world
|
||||||
|
x: 261.5
|
||||||
|
y: 2.25
|
||||||
|
z: 261.5
|
||||||
|
yaw: 135.0
|
||||||
|
pitch: 0.0
|
||||||
|
visibility_distance: 32
|
||||||
|
visibility: ALL
|
||||||
|
persistent: true
|
||||||
|
scale_x: 1.0
|
||||||
|
scale_y: 1.0
|
||||||
|
scale_z: 1.0
|
||||||
|
translation_x: 0.0
|
||||||
|
translation_y: 0.0
|
||||||
|
translation_z: 0.0
|
||||||
|
shadow_radius: 0.0
|
||||||
|
shadow_strength: 1.0
|
||||||
|
billboard: fixed
|
||||||
|
text:
|
||||||
|
- <color:#6558F4>discord.gg/xsyy7d8RfG</color>
|
||||||
|
- <gray>Клик</gray>
|
||||||
|
text_shadow: false
|
||||||
|
see_through: false
|
||||||
|
text_alignment: center
|
||||||
|
update_text_interval: -1
|
||||||
|
link_bebrashield_site:
|
||||||
|
type: TEXT
|
||||||
|
location:
|
||||||
|
world: world
|
||||||
|
x: 249.5
|
||||||
|
y: 2.25
|
||||||
|
z: 261.5
|
||||||
|
yaw: -135.0
|
||||||
|
pitch: 0.0
|
||||||
|
visibility_distance: 32
|
||||||
|
visibility: ALL
|
||||||
|
persistent: true
|
||||||
|
scale_x: 1.0
|
||||||
|
scale_y: 1.0
|
||||||
|
scale_z: 1.0
|
||||||
|
translation_x: 0.0
|
||||||
|
translation_y: 0.0
|
||||||
|
translation_z: 0.0
|
||||||
|
shadow_radius: 0.0
|
||||||
|
shadow_strength: 1.0
|
||||||
|
billboard: fixed
|
||||||
|
text:
|
||||||
|
- <color:#4EA38F>bebrashield.net</color>
|
||||||
|
- <gray>Клик</gray>
|
||||||
|
text_shadow: false
|
||||||
|
see_through: false
|
||||||
|
text_alignment: center
|
||||||
|
update_text_interval: -1
|
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"skinData": {
|
||||||
|
"identifier": "https://www.minecraftskins.com/uploads/skins/2024/01/28/plastic-steave-22292511.png",
|
||||||
|
"variant": "AUTO",
|
||||||
|
"textureValue": "ewogICJ0aW1lc3RhbXAiIDogMTYxOTYwMzgwNDUzMSwKICAicHJvZmlsZUlkIiA6ICI5MWZlMTk2ODdjOTA0NjU2YWExZmMwNTk4NmRkM2ZlNyIsCiAgInByb2ZpbGVOYW1lIiA6ICJoaGphYnJpcyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9lNjM1OWRhZTI2MWY3ZDE4NWM1ZjJlODY4NWI3NzMzOGYzNTA3NzA0NDI1OWY1NDVmYjRjNDdlZWJjYmU1ODEiCiAgICB9CiAgfQp9",
|
||||||
|
"textureSignature": "gGS8/1ncRjGJQQjR2gkIRZ0o8UZQfcDTB8syPdBw92+fb1Qr5HEpeprrqgsni4UDQaZabXiVZ3wwSk2KPjOXeQlQxrA+hffGNQPCFLokP/JNIG4cv3MhAycGiqdvXmDgPf1JmPhEe6yao6n20QrMuiDrXgCFRBebIczaCZ+4Ep2vihgpmjvn5CQev11ffKLdLX342a5Ke+Fzxmish8n9NSOm9nIzT6QQaZinqymPj55FlINm4bVd41b0L0En06TCPzMsD+rdrtpztb4l6wRF9Yk6ZVxZxZbrjeRy96g19eej6LC/jQXqFE3i1tui36fd1pkUkpY2OUhMdRwQevm2rB3t4C1ZZzvYSDYILOxxqMgsmB6SQ1HQkCBLMbz4nI0YNczCEw5cPDcJASJw6zUUBVu3+S/FOWywdKmsXeiEbkhC4fZtleqeR5VVmd1PzO/ds0Z9coHDbufxU3Ugd/VLheGqtkTCBaA9jIYJjB12Stml7GNV8KwgnDgHTZjcGY2rGx2l5LIglHfioSXrWnKFsDKAo3uDfZPkDEK+c3JbJ8ZLqkOSXfB/8Sq74e2EUAYlSg6xQVUFiUGX1oXiYBi+9WVlUAdy7dYV/ZM9RSvHDcO43dT4nY1Qoav/sv+MIoZc1T4431wg7MCaymn2ubG8RJ0GYYhHYK0psObCAcgD5L0="
|
||||||
|
},
|
||||||
|
"lastUpdated": 1753534291786,
|
||||||
|
"timeToLive": 604800000
|
||||||
|
}
|
108
src/plugins/FancyNpcs/npcs.yml
Normal file
108
src/plugins/FancyNpcs/npcs.yml
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
npcs:
|
||||||
|
f1f898d7-f4f1-4e23-98d4-7ee00c038677:
|
||||||
|
name: teleport_survival
|
||||||
|
creator: 3ce31233-217d-3258-8b5e-1f458c4f8e9d
|
||||||
|
displayName: <empty>
|
||||||
|
type: PLAYER
|
||||||
|
location:
|
||||||
|
world: world
|
||||||
|
x: 255.5
|
||||||
|
y: 0.9375
|
||||||
|
z: 262.5
|
||||||
|
yaw: -180.0
|
||||||
|
pitch: 0.0
|
||||||
|
showInTab: false
|
||||||
|
spawnEntity: true
|
||||||
|
collidable: true
|
||||||
|
glowing: false
|
||||||
|
glowingColor: white
|
||||||
|
turnToPlayer: true
|
||||||
|
turnToPlayerDistance: -1
|
||||||
|
interactionCooldown: 0.0
|
||||||
|
scale: 1.0
|
||||||
|
visibility_distance: -1
|
||||||
|
skin:
|
||||||
|
identifier: https://www.minecraftskins.com/uploads/skins/2024/01/28/plastic-steave-22292511.png
|
||||||
|
variant: AUTO
|
||||||
|
mirrorSkin: false
|
||||||
|
actions:
|
||||||
|
ANY_CLICK:
|
||||||
|
'1':
|
||||||
|
action: play_sound
|
||||||
|
value: minecraft:block.portal.travel
|
||||||
|
'2':
|
||||||
|
action: wait
|
||||||
|
value: '3'
|
||||||
|
'3':
|
||||||
|
action: send_to_server
|
||||||
|
value: survival
|
||||||
|
fd03518b-3465-4a90-9982-5d8a62d8f3e1:
|
||||||
|
name: link_bebrashield_discord
|
||||||
|
creator: 3ce31233-217d-3258-8b5e-1f458c4f8e9d
|
||||||
|
displayName: <empty>
|
||||||
|
type: INTERACTION
|
||||||
|
location:
|
||||||
|
world: world
|
||||||
|
x: 261.5
|
||||||
|
y: 2.0
|
||||||
|
z: 261.5
|
||||||
|
yaw: -35.550262
|
||||||
|
pitch: 11.700032
|
||||||
|
showInTab: false
|
||||||
|
spawnEntity: true
|
||||||
|
collidable: true
|
||||||
|
glowing: false
|
||||||
|
glowingColor: white
|
||||||
|
turnToPlayer: false
|
||||||
|
turnToPlayerDistance: -1
|
||||||
|
interactionCooldown: 0.0
|
||||||
|
scale: 1.0
|
||||||
|
visibility_distance: -1
|
||||||
|
skin:
|
||||||
|
mirrorSkin: false
|
||||||
|
attributes:
|
||||||
|
width: '1.5'
|
||||||
|
actions:
|
||||||
|
ANY_CLICK:
|
||||||
|
'1':
|
||||||
|
action: play_sound
|
||||||
|
value: minecraft:entity.experience_orb.pickup
|
||||||
|
'2':
|
||||||
|
action: message
|
||||||
|
value: <click:OPEN_URL:https://discord.gg/xsyy7d8RfG><color:#6558F4><bold>Discord:</bold></color>
|
||||||
|
<grey>https://discord.gg/xsyy7d8RfG</grey></click>
|
||||||
|
26dee80c-9004-47c6-bbc0-343fe2f2fba7:
|
||||||
|
name: link_bebrashield_site
|
||||||
|
creator: 3ce31233-217d-3258-8b5e-1f458c4f8e9d
|
||||||
|
displayName: <empty>
|
||||||
|
type: INTERACTION
|
||||||
|
location:
|
||||||
|
world: world
|
||||||
|
x: 249.5
|
||||||
|
y: 2.0
|
||||||
|
z: 261.5
|
||||||
|
yaw: -121.19934
|
||||||
|
pitch: 76.49999
|
||||||
|
showInTab: false
|
||||||
|
spawnEntity: true
|
||||||
|
collidable: true
|
||||||
|
glowing: false
|
||||||
|
glowingColor: white
|
||||||
|
turnToPlayer: false
|
||||||
|
turnToPlayerDistance: -1
|
||||||
|
interactionCooldown: 0.0
|
||||||
|
scale: 1.0
|
||||||
|
visibility_distance: -1
|
||||||
|
skin:
|
||||||
|
mirrorSkin: false
|
||||||
|
attributes:
|
||||||
|
width: '1.5'
|
||||||
|
actions:
|
||||||
|
ANY_CLICK:
|
||||||
|
'1':
|
||||||
|
action: play_sound
|
||||||
|
value: minecraft:entity.experience_orb.pickup
|
||||||
|
'2':
|
||||||
|
action: message
|
||||||
|
value: <click:OPEN_URL:https://bebrashield.net><color:#4EA38F><bold>Сайт:</bold></color>
|
||||||
|
<grey>https://bebrashield.net</grey></click>
|
BIN
src/plugins/ImageFrame/data/deletedMaps.bin
(Stored with Git LFS)
Normal file
BIN
src/plugins/ImageFrame/data/deletedMaps.bin
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"uuid": "3ce31233-217d-3258-8b5e-1f458c4f8e9d",
|
||||||
|
"preferences": {
|
||||||
|
"viewAnimatedMaps": "unset"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
spawn:
|
||||||
|
world: world
|
||||||
|
x: 255.5
|
||||||
|
y: 1.0
|
||||||
|
z: 258.5
|
||||||
|
yaw: 0.0
|
||||||
|
pitch: 0.0
|
BIN
src/plugins/Spawn-2.4.1.jar
(Stored with Git LFS)
Normal file
BIN
src/plugins/Spawn-2.4.1.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
98
src/plugins/Spawn/config.yml
Normal file
98
src/plugins/Spawn/config.yml
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
# ____ _ _ _ _
|
||||||
|
# / ___| _ __ __ ___ ___ __ | |__ _ _ _ __ ___ ___| | ____ _ _ _(_) ___| |_
|
||||||
|
# \___ \| '_ \ / _` \ \ /\ / / '_ \ | '_ \| | | | | '__/ _ \ / __| |/ / _` | | | | |/ _ \ __|
|
||||||
|
# ___) | |_) | (_| |\ V V /| | | | | |_) | |_| | | | | (_) | (__| < (_| | |_| | | __/ |_
|
||||||
|
# |____/| .__/ \__,_| \_/\_/ |_| |_| |_.__/ \__, | |_| \___/ \___|_|\_\__, |\__,_|_|\___|\__|
|
||||||
|
# |_| |___/ |_|
|
||||||
|
# Wiki - https://github.com/rockquiet/Spawn/wiki
|
||||||
|
|
||||||
|
plugin:
|
||||||
|
# if the plugin should search for updates on server start
|
||||||
|
# this will only send a message to the console, not to an admin joining the server
|
||||||
|
update-checks: true
|
||||||
|
# a list of worlds where the plugin should or should not work
|
||||||
|
# DISABLED: world-list is not used
|
||||||
|
# BLACKLIST: the plugin will not work in worlds listed below
|
||||||
|
# WHITELIST: the plugin will only work in worlds listed below
|
||||||
|
list-type: disabled
|
||||||
|
world-list: []
|
||||||
|
# restrict the usage to specific game modes (only for players teleporting themselves)
|
||||||
|
gamemode-restricted: false
|
||||||
|
# possible values: SURVIVAL, ADVENTURE, CREATIVE, SPECTATOR
|
||||||
|
gamemode-list: []
|
||||||
|
|
||||||
|
# use the player's current head rotation instead of the defined one on teleport
|
||||||
|
use-player-head-rotation:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
# toggle if the player takes fall damage on teleport
|
||||||
|
fall-damage:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
# teleport the player to spawn on join
|
||||||
|
teleport-on-join:
|
||||||
|
enabled: true
|
||||||
|
# teleport the player ONLY on first join
|
||||||
|
only-first-join: false
|
||||||
|
|
||||||
|
# cooldown for /spawn command
|
||||||
|
teleport-cooldown:
|
||||||
|
enabled: false
|
||||||
|
# how long in SECONDS the player has to wait before teleporting to spawn again
|
||||||
|
seconds: 10
|
||||||
|
|
||||||
|
# delay until teleport for /spawn command
|
||||||
|
teleport-delay:
|
||||||
|
enabled: false
|
||||||
|
# the delay in SECONDS until the player gets teleported to spawn
|
||||||
|
seconds: 3
|
||||||
|
# toggle if the teleport should be canceled if the player moves
|
||||||
|
cancel-on-move: true
|
||||||
|
# toggle if the player should get the blindness effect during delay
|
||||||
|
# the effect will not work properly if a short delay time is used
|
||||||
|
blindness: false
|
||||||
|
|
||||||
|
# toggle if the player should be teleported to spawn if they fall into the void
|
||||||
|
teleport-out-of-void:
|
||||||
|
enabled: false
|
||||||
|
# the height at which the player gets teleported out of the void to spawn
|
||||||
|
# Minecraft playable Altitude: -64 -> 320 [integer]
|
||||||
|
check-height: -64
|
||||||
|
|
||||||
|
# toggle if the player should be teleported to spawn if they die
|
||||||
|
teleport-on-respawn:
|
||||||
|
enabled: true
|
||||||
|
# toggle if the bed spawn-point should be ignored
|
||||||
|
ignore-bed-spawn: true
|
||||||
|
# toggle if the respawn anchor spawn-point should be ignored
|
||||||
|
ignore-anchor-spawn: true
|
||||||
|
|
||||||
|
# toggle if the player should be teleported to spawn if they enter a world other than the spawn world
|
||||||
|
teleport-on-world-change:
|
||||||
|
enabled: false
|
||||||
|
# toggle if the world should also be checked on join
|
||||||
|
# this can interfere with teleport on join
|
||||||
|
check-on-join: false
|
||||||
|
|
||||||
|
# spawns particles on teleport
|
||||||
|
particles:
|
||||||
|
enabled: false
|
||||||
|
# all particles: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Particle.html
|
||||||
|
# use these for 1.8: https://hub.spigotmc.org/nexus/service/local/repositories/snapshots/archive/org/spigotmc/spigot-api/1.8.8-R0.1-SNAPSHOT/spigot-api-1.8.8-R0.1-20160221.082514-43-javadoc.jar/!/org/bukkit/Effect.html
|
||||||
|
particle: PORTAL
|
||||||
|
# the number of particles which get used
|
||||||
|
amount: 40
|
||||||
|
|
||||||
|
# play a sound on teleport
|
||||||
|
sounds:
|
||||||
|
enabled: false
|
||||||
|
# all sounds: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Sound.html
|
||||||
|
# sounds for Minecraft 1.8 - 1.20: https://docs.andre601.ch/Spigot-Sounds/sounds/
|
||||||
|
sound: ENTITY_ENDERMAN_TELEPORT
|
||||||
|
# the volume of the sound
|
||||||
|
volume: 1.0
|
||||||
|
# the pitch of the sound
|
||||||
|
pitch: 1.0
|
||||||
|
|
||||||
|
# used for auto updating this file, do not change
|
||||||
|
file-version: 5
|
7
src/plugins/Spawn/location.yml
Normal file
7
src/plugins/Spawn/location.yml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
spawn:
|
||||||
|
world: world
|
||||||
|
x: 255.5
|
||||||
|
y: 1.0
|
||||||
|
z: 258.5
|
||||||
|
yaw: 0.0
|
||||||
|
pitch: 0.0
|
43
src/plugins/Spawn/messages.yml
Normal file
43
src/plugins/Spawn/messages.yml
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
# Spawn by rockquiet
|
||||||
|
# MiniMessage formatting is supported on 1.18.2+ Paper based servers -> https://docs.advntr.dev/minimessage/format.html
|
||||||
|
# Legacy formatting is supported -> https://minecraft.wiki/w/Formatting_codes
|
||||||
|
# to disable a message set it to: ''
|
||||||
|
|
||||||
|
# remove %prefix% from a message if it should not use it
|
||||||
|
prefix: '&7[&2Spawn&7]&r'
|
||||||
|
|
||||||
|
# successful teleport to spawn
|
||||||
|
#teleport: '%prefix% &aTeleported to Spawn.'
|
||||||
|
teleport: ''
|
||||||
|
# successfully teleported another player to spawn - /spawn %player%
|
||||||
|
teleport-other: '%prefix% &aSuccessfully teleported &2%player% &ato Spawn.'
|
||||||
|
# if the player to be teleported is offline - /spawn %player%
|
||||||
|
player-not-found: '%prefix% &cPlayer &4%player% &cnot found!'
|
||||||
|
|
||||||
|
# when the player wants to teleport but has an active teleport cooldown
|
||||||
|
cooldown-left: '%prefix% &cPlease wait &4%cooldown% &csecond(s) before teleporting again.'
|
||||||
|
|
||||||
|
# time left until the player gets teleported to spawn
|
||||||
|
delay-left: '%prefix% &6You will be teleported in &e%delay% &6second(s).'
|
||||||
|
# delayed teleport failed because the player moved
|
||||||
|
teleport-canceled: '%prefix% &cTeleport canceled because you moved!'
|
||||||
|
|
||||||
|
# spawn set at current position
|
||||||
|
spawn-set: '%prefix% &aSpawn set successfully.'
|
||||||
|
|
||||||
|
# all files reloaded
|
||||||
|
reload: '%prefix% &aAll files reloaded successfully.'
|
||||||
|
|
||||||
|
# no spawn set in config - set one with /spawn set
|
||||||
|
no-spawn: '%prefix% &cNo Spawn is set!'
|
||||||
|
# plugin is disabled in current world
|
||||||
|
world-disabled: '%prefix% &cYou are not allowed to use this here!'
|
||||||
|
# player is not in allowed game mode
|
||||||
|
gamemode-restricted: '%prefix% &cYou are not allowed to use this while in &4%gamemode%&c!'
|
||||||
|
# player does not have permission to execute the command
|
||||||
|
no-permission: '%prefix% &cNo permissions!'
|
||||||
|
# command cannot be used in console
|
||||||
|
no-player: '%prefix% &cCommand can only be used by players!'
|
||||||
|
|
||||||
|
# used for auto updating this file, do not change
|
||||||
|
file-version: 3
|
@ -10,6 +10,36 @@
|
|||||||
# REMEMBER TO KEEP PERIODICAL BACKUPS.
|
# REMEMBER TO KEEP PERIODICAL BACKUPS.
|
||||||
#
|
#
|
||||||
regions:
|
regions:
|
||||||
|
spawn:
|
||||||
|
min: {x: 206, y: 0, z: 206}
|
||||||
|
max: {x: 304, y: 32, z: 304}
|
||||||
|
members: {}
|
||||||
|
flags: {other-explosion: deny, lava-fire: deny, water-flow: deny, use: deny,
|
||||||
|
invincible: allow, snow-fall: deny, leaf-decay: deny, firework-damage: deny,
|
||||||
|
heal-min-health: 20.0, coral-fade: deny, wind-charge-burst: deny, feed-delay: 0,
|
||||||
|
mob-damage: deny, ravager-grief: deny, heal-delay: 0, use-anvil: deny,
|
||||||
|
mushroom-growth: deny, respawn-anchors: deny, lightning: deny, wither-damage: deny,
|
||||||
|
ice-form: deny, chorus-fruit-teleport: deny, regiontp-on-exit: spawn,
|
||||||
|
feed-amount: 20, player-loot-drop: deny, enderman-grief: deny, pvp: deny,
|
||||||
|
mob-spawning: deny, crop-growth: deny, moisture-change: deny, natural-hunger-drain: deny,
|
||||||
|
exit-override: false, creeper-explosion: deny, send-chat: allow, vine-growth: deny,
|
||||||
|
heal-max-health: 0.0, damage-animals: deny, snow-melt: deny, receive-chat: allow,
|
||||||
|
exit-via-teleport: deny, tnt: deny, ghast-fireball: deny, entity-item-frame-destroy: deny,
|
||||||
|
regiontp-on-entry: spawn, time-lock: '18000', feed-max-hunger: 0, deny-message: '',
|
||||||
|
natural-health-regen: deny, frosted-ice-form: deny, mycelium-spread: deny,
|
||||||
|
ice-melt: deny, block-trampling: deny, vehicle-destroy: deny, interact: deny,
|
||||||
|
chest-access: deny, ride: deny, weather-lock: clear, fire-spread: deny,
|
||||||
|
enderdragon-block-damage: deny, sleep: deny, mob-loot-drop: deny, sculk-growth: deny,
|
||||||
|
vehicle-place: deny, snowman-trails: deny, rock-growth: deny, entity-painting-destroy: deny,
|
||||||
|
heal-amount: 20, teleport-message: '', exit-deny-message: '', breeze-charge-explosion: deny,
|
||||||
|
lighter: deny, use-dripleaf: deny, pistons: deny, enderpearl: deny, item-drop: deny,
|
||||||
|
soil-dry: deny, exp-drops: deny, copper-fade: deny, fall-damage: deny,
|
||||||
|
game-mode: adventure, item-pickup: deny, item-frame-rotation: deny, potion-splash: deny,
|
||||||
|
frosted-ice-melt: deny, entry-deny-message: '', lava-flow: deny, grass-growth: deny,
|
||||||
|
feed-min-hunger: 20}
|
||||||
|
owners: {}
|
||||||
|
type: cuboid
|
||||||
|
priority: 0
|
||||||
__global__:
|
__global__:
|
||||||
members: {}
|
members: {}
|
||||||
flags: {}
|
flags: {}
|
||||||
|
@ -15,7 +15,7 @@ items:
|
|||||||
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
||||||
- type: message
|
- type: message
|
||||||
messages:
|
messages:
|
||||||
- "<click:OPEN_URL:https://bebrashield.net><color:#EA8A46><bold>Сайт:</bold></color> <grey>https://bebrashield.net</grey></click>"
|
- "<click:OPEN_URL:https://bebrashield.net><color:#4EA38F><bold>Сайт:</bold></color> <grey>https://bebrashield.net</grey></click>"
|
||||||
- type: close
|
- type: close
|
||||||
|
|
||||||
discord:
|
discord:
|
||||||
@ -31,7 +31,7 @@ items:
|
|||||||
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
||||||
- type: message
|
- type: message
|
||||||
messages:
|
messages:
|
||||||
- "<click:OPEN_URL:https://discord.gg/xsyy7d8RfG><color:#EA8A46><bold>Discord:</bold></color> <grey>https://discord.gg/xsyy7d8RfG</grey></click>"
|
- "<click:OPEN_URL:https://discord.gg/xsyy7d8RfG><color:#6558F4><bold>Discord:</bold></color> <grey>https://discord.gg/xsyy7d8RfG</grey></click>"
|
||||||
- type: close
|
- type: close
|
||||||
|
|
||||||
telegram:
|
telegram:
|
||||||
@ -47,15 +47,16 @@ items:
|
|||||||
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
||||||
- type: message
|
- type: message
|
||||||
messages:
|
messages:
|
||||||
- "<click:OPEN_URL:https://t.me/+h28WP38F2_RjZjg6><color:#EA8A46><bold>Telegram:</bold></color> <grey>https://t.me/+h28WP38F2_RjZjg6</grey></click>"
|
- "<click:OPEN_URL:https://t.me/+h28WP38F2_RjZjg6><color:#0E93E0><bold>Telegram:</bold></color> <grey>https://t.me/+h28WP38F2_RjZjg6</grey></click>"
|
||||||
- type: close
|
- type: close
|
||||||
|
|
||||||
back:
|
back:
|
||||||
slot: 16
|
slot: 16
|
||||||
item:
|
item:
|
||||||
material: arrow
|
material: arrow
|
||||||
name: "<color:#EA8A46><bold>Назад</bold></color>"
|
name: "<color:#DCC678><bold>Назад</bold></color>"
|
||||||
actions:
|
actions:
|
||||||
- type: sound
|
- type: sound
|
||||||
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
sound: ENTITY_ITEM_PICKUP
|
||||||
- type: back
|
- type: inventory
|
||||||
|
inventory: main
|
||||||
|
@ -6,12 +6,12 @@ items:
|
|||||||
slot: 10
|
slot: 10
|
||||||
item:
|
item:
|
||||||
material: paper
|
material: paper
|
||||||
name: "<color:#EA8A46><bold>Выбор сервера</bold></color>"
|
name: "<color:#DCC678><bold>Выбор сервера</bold></color>"
|
||||||
lore:
|
lore:
|
||||||
- "<grey>Список серверов с описанием и быстрым подключением.</grey>"
|
- "<grey>Список серверов с описанием и быстрым подключением.</grey>"
|
||||||
actions:
|
actions:
|
||||||
- type: sound
|
- type: sound
|
||||||
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
sound: ENTITY_ITEM_PICKUP
|
||||||
- type: inventory
|
- type: inventory
|
||||||
inventory: servers
|
inventory: servers
|
||||||
|
|
||||||
@ -19,12 +19,12 @@ items:
|
|||||||
slot: 12
|
slot: 12
|
||||||
item:
|
item:
|
||||||
material: chain
|
material: chain
|
||||||
name: "<color:#EA8A46><bold>Ссылки</bold></color>"
|
name: "<color:#DCC678><bold>Ссылки</bold></color>"
|
||||||
lore:
|
lore:
|
||||||
- "<grey>Ресурсы Бебрашилда.</grey>"
|
- "<grey>Ресурсы Бебрашилда.</grey>"
|
||||||
actions:
|
actions:
|
||||||
- type: sound
|
- type: sound
|
||||||
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
sound: ENTITY_ITEM_PICKUP
|
||||||
- type: inventory
|
- type: inventory
|
||||||
inventory: links
|
inventory: links
|
||||||
|
|
||||||
@ -32,11 +32,11 @@ items:
|
|||||||
slot: 14
|
slot: 14
|
||||||
item:
|
item:
|
||||||
material: diamond
|
material: diamond
|
||||||
name: "<color:#EA8A46><bold>Поддержать</bold></color>"
|
name: "<color:#DCC678><bold>Поддержать</bold></color>"
|
||||||
lore:
|
lore:
|
||||||
- "<grey>Поддержите монетой, если нравится играть на сервере.</grey>"
|
- "<grey>Поддержите монетой, если нравится играть на сервере.</grey>"
|
||||||
- ""
|
- ""
|
||||||
- "<grey>Все пожертвования сначала будут использованы на улучшение срвера,</grey>"
|
- "<grey>Все пожертвования сначала будут использованы на улучшение севера,</grey>"
|
||||||
- "<grey>а уже потом на колу и чипсы разработчикам.</grey>"
|
- "<grey>а уже потом на колу и чипсы разработчикам.</grey>"
|
||||||
- ""
|
- ""
|
||||||
- "<grey>Кликните, чтобы получить ссылку в чате.</grey>"
|
- "<grey>Кликните, чтобы получить ссылку в чате.</grey>"
|
||||||
@ -46,15 +46,15 @@ items:
|
|||||||
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
||||||
- type: message
|
- type: message
|
||||||
messages:
|
messages:
|
||||||
- "<click:OPEN_URL:https://bebrashield.net/donate><color:#EA8A46><bold>Способы поддержки:</bold></color> <grey>https://bebrashield.net/donate</grey></click>"
|
- "<click:OPEN_URL:https://bebrashield.net/donate><color:#DCC678><bold>Способы поддержки:</bold></color> <grey>https://bebrashield.net/donate</grey></click>"
|
||||||
- type: close
|
- type: close
|
||||||
|
|
||||||
close:
|
close:
|
||||||
slot: 16
|
slot: 16
|
||||||
item:
|
item:
|
||||||
material: barrier
|
material: barrier
|
||||||
name: "<color:#EA8A46><bold>Закрыть</bold></color>"
|
name: "<color:#DCC678><bold>Закрыть</bold></color>"
|
||||||
actions:
|
actions:
|
||||||
- type: sound
|
- type: sound
|
||||||
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
sound: BLOCK_CHEST_CLOSE
|
||||||
- type: close
|
- type: close
|
||||||
|
@ -6,21 +6,27 @@ items:
|
|||||||
slot: 10
|
slot: 10
|
||||||
item:
|
item:
|
||||||
material: creeper_head
|
material: creeper_head
|
||||||
name: "<color:#EA8A46><bold>Выживание</bold></color>"
|
name: "<color:#DCC678><bold>Выживание</bold></color>"
|
||||||
lore:
|
lore:
|
||||||
- "<grey>Классический опыт игры с косметическими модификациями.</grey>"
|
- "<gray>Ванильный полуприватный SMP сервер.</gray>"
|
||||||
|
- "<gray>Без приватов, гриферства и донатов.</gray>"
|
||||||
|
- "<gray>Для игры требуется привязка <color:#6558F4>Discord</color>.</gray>"
|
||||||
|
- "<gray>Кликните, чтобы войти.</gray>"
|
||||||
actions:
|
actions:
|
||||||
- type: sound
|
- type: sound
|
||||||
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
sound: BLOCK_PORTAL_TRAVEL
|
||||||
- type: connect
|
- type: connect
|
||||||
|
delay: 60 # 3 seconds
|
||||||
server: survival
|
server: survival
|
||||||
|
- type: close
|
||||||
|
|
||||||
back:
|
back:
|
||||||
slot: 16
|
slot: 16
|
||||||
item:
|
item:
|
||||||
material: arrow
|
material: arrow
|
||||||
name: "<color:#EA8A46><bold>Назад</bold></color>"
|
name: "<color:#DCC678><bold>Назад</bold></color>"
|
||||||
actions:
|
actions:
|
||||||
- type: sound
|
- type: sound
|
||||||
sound: ENTITY_EXPERIENCE_ORB_PICKUP
|
sound: ENTITY_ITEM_PICKUP
|
||||||
- type: back
|
- type: inventory
|
||||||
|
inventory: main
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#Minecraft server properties
|
#Minecraft server properties
|
||||||
#Sun Jun 01 21:52:42 EEST 2025
|
#Sat Jul 26 14:26:48 EEST 2025
|
||||||
accepts-transfers=false
|
accepts-transfers=false
|
||||||
allow-flight=false
|
allow-flight=false
|
||||||
allow-nether=true
|
allow-nether=false
|
||||||
broadcast-console-to-ops=true
|
broadcast-console-to-ops=true
|
||||||
broadcast-rcon-to-ops=true
|
broadcast-rcon-to-ops=true
|
||||||
bug-report-link=
|
bug-report-link=
|
||||||
|
6
src/world/datapacks/bukkit/pack.mcmeta
Normal file
6
src/world/datapacks/bukkit/pack.mcmeta
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"pack": {
|
||||||
|
"description": "Data pack for resources provided by Bukkit plugins",
|
||||||
|
"pack_format": 48
|
||||||
|
}
|
||||||
|
}
|
BIN
src/world/level.dat
Normal file
BIN
src/world/level.dat
Normal file
Binary file not shown.
6
src/world/paper-world.yml
Normal file
6
src/world/paper-world.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# This is a world configuration file for Paper.
|
||||||
|
# This file may start empty but can be filled with settings to override ones in the config/paper-world-defaults.yml
|
||||||
|
#
|
||||||
|
# World: world (minecraft:overworld)
|
||||||
|
|
||||||
|
_version: 31
|
BIN
src/world/region/r.0.0.mca
(Stored with Git LFS)
Normal file
BIN
src/world/region/r.0.0.mca
(Stored with Git LFS)
Normal file
Binary file not shown.
1
src/world/session.lock
Normal file
1
src/world/session.lock
Normal file
@ -0,0 +1 @@
|
|||||||
|
☃
|
1
src/world/uid.dat
Normal file
1
src/world/uid.dat
Normal file
@ -0,0 +1 @@
|
|||||||
|
<EFBFBD>DクXィOホコxn<EFBFBD>7ン
|
Loading…
Reference in New Issue
Block a user