Compare commits
41 Commits
feature-34
...
develop
Author | SHA1 | Date | |
---|---|---|---|
54e9708e6d | |||
92c2c6e10f | |||
ccba748eee | |||
200c88a230 | |||
d18b7d4762 | |||
9f31fe13a0 | |||
6493498337 | |||
87aee184c4 | |||
c4fda21c32 | |||
9eb4e9f626 | |||
1584d8253f | |||
625d8a2a7a | |||
87bd681c23 | |||
b4ab1f1860 | |||
43a34ffd75 | |||
f50ea15354 | |||
e9a975996d | |||
e0e65dfae1 | |||
fe9c92e558 | |||
62675bf7aa | |||
f9a03bc26c | |||
86282257f5 | |||
3fa160365c | |||
83dcc565d8 | |||
b9969e22c1 | |||
922c7dffee | |||
54cd553199 | |||
7df8cd9e5d | |||
af726a7e61 | |||
e20f6a19d8 | |||
dcdcadf2e4 | |||
b3f3c3a480 | |||
853857e1c3 | |||
40ea78c2d9 | |||
d40d544e05 | |||
9da6b3c3d4 | |||
7373d9a99b | |||
0bdaa39911 | |||
38443e14e3 | |||
43522a498e | |||
88e905e7af |
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
|
||||||
|
29
Dockerfile
29
Dockerfile
@ -15,9 +15,23 @@ RUN touch ${DATA_PATH}/pv-groups.json && \
|
|||||||
ln -sf ${DATA_PATH}/pv-groups.json \
|
ln -sf ${DATA_PATH}/pv-groups.json \
|
||||||
${CONFIG_PATH}/plugins/pv-addon-groups/groups.json
|
${CONFIG_PATH}/plugins/pv-addon-groups/groups.json
|
||||||
|
|
||||||
|
# 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}
|
||||||
|
|
||||||
|
|
||||||
|
EXPOSE 25565/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
|
||||||
@ -53,13 +67,19 @@ ENV SONAR_DB_NAME=sonar_db
|
|||||||
ENV SONAR_DB_USERNAME=sonar
|
ENV SONAR_DB_USERNAME=sonar
|
||||||
ENV SONAR_DB_PASSWORD=0000
|
ENV SONAR_DB_PASSWORD=0000
|
||||||
|
|
||||||
WORKDIR ${WORKDIR_PATH}/config
|
|
||||||
|
|
||||||
EXPOSE 25565/tcp
|
WORKDIR ${WORKDIR_PATH}/config
|
||||||
|
|
||||||
# TODO: Make awk commands sapn multiple lines
|
# TODO: Make awk commands sapn multiple lines
|
||||||
# TODO: Use one call to awk to perform substitutions
|
# TODO: Use one call to awk to perform substitutions
|
||||||
CMD \
|
CMD \
|
||||||
|
# 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" forwarding.secret && \
|
sed -i "s/_PROXY_SECRET_/${PROXY_SECRET}/g" forwarding.secret && \
|
||||||
|
|
||||||
@ -108,4 +128,7 @@ CMD \
|
|||||||
sed -i "s/_SONAR_DB_USERNAME_/${SONAR_DB_USERNAME}/g" plugins/sonar/config.yml && \
|
sed -i "s/_SONAR_DB_USERNAME_/${SONAR_DB_USERNAME}/g" plugins/sonar/config.yml && \
|
||||||
sed -i "s/_SONAR_DB_PASSWORD_/${SONAR_DB_PASSWORD}/g" plugins/sonar/config.yml && \
|
sed -i "s/_SONAR_DB_PASSWORD_/${SONAR_DB_PASSWORD}/g" plugins/sonar/config.yml && \
|
||||||
|
|
||||||
java -Xms${MEMORY} -Xmx${MEMORY} -XX:+UseG1GC -XX:G1HeapRegionSize=4M -XX:+UnlockExperimentalVMOptions -XX:+ParallelRefProcEnabled -XX:+AlwaysPreTouch -XX:MaxInlineLevel=15 -jar *.jar
|
# Change UID and GID of used files to desired values.
|
||||||
|
chown -R worker:worker ${WORKDIR_PATH} && \
|
||||||
|
|
||||||
|
su worker -c "java -Xms${MEMORY} -Xmx${MEMORY} -XX:+UseG1GC -XX:G1HeapRegionSize=4M -XX:+UnlockExperimentalVMOptions -XX:+ParallelRefProcEnabled -XX:+AlwaysPreTouch -XX:MaxInlineLevel=15 -jar *.jar"
|
||||||
|
BIN
src/plugins/CommandWhitelist-Velocity-2.12.0.jar
(Stored with Git LFS)
Normal file
BIN
src/plugins/CommandWhitelist-Velocity-2.12.0.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,110 +0,0 @@
|
|||||||
MyAnimation1:
|
|
||||||
change-interval: 100
|
|
||||||
texts:
|
|
||||||
- '&d-&3--------------'
|
|
||||||
- '&3-&d-&3-------------'
|
|
||||||
- '&3--&d-&3------------'
|
|
||||||
- '&3---&d-&3-----------'
|
|
||||||
- '&3----&d-&3----------'
|
|
||||||
- '&3-----&d-&3---------'
|
|
||||||
- '&3------&d-&3--------'
|
|
||||||
- '&3-------&d-&3-------'
|
|
||||||
- '&3--------&d-&3------'
|
|
||||||
- '&3---------&d-&3-----'
|
|
||||||
- '&3----------&d-&3----'
|
|
||||||
- '&3-----------&d-&3---'
|
|
||||||
- '&3------------&d-&3--'
|
|
||||||
- '&3-------------&d-&3-'
|
|
||||||
- '&3--------------&d-'
|
|
||||||
- '&3-------------&d-&3-'
|
|
||||||
- '&3------------&d-&3--'
|
|
||||||
- '&3-----------&d-&3---'
|
|
||||||
- '&3----------&d-&3----'
|
|
||||||
- '&3---------&d-&3-----'
|
|
||||||
- '&3--------&d-&3------'
|
|
||||||
- '&3-------&d-&3-------'
|
|
||||||
- '&3------&d-&3--------'
|
|
||||||
- '&3-----&d-&3---------'
|
|
||||||
- '&3----&d-&3----------'
|
|
||||||
- '&3---&d-&3-----------'
|
|
||||||
- '&3--&d-&3------------'
|
|
||||||
- '&3-&d-&3-------------'
|
|
||||||
- '&d-&3--------------'
|
|
||||||
ServerName:
|
|
||||||
change-interval: 300
|
|
||||||
texts:
|
|
||||||
- '&c&lServerName'
|
|
||||||
- '&c&n&lServerName'
|
|
||||||
- '&b&lServerName'
|
|
||||||
- '&b&l&nServerName'
|
|
||||||
- '&e&lServerName'
|
|
||||||
- '&e&n&lServerName'
|
|
||||||
web:
|
|
||||||
change-interval: 200
|
|
||||||
texts:
|
|
||||||
- '&ewww.domain.com'
|
|
||||||
- '&ewww.domain.com'
|
|
||||||
- '&ewww.domain.com'
|
|
||||||
- '&ewww.domain.com'
|
|
||||||
- '&ewww.domain.com'
|
|
||||||
- '&ewww.domain.com'
|
|
||||||
- '&6w&eww.domain.com'
|
|
||||||
- '&ew&6w&ew.domain.com'
|
|
||||||
- '&eww&6w&e.domain.com'
|
|
||||||
- '&ewww&6.&edomain.com'
|
|
||||||
- '&ewww.&6d&eomain.com'
|
|
||||||
- '&ewww.d&6o&emain.com'
|
|
||||||
- '&ewww.do&6m&eain.com'
|
|
||||||
- '&ewww.dom&6a&ein.com'
|
|
||||||
- '&ewww.doma&6i&en.com'
|
|
||||||
- '&ewww.domai&6n&e.com'
|
|
||||||
- '&ewww.domain&6.&ecom'
|
|
||||||
- '&ewww.domain.&6c&eom'
|
|
||||||
- '&ewww.domain.c&6o&em'
|
|
||||||
- '&ewww.domain.co&6m'
|
|
||||||
- '&ewww.domain.com'
|
|
||||||
- '&ewww.domain.com'
|
|
||||||
- '&ewww.domain.com'
|
|
||||||
- '&ewww.domain.com'
|
|
||||||
- '&ewww.domain.com'
|
|
||||||
- '&ewww.domain.com'
|
|
||||||
vote:
|
|
||||||
change-interval: 1000
|
|
||||||
texts:
|
|
||||||
- '&avote.domain.com'
|
|
||||||
- '&a&nvote.domain.com'
|
|
||||||
- '&5vote.domain.com'
|
|
||||||
- '&5&nvote.domain.com'
|
|
||||||
Welcome:
|
|
||||||
change-interval: 400
|
|
||||||
texts:
|
|
||||||
- '&7&lW_'
|
|
||||||
- '&7&lW_'
|
|
||||||
- '&7&lWe_'
|
|
||||||
- '&7&lWel_'
|
|
||||||
- '&7&lWelc_'
|
|
||||||
- '&7&lWelco_'
|
|
||||||
- '&7&lWelcom_'
|
|
||||||
- '&7&lWelcome_'
|
|
||||||
- '&7&lWelcome_'
|
|
||||||
- '&7&lWelcome_'
|
|
||||||
- '&7&lWelcome_'
|
|
||||||
- '&7&lWelcom_'
|
|
||||||
- '&7&lWelco_'
|
|
||||||
- '&7&lWelc_'
|
|
||||||
- '&7&lWel_'
|
|
||||||
- '&7&lWe_'
|
|
||||||
- '&7&lW_'
|
|
||||||
- '&7&lW_'
|
|
||||||
time:
|
|
||||||
change-interval: 3000
|
|
||||||
texts:
|
|
||||||
- '&7Time &b%time%'
|
|
||||||
- '&7Date &b%date%'
|
|
||||||
barcolors:
|
|
||||||
change-interval: 1000
|
|
||||||
texts:
|
|
||||||
- RED
|
|
||||||
- BLUE
|
|
||||||
- GREEN
|
|
||||||
- YELLOW
|
|
@ -1,25 +0,0 @@
|
|||||||
#Owner:
|
|
||||||
# tabprefix: "&0&l[&a&lOwner&0&l] &a"
|
|
||||||
# tagprefix: "&2&lOwner &a"
|
|
||||||
Player:
|
|
||||||
tabprefix: "&0&l[&7&lPlayer&0&l] &3"
|
|
||||||
tagprefix: "&2&lPlayer &3"
|
|
||||||
example_group:
|
|
||||||
header:
|
|
||||||
- "This is an example of per-group header/footer"
|
|
||||||
footer:
|
|
||||||
- "applied to a group"
|
|
||||||
|
|
||||||
# default settings for all groups, all groups will take properties from this section unless player's primary group overrides a specific setting
|
|
||||||
_DEFAULT_:
|
|
||||||
tabprefix: "%luckperms-prefix%"
|
|
||||||
tagprefix: "%luckperms-prefix%"
|
|
||||||
customtabname: "%player%"
|
|
||||||
tabsuffix: "%luckperms-suffix%"
|
|
||||||
tagsuffix: "%luckperms-suffix%"
|
|
||||||
|
|
||||||
per-world:
|
|
||||||
world1:
|
|
||||||
Owner:
|
|
||||||
tabprefix: "&0&l[&a&lOwner&0&l] &a"
|
|
||||||
tagprefix: "&2&lOwner &a"
|
|
BIN
src/plugins/advancedserverlist/favicons/logo.png
Normal file
BIN
src/plugins/advancedserverlist/favicons/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 539 KiB |
@ -33,10 +33,40 @@ condition: ''
|
|||||||
# Read more: https://asl.andre601.ch/profiles/#profiles
|
# Read more: https://asl.andre601.ch/profiles/#profiles
|
||||||
#
|
#
|
||||||
profiles:
|
profiles:
|
||||||
- motd: ['<aqua>Welcome to the club Bebrashield:re', '<gold>your mom is pretty']
|
|
||||||
- motd:
|
- motd:
|
||||||
- '<aqua>Bebrashield 2.0 also try Bebrashield:re'
|
- "<#4cd964>❤</#4cd964> <gradient:#4cd964:#34c759><bold>Bebrashield</bold></gradient> <gray>> New era"
|
||||||
- '<gold>you look like Billy'
|
- "<#e6c67a><bold>🔧</bold> А чё, когда барьер расширять будете? "
|
||||||
|
- motd:
|
||||||
|
- "<#4cd964>❤</#4cd964> <gradient:#4cd964:#34c759><bold>Bebrashield</bold></gradient> <gray>> New era"
|
||||||
|
- "<#e6c67a><bold>🔧</bold> Колёса крутятся – алмазы мутятся! "
|
||||||
|
- motd:
|
||||||
|
- "<#4cd964>❤</#4cd964> <gradient:#4cd964:#34c759><bold>Bebrashield</bold></gradient> <gray>> New era"
|
||||||
|
- "<#e6c67a><bold>🔧</bold> А там точно не лазуритный блок? "
|
||||||
|
- motd:
|
||||||
|
- "<#4cd964>❤</#4cd964> <gradient:#4cd964:#34c759><bold>Bebrashield</bold></gradient> <gray>> New era"
|
||||||
|
- "<#e6c67a><bold>🔧</bold> О, что это за берёза? "
|
||||||
|
- motd:
|
||||||
|
- "<#4cd964>❤</#4cd964> <gradient:#4cd964:#34c759><bold>Bebrashield</bold></gradient> <gray>> New era"
|
||||||
|
- "<#e6c67a><bold>🔧</bold> Стойте! Проходите! Стойте! А ты уходи! "
|
||||||
|
- motd:
|
||||||
|
- "<#4cd964>❤</#4cd964> <gradient:#4cd964:#34c759><bold>Bebrashield</bold></gradient> <gray>> New era"
|
||||||
|
- "<#e6c67a><bold>🔧</bold> Нюхай бебру! "
|
||||||
|
- motd:
|
||||||
|
- "<#4cd964>❤</#4cd964> <gradient:#4cd964:#34c759><bold>Bebrashield</bold></gradient> <gray>> New era"
|
||||||
|
- "<#e6c67a><bold>🔧</bold> Ну это 100% соя. "
|
||||||
|
- motd:
|
||||||
|
- "<#4cd964>❤</#4cd964> <gradient:#4cd964:#34c759><bold>Bebrashield</bold></gradient> <gray>> New era"
|
||||||
|
- "<#e6c67a><bold>🔧</bold> Лес летающих деревьев... "
|
||||||
|
- motd:
|
||||||
|
- "<#4cd964>❤</#4cd964> <gradient:#4cd964:#34c759><bold>Bebrashield</bold></gradient> <gray>> New era"
|
||||||
|
- "<#e6c67a><bold>🔧</bold> О погоде - в Византии сегодня потоп! "
|
||||||
|
- motd:
|
||||||
|
- "<#4cd964>❤</#4cd964> <gradient:#4cd964:#34c759><bold>Bebrashield</bold></gradient> <gray>> New era"
|
||||||
|
- "<#e6c67a><bold>🔧</bold> Чё, когда бан пикси? "
|
||||||
|
- motd:
|
||||||
|
- "<#4cd964>❤</#4cd964> <gradient:#4cd964:#34c759><bold>Bebrashield</bold></gradient> <gray>> New era"
|
||||||
|
- "<#e6c67a><bold>🔧</bold> Я князь тьмы! Нет, ты сясь тьома. "
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Set the "Message of the day" to display.
|
# Set the "Message of the day" to display.
|
||||||
@ -82,7 +112,7 @@ motd:
|
|||||||
# This should only happen for the first ping of a player and subsequent pings should display the favicon, if the
|
# This should only happen for the first ping of a player and subsequent pings should display the favicon, if the
|
||||||
# pings are done within the configured cache time (See 'faviconCacheTime' in the config.yml).
|
# pings are done within the configured cache time (See 'faviconCacheTime' in the config.yml).
|
||||||
#
|
#
|
||||||
favicon: ''
|
favicon: 'logo.png'
|
||||||
|
|
||||||
#
|
#
|
||||||
# Contains options for modifying the player count (Text displaying <online>/<max>).
|
# Contains options for modifying the player count (Text displaying <online>/<max>).
|
||||||
@ -119,8 +149,8 @@ playerCount:
|
|||||||
# Read more: https://asl.andre601.ch/profiles/#hover
|
# Read more: https://asl.andre601.ch/profiles/#hover
|
||||||
#
|
#
|
||||||
hover:
|
hover:
|
||||||
- '<aqua>Чё'
|
- '<white>Чё вылупился?'
|
||||||
- '<yellow>Вылупился'
|
- '<white>Заходи!'
|
||||||
#
|
#
|
||||||
# Set the text that should be displayed instead of the default '<online>/<max>' text.
|
# Set the text that should be displayed instead of the default '<online>/<max>' text.
|
||||||
#
|
#
|
||||||
@ -150,7 +180,7 @@ playerCount:
|
|||||||
#
|
#
|
||||||
# Read more: https://asl.andre601.ch/profiles/#extraplayers-enabled
|
# Read more: https://asl.andre601.ch/profiles/#extraplayers-enabled
|
||||||
#
|
#
|
||||||
enabled: true
|
enabled: false
|
||||||
#
|
#
|
||||||
# Set the number that should be added to the online player count to then use as the new max player count.
|
# Set the number that should be added to the online player count to then use as the new max player count.
|
||||||
# Placeholders resolving to numbers can be used here.
|
# Placeholders resolving to numbers can be used here.
|
||||||
@ -212,4 +242,4 @@ playerCount:
|
|||||||
#
|
#
|
||||||
# Read more: https://asl.andre601.ch/profiles/#onlineplayers-amount
|
# Read more: https://asl.andre601.ch/profiles/#onlineplayers-amount
|
||||||
#
|
#
|
||||||
amount: 0
|
amount: 0
|
||||||
|
41
src/plugins/commandwhitelist/config.yml
Normal file
41
src/plugins/commandwhitelist/config.yml
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# Valid message types are CHAT and ACTIONBAR. Does nothing on velocity.
|
||||||
|
message_type: CHAT
|
||||||
|
groups:
|
||||||
|
default:
|
||||||
|
commands:
|
||||||
|
- server
|
||||||
|
- register
|
||||||
|
- login
|
||||||
|
- changepassword
|
||||||
|
- premium
|
||||||
|
- confirmpremium
|
||||||
|
- cracked
|
||||||
|
- groups
|
||||||
|
- skin
|
||||||
|
subcommands: []
|
||||||
|
role_moder:
|
||||||
|
commands:
|
||||||
|
- vmute
|
||||||
|
- vunmute
|
||||||
|
- vmutelist
|
||||||
|
subcommands: []
|
||||||
|
role_admin:
|
||||||
|
commands:
|
||||||
|
- send
|
||||||
|
- vbroadcastproxy
|
||||||
|
subcommands: []
|
@ -403,11 +403,12 @@ auto-install-translations: true
|
|||||||
meta-formatting:
|
meta-formatting:
|
||||||
prefix:
|
prefix:
|
||||||
format:
|
format:
|
||||||
- "highest"
|
- highest_on_track_roles
|
||||||
|
- highest_on_track_clans
|
||||||
duplicates: first-only
|
duplicates: first-only
|
||||||
start-spacer: "["
|
start-spacer: "<dark_grey>[</dark_grey>"
|
||||||
middle-spacer: " "
|
middle-spacer: "<dark_grey>]</dark_grey> <dark_grey>[</dark_grey>"
|
||||||
end-spacer: "]"
|
end-spacer: "<dark_grey>] </dark_grey>"
|
||||||
suffix:
|
suffix:
|
||||||
format:
|
format:
|
||||||
- "highest"
|
- "highest"
|
||||||
|
1053
src/plugins/luckperms/luckperms.json
Normal file
1053
src/plugins/luckperms/luckperms.json
Normal file
File diff suppressed because it is too large
Load Diff
16
src/plugins/tab/animations.yml
Normal file
16
src/plugins/tab/animations.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
GachiWelcome:
|
||||||
|
change-interval: 4000
|
||||||
|
texts:
|
||||||
|
- "<gradient:#4cd964:#e6c67a><bold>Нажми на кнопочку.</bold></gradient>"
|
||||||
|
- "<gradient:#e6c67a:#4cd964><bold>Струячим дальше!</bold></gradient>"
|
||||||
|
- "<gradient:#4cd964:#e6c67a><bold>Оооооооо...</bold></gradient>"
|
||||||
|
- "<gradient:#e6c67a:#4cd964><bold>ПОИХАЛИ</bold></gradient>"
|
||||||
|
- "<gradient:#4cd964:#e6c67a><bold>Я посрал!</bold></gradient>"
|
||||||
|
- "<gradient:#e6c67a:#4cd964><bold>Ясно. Бан.</bold></gradient>"
|
||||||
|
- "<gradient:#4cd964:#e6c67a><bold>Ооо, щас мы тебя прокачаем</bold></gradient>"
|
||||||
|
- "<gradient:#e6c67a:#4cd964><bold>АСФУРИЛЛАХ.</bold></gradient>"
|
||||||
|
- "<gradient:#4cd964:#e6c67a><bold>Бисмастер Бивлакарта?</bold></gradient>"
|
||||||
|
- "<gradient:#e6c67a:#4cd964><bold>Тошик где мой редстоун?</bold></gradient>"
|
||||||
|
- "<gradient:#4cd964:#e6c67a><bold>Тьома я зробив ферму свекли!</bold></gradient>"
|
||||||
|
- "<gradient:#e6c67a:#4cd964><bold>АРА, во всём виновата курица.</bold></gradient>"
|
||||||
|
- "<gradient:#4cd964:#e6c67a><bold>Мама твоя...</bold></gradient>"
|
@ -1,33 +1,22 @@
|
|||||||
# https://github.com/NEZNAMY/TAB/wiki/Feature-guide:-Header-&-Footer
|
# https://github.com/NEZNAMY/TAB/wiki/Feature-guide:-Header-&-Footer
|
||||||
header-footer:
|
header-footer:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
disable-condition: '%server%=limbo'
|
||||||
header:
|
header:
|
||||||
- "<#FFFFFF>&m </#FFFF00>"
|
- "<gradient:#4cd964:#e6c67a>&m </gradient>"
|
||||||
- "<gradient:#B7E4C7:#FFD8A8>Bebrashield:re</gradient>"
|
- "<gradient:#4cd964:#e6c67a><bold>BEBRASHIELD RELOAD</bold></gradient>"
|
||||||
- "<gradient:#B7E4C7:#FFD8A8>%server_name%</gradient>"
|
- "%animation:GachiWelcome%"
|
||||||
- ""
|
- ""
|
||||||
footer:
|
footer:
|
||||||
- ""
|
- ""
|
||||||
- ""
|
- ""
|
||||||
- "<gradient:#B7E4C7:#FFD8A8>TPS: %server_tps_1% | Ping: %ping% ms</gradient>"
|
- "<#e6c67a>TPS:<#4cd964> %server_tps_1%<dark_gray> | </dark_gray><#e6c67a>Ping:<#4cd964> %ping% ms"
|
||||||
- "<gradient:#FFD8A8:#B7E4C7> bebrashield.net </gradient>"
|
- "<#e6c67a>Онлайн: <#4cd964>%server_online%"
|
||||||
- "<#FFFF00>&m </#FFFFFF>"
|
- ""
|
||||||
|
- "<gradient:#4cd964:#e6c67a> bebrashield.net </gradient>"
|
||||||
|
- "<gradient:#e6c67a:#4cd964>&m </gradient>"
|
||||||
|
|
||||||
disable-condition: '%world%=disabledworld'
|
|
||||||
per-world:
|
|
||||||
world1:
|
|
||||||
header:
|
|
||||||
- "an example of world with custom"
|
|
||||||
footer:
|
|
||||||
- "header/footer and prefix/suffix"
|
|
||||||
world2;world3:
|
|
||||||
header:
|
|
||||||
- "This is a shared header for"
|
|
||||||
- "world2 and world3"
|
|
||||||
per-server:
|
|
||||||
server1:
|
|
||||||
header:
|
|
||||||
- "an example of server with custom header"
|
|
||||||
|
|
||||||
# https://github.com/NEZNAMY/TAB/wiki/Feature-guide:-Tablist-name-formatting
|
# https://github.com/NEZNAMY/TAB/wiki/Feature-guide:-Tablist-name-formatting
|
||||||
tablist-name-formatting:
|
tablist-name-formatting:
|
||||||
@ -36,12 +25,12 @@ tablist-name-formatting:
|
|||||||
|
|
||||||
# https://github.com/NEZNAMY/TAB/wiki/Feature-guide:-Nametags
|
# https://github.com/NEZNAMY/TAB/wiki/Feature-guide:-Nametags
|
||||||
scoreboard-teams:
|
scoreboard-teams:
|
||||||
enabled: true
|
enabled: false
|
||||||
enable-collision: true
|
enable-collision: false
|
||||||
invisible-nametags: false
|
invisible-nametags: false
|
||||||
# https://github.com/NEZNAMY/TAB/wiki/Feature-guide:-Sorting-players-in-tablist
|
# https://github.com/NEZNAMY/TAB/wiki/Feature-guide:-Sorting-players-in-tablist
|
||||||
sorting-types:
|
sorting-types:
|
||||||
- "GROUPS:owner,admin,mod,helper,builder,vip,default"
|
- "GROUPS:owner,clans,admin,mod,helper,builder,vip,default"
|
||||||
- "PLACEHOLDER_A_TO_Z:%player%"
|
- "PLACEHOLDER_A_TO_Z:%player%"
|
||||||
case-sensitive-sorting: true
|
case-sensitive-sorting: true
|
||||||
can-see-friendly-invisibles: false
|
can-see-friendly-invisibles: false
|
||||||
@ -95,34 +84,10 @@ scoreboard:
|
|||||||
scoreboard-1.20.3+:
|
scoreboard-1.20.3+:
|
||||||
title: "<#E0B11E>MyServer</#FF0000>"
|
title: "<#E0B11E>MyServer</#FF0000>"
|
||||||
display-condition: "%player-version-id%>=765;%bedrock%=false" # Only display it to players using 1.20.3+ AND NOT bedrock edition
|
display-condition: "%player-version-id%>=765;%bedrock%=false" # Only display it to players using 1.20.3+ AND NOT bedrock edition
|
||||||
lines:
|
lines: []
|
||||||
- "&7%date%"
|
|
||||||
- "%animation:MyAnimation1%"
|
|
||||||
- "&6Online:"
|
|
||||||
- "* &eOnline&7:||%online%"
|
|
||||||
- "* &eCurrent World&7:||%worldonline%"
|
|
||||||
- "* &eStaff&7:||%staffonline%"
|
|
||||||
- ""
|
|
||||||
- "&6Personal Info:"
|
|
||||||
- "* &bRank&7:||%group%"
|
|
||||||
- "* &bPing&7:||%ping%&8ms"
|
|
||||||
- "* &bWorld&7:||%world%"
|
|
||||||
- "%animation:MyAnimation1%"
|
|
||||||
scoreboard:
|
scoreboard:
|
||||||
title: "<#E0B11E>MyServer</#FF0000>"
|
title: "<#E0B11E>MyServer</#FF0000>"
|
||||||
lines:
|
lines: []
|
||||||
- "&7%date%"
|
|
||||||
- "%animation:MyAnimation1%"
|
|
||||||
- "&6Online:"
|
|
||||||
- "* &eOnline&7: &f%online%"
|
|
||||||
- "* &eCurrent World&7: &f%worldonline%"
|
|
||||||
- "* &eStaff&7: &f%staffonline%"
|
|
||||||
- ""
|
|
||||||
- "&6Personal Info:"
|
|
||||||
- "* &bRank&7: &f%group%"
|
|
||||||
- "* &bPing&7: &f%ping%&8ms"
|
|
||||||
- "* &bWorld&7: &f%world%"
|
|
||||||
- "%animation:MyAnimation1%"
|
|
||||||
|
|
||||||
# https://github.com/NEZNAMY/TAB/wiki/Feature-guide:-Layout
|
# https://github.com/NEZNAMY/TAB/wiki/Feature-guide:-Layout
|
||||||
layout:
|
layout:
|
||||||
@ -134,24 +99,7 @@ layout:
|
|||||||
empty-slot-ping-value: 1000
|
empty-slot-ping-value: 1000
|
||||||
layouts:
|
layouts:
|
||||||
default:
|
default:
|
||||||
fixed-slots:
|
fixed-slots: []
|
||||||
- '1|&3Website&f:'
|
|
||||||
- '2|&bmyserver.net'
|
|
||||||
- '3|&8&m '
|
|
||||||
- '4|&3Name&f:'
|
|
||||||
- '5|&b%player%'
|
|
||||||
- '7|&3Rank&f:'
|
|
||||||
- '8|Rank: %group%'
|
|
||||||
- '10|&3World&f:'
|
|
||||||
- '11|&b%world%'
|
|
||||||
- '13|&3Time&f:'
|
|
||||||
- '14|&b%time%'
|
|
||||||
- '21|&3Teamspeak&f:'
|
|
||||||
- '22|&bts.myserver.net'
|
|
||||||
- '23|&8&m '
|
|
||||||
- '41|&3Store&f:'
|
|
||||||
- '42|&bshop.myserver.net'
|
|
||||||
- '43|&8&m '
|
|
||||||
groups:
|
groups:
|
||||||
staff:
|
staff:
|
||||||
condition: permission:tab.staff
|
condition: permission:tab.staff
|
||||||
@ -275,16 +223,11 @@ global-playerlist:
|
|||||||
display-vanished-players-as-spectators: true
|
display-vanished-players-as-spectators: true
|
||||||
isolate-unlisted-servers: false
|
isolate-unlisted-servers: false
|
||||||
update-latency: false
|
update-latency: false
|
||||||
spy-servers:
|
spy-servers: []
|
||||||
- spyserver1
|
|
||||||
- spyserver2
|
|
||||||
server-groups:
|
server-groups:
|
||||||
lobbies:
|
servers:
|
||||||
- lobby1
|
- lobby
|
||||||
- lobby2
|
- survival
|
||||||
group2:
|
|
||||||
- server1
|
|
||||||
- server2
|
|
||||||
|
|
||||||
# Take permissions and groups from backend server instead of proxy
|
# Take permissions and groups from backend server instead of proxy
|
||||||
use-bukkit-permissions-manager: false
|
use-bukkit-permissions-manager: false
|
||||||
@ -292,4 +235,4 @@ use-bukkit-permissions-manager: false
|
|||||||
# Sometimes server might be using offline uuids in tablist instead of online, such as disabling waterfall's tablist rewrite option
|
# Sometimes server might be using offline uuids in tablist instead of online, such as disabling waterfall's tablist rewrite option
|
||||||
# If you experience tablist formatting not working, toggle this option (set it to opposite value)
|
# If you experience tablist formatting not working, toggle this option (set it to opposite value)
|
||||||
# Only affects proxies with online mode enabled
|
# Only affects proxies with online mode enabled
|
||||||
use-online-uuid-in-tablist: true
|
use-online-uuid-in-tablist: false
|
6
src/plugins/tab/groups.yml
Normal file
6
src/plugins/tab/groups.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
_DEFAULT_:
|
||||||
|
tabprefix: "%luckperms-prefix%"
|
||||||
|
tagprefix: "%luckperms-prefix%"
|
||||||
|
customtabname: "%player%"
|
||||||
|
tabsuffix: "%luckperms-suffix%"
|
||||||
|
tagsuffix: "%luckperms-suffix%"
|
BIN
src/plugins/unifiedmetrics-platform-velocity-0.3.8.jar
(Stored with Git LFS)
Normal file
BIN
src/plugins/unifiedmetrics-platform-velocity-0.3.8.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
14
src/plugins/unifiedmetrics/config.yml
Normal file
14
src/plugins/unifiedmetrics/config.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
server:
|
||||||
|
name: "proxy"
|
||||||
|
metrics:
|
||||||
|
enabled: true
|
||||||
|
driver: "prometheus"
|
||||||
|
collectors:
|
||||||
|
systemGc: true
|
||||||
|
systemMemory: true
|
||||||
|
systemProcess: true
|
||||||
|
systemThread: true
|
||||||
|
server: true
|
||||||
|
world: true
|
||||||
|
tick: true
|
||||||
|
events: true
|
16
src/plugins/unifiedmetrics/driver/prometheus.yml
Normal file
16
src/plugins/unifiedmetrics/driver/prometheus.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
mode: "HTTP"
|
||||||
|
http:
|
||||||
|
host: "0.0.0.0"
|
||||||
|
port: 9100
|
||||||
|
authentication:
|
||||||
|
scheme: "NONE"
|
||||||
|
username: "username"
|
||||||
|
password: "password"
|
||||||
|
pushGateway:
|
||||||
|
job: "unifiedmetrics"
|
||||||
|
url: "http://pushgateway:9091"
|
||||||
|
authentication:
|
||||||
|
scheme: "NONE"
|
||||||
|
username: "username"
|
||||||
|
password: "password"
|
||||||
|
interval: 10
|
BIN
src/plugins/velocity-player-limit-1.0.0.jar
(Stored with Git LFS)
Normal file
BIN
src/plugins/velocity-player-limit-1.0.0.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
9
src/plugins/velocity-player-limit/config.yml
Normal file
9
src/plugins/velocity-player-limit/config.yml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# Configuration for Velocity Player Limit v1.0.0 by hpfxd.com
|
||||||
|
# https://github.com/hpfxd/VelocityPlayerLimit
|
||||||
|
#
|
||||||
|
# Permission to bypass limit: "velocityplayerlimit.bypass"
|
||||||
|
# Permission to use /playerlimit: "velocityplayerlimit.command"
|
||||||
|
|
||||||
|
show-in-player-list: true
|
||||||
|
player-limit: 30
|
||||||
|
kick-message: '&cСервер полон.'
|
@ -93,7 +93,7 @@ map-1_16-world-names:
|
|||||||
#
|
#
|
||||||
# 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!
|
||||||
# If this setting is active, the main hand is used instead of the off-hand to trigger the blocking of the player.
|
# If this setting is active, the main hand is used instead of the off-hand to trigger the blocking of the player.
|
||||||
# With the main hand, the blocking starts way faster.
|
# With the main hand, the blocking starts way faster.
|
||||||
|
Loading…
Reference in New Issue
Block a user