Compare commits
32 Commits
feature-27
...
develop
Author | SHA1 | Date | |
---|---|---|---|
bd3a1e5b9c | |||
50fe02818d | |||
1599a79b15 | |||
51f78f3ec0 | |||
733c2d7d26 | |||
70056502dd | |||
5ae76be931 | |||
89b3cfe154 | |||
ace4d01f1d | |||
d054a0d26a | |||
11ae707a99 | |||
32e0d8949e | |||
06d0824f67 | |||
e6247a2414 | |||
bd10980524 | |||
260bdd7277 | |||
20f39cf22e | |||
cae7ab9022 | |||
c0cad02e1f | |||
cd1b05b42b | |||
207521b638 | |||
d240a44602 | |||
66681a9bf1 | |||
78f3df715b | |||
314bd15a51 | |||
94cc77340a | |||
f47a370c7a | |||
fb6a0c0602 | |||
7b6b6a2b4d | |||
067f2c4a6a | |||
6ae358a2ac | |||
00e84cf168 |
7
.github/workflows/build-docker.yml
vendored
7
.github/workflows/build-docker.yml
vendored
@ -5,6 +5,8 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- develop
|
- develop
|
||||||
|
tags:
|
||||||
|
- '[0-9]+.[0-9]+.[0-9]+'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-docker:
|
build-docker:
|
||||||
@ -42,5 +44,6 @@ jobs:
|
|||||||
push: true
|
push: true
|
||||||
# TODO: split tag names into multiple lines
|
# TODO: split tag names into multiple lines
|
||||||
tags: |
|
tags: |
|
||||||
${{env.registry}}/${{github.repository_owner}}/${{github.event.repository.name}}/${{github.ref_name}}:${{github.sha}}
|
${{env.registry}}/${{github.repository_owner}}/${{github.event.repository.name}}:${{github.sha}}
|
||||||
${{env.registry}}/${{github.repository_owner}}/${{github.event.repository.name}}/${{github.ref_name}}:latest
|
${{env.registry}}/${{github.repository_owner}}/${{github.event.repository.name}}:${{github.ref_name}}
|
||||||
|
${{env.registry}}/${{github.repository_owner}}/${{github.event.repository.name}}:latest
|
||||||
|
114
Dockerfile
114
Dockerfile
@ -9,29 +9,31 @@ ADD ./src ${CONFIG_PATH}
|
|||||||
RUN mkdir ${DATA_PATH}
|
RUN mkdir ${DATA_PATH}
|
||||||
|
|
||||||
|
|
||||||
# Add symlinks to Minecraft default files
|
# Add symlinks to Minecraft Vanilla files
|
||||||
RUN touch ${DATA_PATH}/banned-ips.json && \
|
RUN mkdir ${DATA_PATH}/Vanilla && \
|
||||||
ln -sf ${DATA_PATH}/banned-ips.json ${CONFIG_PATH} && \
|
touch ${DATA_PATH}/Vanilla/banned-ips.json && \
|
||||||
touch ${DATA_PATH}/banned-players.json && \
|
ln -sf ${DATA_PATH}/Vanilla/banned-ips.json ${CONFIG_PATH} && \
|
||||||
ln -sf ${DATA_PATH}/banned-players.json ${CONFIG_PATH} && \
|
touch ${DATA_PATH}/Vanilla/banned-players.json && \
|
||||||
mkdir ${DATA_PATH}/logs && \
|
ln -sf ${DATA_PATH}/Vanilla/banned-players.json ${CONFIG_PATH} && \
|
||||||
ln -sf ${DATA_PATH}/logs ${CONFIG_PATH} && \
|
mkdir ${DATA_PATH}/Vanilla/logs && \
|
||||||
touch ${DATA_PATH}/ops.json && \
|
ln -sf ${DATA_PATH}/Vanilla/logs ${CONFIG_PATH} && \
|
||||||
ln -sf ${DATA_PATH}/ops.json ${CONFIG_PATH} && \
|
touch ${DATA_PATH}/Vanilla/ops.json && \
|
||||||
touch ${DATA_PATH}/usercache.json && \
|
ln -sf ${DATA_PATH}/Vanilla/ops.json ${CONFIG_PATH} && \
|
||||||
ln -sf ${DATA_PATH}/usercache.json ${CONFIG_PATH} && \
|
touch ${DATA_PATH}/Vanilla/usercache.json && \
|
||||||
touch ${DATA_PATH}/whitelist.json && \
|
ln -sf ${DATA_PATH}/Vanilla/usercache.json ${CONFIG_PATH} && \
|
||||||
ln -sf ${DATA_PATH}/whitelist.json ${CONFIG_PATH} && \
|
touch ${DATA_PATH}/Vanilla/whitelist.json && \
|
||||||
mkdir ${DATA_PATH}/world && \
|
ln -sf ${DATA_PATH}/Vanilla/whitelist.json ${CONFIG_PATH} && \
|
||||||
ln -sf ${DATA_PATH}/world ${CONFIG_PATH} && \
|
mkdir ${DATA_PATH}/Vanilla/world && \
|
||||||
mkdir ${DATA_PATH}/world_nether && \
|
ln -sf ${DATA_PATH}/Vanilla/world ${CONFIG_PATH} && \
|
||||||
ln -sf ${DATA_PATH}/world_nether ${CONFIG_PATH} && \
|
mkdir ${DATA_PATH}/Vanilla/world_nether && \
|
||||||
mkdir ${DATA_PATH}/world_the_end && \
|
ln -sf ${DATA_PATH}/Vanilla/world_nether ${CONFIG_PATH} && \
|
||||||
ln -sf ${DATA_PATH}/world_the_end ${CONFIG_PATH}
|
mkdir ${DATA_PATH}/Vanilla/world_the_end && \
|
||||||
|
ln -sf ${DATA_PATH}/Vanilla/world_the_end ${CONFIG_PATH}
|
||||||
|
|
||||||
# Add symlinks to PlasmoVoice files
|
# Add symlinks to PlasmoVoice files
|
||||||
RUN touch ${DATA_PATH}/pv-voice_mutes.json && \
|
RUN mkdir ${DATA_PATH}/PlasmoVoice && \
|
||||||
ln -sf ${DATA_PATH}/pv-voice_mutes.json \
|
touch ${DATA_PATH}/PlasmoVoice/pv-voice_mutes.json && \
|
||||||
|
ln -sf ${DATA_PATH}/PlasmoVoice/pv-voice_mutes.json \
|
||||||
${CONFIG_PATH}/plugins/PlasmoVoice/voice_mutes.json
|
${CONFIG_PATH}/plugins/PlasmoVoice/voice_mutes.json
|
||||||
|
|
||||||
# Add symlinks to SuperVanish files
|
# Add symlinks to SuperVanish files
|
||||||
@ -61,12 +63,6 @@ RUN mkdir -p ${DATA_PATH}/CustomizablePlayerModels && \
|
|||||||
ln -sf ${DATA_PATH}/CustomizablePlayerModels/ \
|
ln -sf ${DATA_PATH}/CustomizablePlayerModels/ \
|
||||||
${CONFIG_PATH}/plugins/CustomizablePlayerModels
|
${CONFIG_PATH}/plugins/CustomizablePlayerModels
|
||||||
|
|
||||||
# Add symlinks to DiscordSRV files
|
|
||||||
RUN mkdir -p ${DATA_PATH}/DiscordSRV && \
|
|
||||||
touch ${DATA_PATH}/DiscordSRV/accounts.aof && \
|
|
||||||
ln -sf ${DATA_PATH}/DiscordSRV/accounts.aof \
|
|
||||||
${CONFIG_PATH}/plugins/DiscordSRV/accounts.aof
|
|
||||||
|
|
||||||
# Add symlinks to BlueMap files
|
# Add symlinks to BlueMap files
|
||||||
RUN mkdir -p ${DATA_PATH}/BlueMap/maps && \
|
RUN mkdir -p ${DATA_PATH}/BlueMap/maps && \
|
||||||
mkdir -p ${DATA_PATH}/BlueMap/logs && \
|
mkdir -p ${DATA_PATH}/BlueMap/logs && \
|
||||||
@ -83,10 +79,26 @@ RUN mkdir -p ${DATA_PATH}/Chunky/tasks && \
|
|||||||
ln -sf ${DATA_PATH}/Chunky/tasks \
|
ln -sf ${DATA_PATH}/Chunky/tasks \
|
||||||
${CONFIG_PATH}/plugins/Chunky/tasks
|
${CONFIG_PATH}/plugins/Chunky/tasks
|
||||||
|
|
||||||
|
# Generate unicode locale so that cyrillic characters display properly
|
||||||
|
RUN apt-get update -y && apt-get install -y locales && \
|
||||||
|
echo en_US.UTF-8 UTF-8 > /etc/locale.gen && \
|
||||||
|
dpkg-reconfigure --frontend=noninteractive locales && \
|
||||||
|
rm -Rf var/lib/apt/lists/*
|
||||||
|
ENV LANG en_US.UTF-8
|
||||||
|
|
||||||
|
|
||||||
VOLUME ${DATA_PATH}
|
VOLUME ${DATA_PATH}
|
||||||
|
|
||||||
|
|
||||||
|
# Minecraft
|
||||||
|
EXPOSE 25565/tcp
|
||||||
|
# BlueMap
|
||||||
|
EXPOSE 8100/tcp
|
||||||
|
|
||||||
|
|
||||||
|
ENV GID=988
|
||||||
|
ENV UID=999
|
||||||
|
|
||||||
ENV MEMORY=4G
|
ENV MEMORY=4G
|
||||||
ENV PROXY_SECRET=00000000-0000-0000-0000-000000000000
|
ENV PROXY_SECRET=00000000-0000-0000-0000-000000000000
|
||||||
|
|
||||||
@ -124,21 +136,37 @@ ENV GRIM_DB_PASSWORD=0000
|
|||||||
|
|
||||||
ENV DISCORDSRV_BOT_TOKEN=dummy-token
|
ENV DISCORDSRV_BOT_TOKEN=dummy-token
|
||||||
|
|
||||||
|
ENV DISCORDSRV_DB_HOST=127.0.0.1
|
||||||
|
ENV DISCORDSRV_DB_PORT=3306
|
||||||
|
ENV DISCORDSRV_DB_NAME=discordsrv_db
|
||||||
|
ENV DISCORDSRV_DB_USERNAME=discordsrv
|
||||||
|
ENV DISCORDSRV_DB_PASSWORD=0000
|
||||||
|
|
||||||
ENV LUCKPERMS_DB_HOST=127.0.0.1
|
|
||||||
ENV LUCKPERMS_DB_PORT=3306
|
|
||||||
ENV LUCKPERMS_DB_NAME=luckperms
|
|
||||||
ENV LUCKPERMS_DB_USERNAME=luckperms
|
|
||||||
ENV LUCKPERMS_DB_PASSWORD=0000
|
|
||||||
|
|
||||||
WORKDIR ${WORKDIR_PATH}/config
|
WORKDIR ${WORKDIR_PATH}/config
|
||||||
|
|
||||||
# Minecraft
|
|
||||||
EXPOSE 25565/tcp
|
|
||||||
# BlueMap
|
|
||||||
EXPOSE 8100/tcp
|
|
||||||
|
|
||||||
CMD \
|
CMD \
|
||||||
|
# Remove after migrated
|
||||||
|
mkdir -p ${DATA_PATH}/Vanilla && \
|
||||||
|
if [ -e ${DATA_PATH}/banned-ips.json ]; then mv ${DATA_PATH}/banned-ips.json ${DATA_PATH}/Vanilla; fi && \
|
||||||
|
if [ -e ${DATA_PATH}/banned-players.json ]; then mv ${DATA_PATH}/banned-players.json ${DATA_PATH}/Vanilla; fi && \
|
||||||
|
if [ -e ${DATA_PATH}/logs ]; then mv ${DATA_PATH}/logs ${DATA_PATH}/Vanilla; fi && \
|
||||||
|
if [ -e ${DATA_PATH}/ops.json ]; then mv ${DATA_PATH}/ops.json ${DATA_PATH}/Vanilla; fi && \
|
||||||
|
if [ -e ${DATA_PATH}/usercache.json ]; then mv ${DATA_PATH}/usercache.json ${DATA_PATH}/Vanilla; fi && \
|
||||||
|
if [ -e ${DATA_PATH}/whitelist.json ]; then mv ${DATA_PATH}/whitelist.json ${DATA_PATH}/Vanilla; fi && \
|
||||||
|
if [ -e ${DATA_PATH}/world ]; then mv ${DATA_PATH}/world ${DATA_PATH}/Vanilla; fi && \
|
||||||
|
if [ -e ${DATA_PATH}/world_nether ]; then mv ${DATA_PATH}/world_nether ${DATA_PATH}/Vanilla; fi && \
|
||||||
|
if [ -e ${DATA_PATH}/world_the_end ]; then mv ${DATA_PATH}/world_the_end ${DATA_PATH}/Vanilla; fi && \
|
||||||
|
mkdir -p ${DATA_PATH}/PlasmoVoice && \
|
||||||
|
if [ -e ${DATA_PATH}/pv-voice_mutes.json ]; then mv ${DATA_PATH}/pv-voice_mutes.json ${DATA_PATH}/PlasmoVoice; fi && \
|
||||||
|
|
||||||
|
# Create and switch to user with desired UID and GID.
|
||||||
|
# All processes that create/change files in ${DATA_PATH}
|
||||||
|
# must be run under this user.
|
||||||
|
groupadd -g ${GID} worker && \
|
||||||
|
useradd -M -g ${GID} -u ${UID} worker && \
|
||||||
|
chmod -R o-rwx ${WORKDIR_PATH} && \
|
||||||
|
|
||||||
# Add proxy secret
|
# Add proxy secret
|
||||||
sed -i "s/_PROXY_SECRET_/${PROXY_SECRET}/g" config/paper-global.yml && \
|
sed -i "s/_PROXY_SECRET_/${PROXY_SECRET}/g" config/paper-global.yml && \
|
||||||
|
|
||||||
@ -183,5 +211,15 @@ CMD \
|
|||||||
# Add DiscordSRV bot token
|
# Add DiscordSRV bot token
|
||||||
sed -i "s/_DISCORDSRV_BOT_TOKEN_/${DISCORDSRV_BOT_TOKEN}/g" plugins/DiscordSRV/config.yml && \
|
sed -i "s/_DISCORDSRV_BOT_TOKEN_/${DISCORDSRV_BOT_TOKEN}/g" plugins/DiscordSRV/config.yml && \
|
||||||
|
|
||||||
|
# Add database info to DiscordSRV config
|
||||||
|
sed -i "s/_DISCORDSRV_DB_HOST_/${DISCORDSRV_DB_HOST}/g" plugins/DiscordSRV/config.yml && \
|
||||||
|
sed -i "s/_DISCORDSRV_DB_PORT_/${DISCORDSRV_DB_PORT}/g" plugins/DiscordSRV/config.yml && \
|
||||||
|
sed -i "s/_DISCORDSRV_DB_NAME_/${DISCORDSRV_DB_NAME}/g" plugins/DiscordSRV/config.yml && \
|
||||||
|
sed -i "s/_DISCORDSRV_DB_USERNAME_/${DISCORDSRV_DB_USERNAME}/g" plugins/DiscordSRV/config.yml && \
|
||||||
|
sed -i "s/_DISCORDSRV_DB_PASSWORD_/${DISCORDSRV_DB_PASSWORD}/g" plugins/DiscordSRV/config.yml && \
|
||||||
|
|
||||||
|
# Change UID and GID of used files to desired values.
|
||||||
|
chown -R worker:worker ${WORKDIR_PATH} && \
|
||||||
|
|
||||||
# Launch
|
# Launch
|
||||||
java -Xms${MEMORY} -Xmx${MEMORY} -jar *.jar -nogui
|
su worker -c "java -Xms${MEMORY} -Xmx${MEMORY} -XX:+UseZGC -XX:+ZGenerational -XX:+AlwaysPreTouch -XX:+UseStringDeduplication -jar *.jar -nogui"
|
||||||
|
@ -79,8 +79,8 @@ misc:
|
|||||||
packet-limiter:
|
packet-limiter:
|
||||||
all-packets:
|
all-packets:
|
||||||
action: KICK
|
action: KICK
|
||||||
interval: 7.0
|
interval: 1.0
|
||||||
max-packet-rate: 500.0
|
max-packet-rate: 200.0
|
||||||
kick-message: <red><lang:disconnect.exceeded_packet_rate>
|
kick-message: <red><lang:disconnect.exceeded_packet_rate>
|
||||||
overrides:
|
overrides:
|
||||||
ServerboundPlaceRecipePacket:
|
ServerboundPlaceRecipePacket:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"language": "en",
|
"language": "en",
|
||||||
"maxUserSets": 1,
|
"maxUserSets": 100,
|
||||||
"maxUserMarker": 5
|
"maxUserMarker": 1000
|
||||||
}
|
}
|
BIN
src/plugins/Clumps-5.0.jar
(Stored with Git LFS)
Normal file
BIN
src/plugins/Clumps-5.0.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
55
src/plugins/Clumps/config.yml
Normal file
55
src/plugins/Clumps/config.yml
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
# XP Clumps Plugin Configuration
|
||||||
|
|
||||||
|
# The radius within which XP orbs will merge (in blocks)
|
||||||
|
merge-radius: 2.0
|
||||||
|
|
||||||
|
# Minimum XP amount required in an orb for it to be merged with others
|
||||||
|
min-xp-to-merge: 5
|
||||||
|
|
||||||
|
# How often (in seconds) the plugin checks and merges XP orbs in each world
|
||||||
|
merge-interval-seconds: 10
|
||||||
|
|
||||||
|
# The radius within which XP orbs will be instantly collected by players
|
||||||
|
instant-collect-radius: 1
|
||||||
|
|
||||||
|
# Enable or disable the instant collection of XP orbs by players within the defined radius
|
||||||
|
enable-instant-collect: true
|
||||||
|
|
||||||
|
# Enable or disable the merging of XP orbs across the server
|
||||||
|
enable-merging: true
|
||||||
|
|
||||||
|
# The XP boost multiplier for players collecting XP near merged XP orbs (percentage as a multiplier)
|
||||||
|
xp-boost-multiplier: 1.1 # 10% XP boost
|
||||||
|
|
||||||
|
# Enable or disable the XP boost feature for players near merging XP orbs
|
||||||
|
enable-xp-boost: false
|
||||||
|
|
||||||
|
# Enable or disable particle effects when XP orbs merge (visual animations)
|
||||||
|
enable-merge-animations: true
|
||||||
|
|
||||||
|
# Prevent duplication of XP orbs (to avoid excessive orb spawning)
|
||||||
|
prevent-orb-duplication: true
|
||||||
|
|
||||||
|
# World-specific settings (if you want different settings for different worlds)
|
||||||
|
world-settings:
|
||||||
|
# Example of how to configure world-specific settings for merging XP orbs
|
||||||
|
# These settings will override the global settings for specific worlds
|
||||||
|
overworld:
|
||||||
|
merge-radius: 2.0
|
||||||
|
min-xp-to-merge: 5
|
||||||
|
merge-interval-seconds: 10
|
||||||
|
enable-instant-collect: true
|
||||||
|
enable-merging: true
|
||||||
|
xp-boost-multiplier: 1.1
|
||||||
|
enable-xp-boost: true
|
||||||
|
enable-merge-animations: true
|
||||||
|
nether:
|
||||||
|
merge-radius: 3.0 # Different radius for the Nether
|
||||||
|
min-xp-to-merge: 10
|
||||||
|
merge-interval-seconds: 15 # Longer interval for Nether
|
||||||
|
enable-instant-collect: false # Disabled instant collect in the Nether
|
||||||
|
enable-merging: true
|
||||||
|
xp-boost-multiplier: 1.2 # Higher XP boost in the Nether
|
||||||
|
enable-xp-boost: true
|
||||||
|
enable-merge-animations: false # Disable animations in the Nether
|
||||||
|
|
BIN
src/plugins/CommandWhitelist-Bukkit-2.12.0.jar
(Stored with Git LFS)
Normal file
BIN
src/plugins/CommandWhitelist-Bukkit-2.12.0.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
81
src/plugins/CommandWhitelist/config.yml
Normal file
81
src/plugins/CommandWhitelist/config.yml
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
|
||||||
|
# Messages use MiniMessage formatting (https://docs.adventure.kyori.net/minimessage/format)
|
||||||
|
messages:
|
||||||
|
prefix: ''
|
||||||
|
command_denied: ''
|
||||||
|
subcommand_denied: ''
|
||||||
|
no_permission: ''
|
||||||
|
no_such_subcommand: ''
|
||||||
|
config_reloaded: <yellow>Configuration reloaded.
|
||||||
|
added_to_whitelist: <yellow>Whitelisted command <gold>%s <yellow>for permission
|
||||||
|
<gold>%s
|
||||||
|
removed_from_whitelist: <yellow>Removed command <gold>%s <yellow>from permission
|
||||||
|
<gold>%s
|
||||||
|
group_doesnt_exist: <red>Group doesn't exist or error occured
|
||||||
|
|
||||||
|
# Do not enable if you don't have issues with aliased commands.
|
||||||
|
# This requires server restart to take effect.
|
||||||
|
use_protocollib: false
|
||||||
|
|
||||||
|
# Valid message types are CHAT and ACTIONBAR. Does nothing on velocity.
|
||||||
|
message_type: CHAT
|
||||||
|
groups:
|
||||||
|
default:
|
||||||
|
commands:
|
||||||
|
- tell
|
||||||
|
- reply
|
||||||
|
- ignore
|
||||||
|
- unignore
|
||||||
|
- discord
|
||||||
|
- imageframe
|
||||||
|
subcommands:
|
||||||
|
- discord ?
|
||||||
|
- discord help
|
||||||
|
- discord link
|
||||||
|
- discord linked
|
||||||
|
- discord clearlinked
|
||||||
|
role_moder:
|
||||||
|
commands:
|
||||||
|
- ban
|
||||||
|
- unban
|
||||||
|
- ipban
|
||||||
|
- unbanip
|
||||||
|
- banlist
|
||||||
|
- mute
|
||||||
|
- unmute
|
||||||
|
- ipmute
|
||||||
|
- unmuteip
|
||||||
|
- mutelist
|
||||||
|
- warn
|
||||||
|
- unwarn
|
||||||
|
- ipwarn
|
||||||
|
- unwarnip
|
||||||
|
- warns
|
||||||
|
- history
|
||||||
|
- alts
|
||||||
|
- kick
|
||||||
|
- ipkick
|
||||||
|
- blame
|
||||||
|
- vanish
|
||||||
|
- openender
|
||||||
|
- openinv
|
||||||
|
- grim
|
||||||
|
- coreprotect
|
||||||
|
- vmute
|
||||||
|
- vunmute
|
||||||
|
- vmutelist
|
||||||
|
- gamemode
|
||||||
|
- tp
|
||||||
|
subcommands:
|
||||||
|
- gamemode adventure
|
||||||
|
- gamemode creative
|
||||||
|
role_admin:
|
||||||
|
commands:
|
||||||
|
- luckperms
|
||||||
|
- searchender
|
||||||
|
- searchenchant
|
||||||
|
- searchcontainer
|
||||||
|
- bmarker
|
||||||
|
- bmarker-setup
|
||||||
|
- bmarker-setup-set
|
||||||
|
subcommands: []
|
@ -27,22 +27,22 @@ BotToken: "_DISCORDSRV_BOT_TOKEN_"
|
|||||||
#
|
#
|
||||||
# Первая часть пар каналов не является названием канала Discord!
|
# Первая часть пар каналов не является названием канала Discord!
|
||||||
# Выполните "/discord reload" после изменения этого опции для применения
|
# Выполните "/discord reload" после изменения этого опции для применения
|
||||||
Channels: {"carbon:global": "1394273426746773544"}
|
Channels: {"carbon:global": "1401248428087836803"}
|
||||||
|
|
||||||
# Канал для вывода сообщений Консоли (НЕ ИМЯ); оставьте пустым, чтобы отключить консольный канал
|
# Канал для вывода сообщений Консоли (НЕ ИМЯ); оставьте пустым, чтобы отключить консольный канал
|
||||||
DiscordConsoleChannelId: ""
|
DiscordConsoleChannelId: ""
|
||||||
|
|
||||||
# Ссылка на приглашение, отображаемая игрокам при использовании /discord, и в сообщении, отображаемом несвязанным игрокам при обязательной привязке.
|
# Ссылка на приглашение, отображаемая игрокам при использовании /discord, и в сообщении, отображаемом несвязанным игрокам при обязательной привязке.
|
||||||
DiscordInviteLink: "https://discord.gg/fYKUUKeCS3"
|
DiscordInviteLink: "https://discord.gg/5ZnJD4yDBq"
|
||||||
|
|
||||||
# Эксперименты
|
# Эксперименты
|
||||||
# Эти функции не полностью оптимизированы; Используйте на свой риск
|
# Эти функции не полностью оптимизированы; Используйте на свой риск
|
||||||
|
|
||||||
# JDBC (MySQL/MariaDB)
|
# JDBC (MySQL/MariaDB)
|
||||||
Experiment_JdbcAccountLinkBackend: "jdbc:mysql://HOST:PORT/NAME?autoReconnect=true&useSSL=false"
|
Experiment_JdbcAccountLinkBackend: "jdbc:mysql://_DISCORDSRV_DB_HOST_:_DISCORDSRV_DB_PORT_/_DISCORDSRV_DB_NAME_?autoReconnect=true&useSSL=false"
|
||||||
Experiment_JdbcTablePrefix: ""
|
Experiment_JdbcTablePrefix: "discordsrv"
|
||||||
Experiment_JdbcUsername: ""
|
Experiment_JdbcUsername: "_DISCORDSRV_DB_USERNAME_"
|
||||||
Experiment_JdbcPassword: ""
|
Experiment_JdbcPassword: "_DISCORDSRV_DB_PASSWORD_"
|
||||||
|
|
||||||
# Webhook Delivery
|
# Webhook Delivery
|
||||||
Experiment_WebhookChatMessageDelivery: false
|
Experiment_WebhookChatMessageDelivery: false
|
||||||
|
@ -45,9 +45,9 @@ Require linked account to play:
|
|||||||
# Можно требовать не только привязку аккаунта, но и наличие специальной роли, например Twitch
|
# Можно требовать не только привязку аккаунта, но и наличие специальной роли, например Twitch
|
||||||
Subscriber role:
|
Subscriber role:
|
||||||
Require subscriber role to join: true
|
Require subscriber role to join: true
|
||||||
Subscriber roles: ["1399136491090739210", "1399048944482259135", "1399048955291111495", "1399048958147301407", "1371492083281563728", ""]
|
Subscriber roles: ["1399048944482259135", "1399048955291111495", "1399048958147301407", "1371492083281563728", ""]
|
||||||
Require all of the listed roles: false # при значении false требуется только одна из указанных выше ролей, при true - все роли.
|
Require all of the listed roles: false # при значении false требуется только одна из указанных выше ролей, при true - все роли.
|
||||||
Kick message: "&cУ вас должна быть специальная роль на сервере Discord, чтобы иметь возможность играть."
|
Kick message: "&cВы должны пройти верификацию модерации на сервере Discord, чтобы иметь возможность играть."
|
||||||
|
|
||||||
Messages:
|
Messages:
|
||||||
DiscordSRV still starting: "&cВ настоящее время невозможно проверить состояние ссылки, поскольку сервер все еще подключается к Discord.\n\nПопробуйте еще раз через минуту."
|
DiscordSRV still starting: "&cВ настоящее время невозможно проверить состояние ссылки, поскольку сервер все еще подключается к Discord.\n\nПопробуйте еще раз через минуту."
|
||||||
|
@ -121,7 +121,8 @@ Settings:
|
|||||||
# For example "imageframe.createlimit.vip"
|
# For example "imageframe.createlimit.vip"
|
||||||
# Players with no groups will be treated as "default" unless they have "imageframe.createlimit.unlimited"
|
# Players with no groups will be treated as "default" unless they have "imageframe.createlimit.unlimited"
|
||||||
PlayerCreationLimit:
|
PlayerCreationLimit:
|
||||||
default: 10
|
default: 3
|
||||||
|
role_elder: 10
|
||||||
vip: 15
|
vip: 15
|
||||||
moderator: 20
|
moderator: 20
|
||||||
# Max amount of markers on an individual map
|
# Max amount of markers on an individual map
|
||||||
|
@ -404,7 +404,7 @@ auto-install-translations: true
|
|||||||
meta-formatting:
|
meta-formatting:
|
||||||
prefix:
|
prefix:
|
||||||
format:
|
format:
|
||||||
- highest_on_track_staff
|
- highest_on_track_roles
|
||||||
- highest_on_track_clans
|
- highest_on_track_clans
|
||||||
|
|
||||||
duplicates: first-only
|
duplicates: first-only
|
||||||
|
@ -220,11 +220,11 @@ proximity:
|
|||||||
- world
|
- world
|
||||||
distance: 24
|
distance: 24
|
||||||
frustumCulling:
|
frustumCulling:
|
||||||
enabled: true
|
enabled: false
|
||||||
minDistance: 3.0
|
minDistance: 3.0
|
||||||
fov: 80.0
|
fov: 80.0
|
||||||
rayCastCheck:
|
rayCastCheck:
|
||||||
enabled: true
|
enabled: false
|
||||||
onlyCheckCenter: true
|
onlyCheckCenter: true
|
||||||
useBlockBelow: true
|
useBlockBelow: true
|
||||||
hiddenBlocks:
|
hiddenBlocks:
|
||||||
|
BIN
src/plugins/SeeMore-1.0.2.jar
(Stored with Git LFS)
Normal file
BIN
src/plugins/SeeMore-1.0.2.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
20
src/plugins/SeeMore/config.yml
Normal file
20
src/plugins/SeeMore/config.yml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# Configuration for SeeMore.
|
||||||
|
|
||||||
|
# Please don't change this!
|
||||||
|
version: 2
|
||||||
|
|
||||||
|
# The delay (in ticks) before a player's view distance is lowered after their client settings change.
|
||||||
|
# * This stops players overloading the server by constantly changing their view distance.
|
||||||
|
update-delay: 600
|
||||||
|
|
||||||
|
# Whether the plugin should log to the console when it changes a player's view distance.
|
||||||
|
log-changes: true
|
||||||
|
|
||||||
|
# These settings can be specified per world.
|
||||||
|
# * Note: If a world is not listed here or if a setting is missing, it will use the settings listed under the default
|
||||||
|
# section.
|
||||||
|
world-settings:
|
||||||
|
default:
|
||||||
|
# The maximum view distance a player in this world can have.
|
||||||
|
# Set to -1 to use the server's configured view distance for this world.
|
||||||
|
maximum-view-distance: -1
|
@ -41,7 +41,7 @@ suppress-text-component-conversion-warnings: true
|
|||||||
#
|
#
|
||||||
# What is the maximum per second a client can send (Use %pps to display their pps)
|
# What is the maximum per second a client can send (Use %pps to display their pps)
|
||||||
# Use -1 to disable.
|
# Use -1 to disable.
|
||||||
max-pps: 800
|
max-pps: -1
|
||||||
max-pps-kick-msg: You are sending too many packets!
|
max-pps-kick-msg: You are sending too many packets!
|
||||||
#
|
#
|
||||||
# We can also kick them if over a period they send over a threshold a certain amount of times.
|
# We can also kick them if over a period they send over a threshold a certain amount of times.
|
||||||
|
@ -53,7 +53,7 @@ resource-pack-sha1=
|
|||||||
server-ip=
|
server-ip=
|
||||||
server-name=Unknown Server
|
server-name=Unknown Server
|
||||||
server-port=25565
|
server-port=25565
|
||||||
simulation-distance=10
|
simulation-distance=8
|
||||||
spawn-animals=true
|
spawn-animals=true
|
||||||
spawn-monsters=true
|
spawn-monsters=true
|
||||||
spawn-npcs=true
|
spawn-npcs=true
|
||||||
@ -61,5 +61,5 @@ spawn-protection=0
|
|||||||
sync-chunk-writes=true
|
sync-chunk-writes=true
|
||||||
text-filtering-config=
|
text-filtering-config=
|
||||||
use-native-transport=true
|
use-native-transport=true
|
||||||
view-distance=10
|
view-distance=8
|
||||||
white-list=false
|
white-list=false
|
||||||
|
Loading…
Reference in New Issue
Block a user