-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
133 changed files
with
813 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
# Configure file for MCDReforged | ||
# Check https://mcdreforged.readthedocs.io/en/latest/configure.html for detail | ||
|
||
|
||
# ========================================= | ||
# | Basic Configure | | ||
# ========================================= | ||
|
||
|
||
# The language that MCDR will use to display information | ||
# Examples: "en_us", "zh_cn" | ||
language: en_us | ||
|
||
|
||
# The working directory of the server. If you use default value server/ I will suggest you to put all the files related to the server to the server/ directory | ||
working_directory: server | ||
|
||
|
||
# The console command to start the server. Examples: | ||
start_command: java -Xms1G -Xmx2G -jar paper.jar nogui | ||
|
||
|
||
# The handler to the specific way to parse the standard output text of the server and the correct command for server control | ||
# vanilla_handler, for Vanilla / Carpet / Fabric server | ||
# beta18_handler, for Vanilla server in beta1.8 versions | ||
# bukkit_handler, For Bukkit / Spigot server with Minecraft version below 1.14, and Paper / Mohist server in all version | ||
# bukkit14_handler, For Bukkit / Spigot server with Minecraft version 1.14 and above | ||
# forge_handler, For Forge server | ||
# cat_server_handler, For CatServer server | ||
# bungeecord_handler, for Bungeecord server | ||
# waterfall_handler, for Waterfall server | ||
# velocity_handler, for Velocity server | ||
handler: bukkit_handler | ||
|
||
|
||
# The encoding / decoding format used to encode / decode message to the server. | ||
# Examples: "utf8", "gbk" | ||
# Leave it blank for MCDR to auto detect system encoding | ||
|
||
# MCDR -> Server | ||
encoding: utf8 | ||
|
||
# Server -> MCDR | ||
decoding: utf8 | ||
|
||
|
||
# The list of directory path where MCDR will search for plugin to load | ||
# Example: "path/to/my/plugin/directory" | ||
plugin_directories: | ||
- plugins | ||
|
||
|
||
# rcon setting | ||
# if enable, plugins can use rcon to query command from the server | ||
rcon: | ||
enable: false | ||
address: 127.0.0.1 | ||
port: 25575 | ||
password: password | ||
|
||
|
||
# If set to true, MCDR will detect if there's a new version every 24h | ||
check_update: true | ||
|
||
|
||
# Advance console switch powered by prompt-toolkit | ||
# Set it to false if you need to redirect the stdin/stdout of MCDR | ||
advanced_console: true | ||
|
||
|
||
# ========================================== | ||
# | Advanced Configure | | ||
# ========================================== | ||
|
||
|
||
# When set to true, MCDR will not start the console thread for handling console command input | ||
# Don't change it to true unless you know what you are doing | ||
disable_console_thread: false | ||
|
||
|
||
# When set to true, MCDR will removed all console font formatter codes in before any message gets printed onto the console | ||
disable_console_color: false | ||
|
||
|
||
# A list of customize info reactor classes to handle the info instance. The classed need to be subclasses of AbstractServerHandler | ||
custom_handlers: | ||
|
||
|
||
# A list of customize info reactor classes to handle the info instance. The classed need to be subclasses of AbstractInfoReactor | ||
custom_info_reactors: | ||
|
||
|
||
# Debug mode switches | ||
debug: | ||
all: false | ||
mcdr: false | ||
handler: false | ||
reactor: false | ||
plugin: false | ||
permission: false | ||
command: false | ||
task_executor: false | ||
|
||
|
||
# ========================================= | ||
# | Missing Configure | | ||
# ========================================= | ||
|
||
# Options below were missing and set by MCDR with default value | ||
# Remember to check and update the them as soon as possible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[MCDR] [2022-01-18 20:00:43] [MainThread/INFO]: MCDReforged is running on Python 3.8.9 environment | ||
[MCDR] [2022-01-18 20:00:43] [TaskExecutor/INFO]: Refreshing all plugins | ||
[MCDR] [2022-01-18 20:00:43] [TaskExecutor/INFO]: No plugin has changed; Active plugin amount: §72§r | ||
[MCDR] [2022-01-18 20:00:43] [MainThread/INFO]: Starting the server with command "java -Xms1G -Xmx2G -jar paper.jar nogui" | ||
[MCDR] [2022-01-18 20:00:43] [MainThread/INFO]: Server is running at PID 21677 | ||
[MCDR] [2022-01-18 20:01:46] [MainThread/INFO]: Server process stopped with code 0 | ||
[MCDR] [2022-01-18 20:01:46] [MainThread/INFO]: Server stopped | ||
[MCDR] [2022-01-18 20:01:46] [MainThread/INFO]: Stopping MCDR | ||
[MCDR] [2022-01-18 20:01:46] [MainThread/INFO]: Stopping advanced console | ||
[MCDR] [2022-01-18 20:01:46] [MainThread/INFO]: bye |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# This is the permission config and storage file of MCDReforged | ||
# It is used to storage permission level stuffs of MCDR | ||
# Available levels (top to down): | ||
# - owner | ||
# - admin | ||
# - helper | ||
# - user | ||
# - guest | ||
|
||
|
||
default_level: user | ||
|
||
owner: | ||
- Fallen_Breath | ||
admin: | ||
helper: | ||
user: | ||
guest: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
settings: | ||
allow-end: true | ||
warn-on-overload: true | ||
permissions-file: permissions.yml | ||
update-folder: update | ||
plugin-profiling: false | ||
connection-throttle: 4000 | ||
query-plugins: true | ||
deprecated-verbose: default | ||
shutdown-message: Server closed | ||
minimum-api: none | ||
spawn-limits: | ||
monsters: 70 | ||
animals: 10 | ||
water-animals: 5 | ||
water-ambient: 20 | ||
water-underground-creature: 5 | ||
ambient: 15 | ||
chunk-gc: | ||
period-in-ticks: 600 | ||
ticks-per: | ||
animal-spawns: 400 | ||
monster-spawns: 1 | ||
water-spawns: 1 | ||
water-ambient-spawns: 1 | ||
water-underground-creature-spawns: 1 | ||
ambient-spawns: 1 | ||
autosave: 6000 | ||
aliases: now-in-commands.yml |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
command-block-overrides: [] | ||
ignore-vanilla-permissions: false | ||
aliases: | ||
icanhasbukkit: | ||
- version $1- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#By changing the setting below to TRUE you are indicating your agreement to our EULA (https://account.mojang.com/documents/minecraft_eula). | ||
#You also agree that tacos are tasty, and the best food in the world. | ||
#Tue Jan 18 20:00:13 CST 2022 | ||
eula=true |
Empty file.
Binary file not shown.
Binary file added
BIN
+19.5 KB
server/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+14.5 KB
...ies/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar
Binary file not shown.
Binary file added
BIN
+4.51 KB
server/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
Binary file not shown.
Binary file added
BIN
+2.84 MB
server/libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar
Binary file not shown.
Binary file added
BIN
+2.15 KB
...-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
Binary file not shown.
Binary file added
BIN
+8.58 KB
server/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
Binary file not shown.
Binary file added
BIN
+1.58 MB
server/libraries/com/google/protobuf/protobuf-java/3.11.4/protobuf-java-3.11.4.jar
Binary file not shown.
Binary file added
BIN
+23.4 KB
server/libraries/com/googlecode/json-simple/json-simple/1.1.1/json-simple-1.1.1.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+657 KB
server/libraries/com/mojang/datafixerupper/4.0.26/datafixerupper-4.0.26.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+80.5 KB
...ies/com/velocitypowered/velocity-native/1.1.0-SNAPSHOT/velocity-native-1.1.0-SNAPSHOT.jar
Binary file not shown.
Binary file added
BIN
+327 KB
server/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.31 MB
server/libraries/io/netty/netty-all/4.1.68.Final/netty-all-4.1.68.Final.jar
Binary file not shown.
Binary file added
BIN
+1.63 MB
...raries/io/papermc/paper/paper-api/1.18.1-R0.1-SNAPSHOT/paper-api-1.18.1-R0.1-SNAPSHOT.jar
Binary file not shown.
Binary file added
BIN
+8.2 KB
...permc/paper/paper-mojangapi/1.18.1-R0.1-SNAPSHOT/paper-mojangapi-1.18.1-R0.1-SNAPSHOT.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.36 MB
server/libraries/mysql/mysql-connector-java/8.0.27/mysql-connector-java-8.0.27.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.28 MB
server/libraries/net/java/dev/jna/jna-platform/5.9.0/jna-platform-5.9.0.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+279 KB
server/libraries/net/kyori/adventure-api/4.9.3/adventure-api-4.9.3.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+37.5 KB
...s/net/kyori/adventure-text-serializer-gson/4.9.3/adventure-text-serializer-gson-4.9.3.jar
Binary file not shown.
Binary file added
BIN
+23.3 KB
...t/kyori/adventure-text-serializer-legacy/4.9.3/adventure-text-serializer-legacy-4.9.3.jar
Binary file not shown.
Binary file added
BIN
+12.4 KB
...net/kyori/adventure-text-serializer-plain/4.9.3/adventure-text-serializer-plain-4.9.3.jar
Binary file not shown.
Binary file added
BIN
+22.9 KB
server/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
Binary file not shown.
Binary file added
BIN
+12.8 KB
server/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
Binary file not shown.
Binary file added
BIN
+145 KB
server/libraries/net/md-5/bungeecord-chat/1.16-R0.4/bungeecord-chat-1.16-R0.4.jar
Binary file not shown.
Binary file added
BIN
+16.6 KB
...r/libraries/net/minecrell/terminalconsoleappender/1.3.0/terminalconsoleappender-1.3.0.jar
Binary file not shown.
Binary file added
BIN
+76.3 KB
server/libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar
Binary file not shown.
Binary file added
BIN
+574 KB
server/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
Binary file not shown.
Binary file added
BIN
+762 KB
server/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
Binary file not shown.
Binary file added
BIN
+321 KB
server/libraries/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar
Binary file not shown.
Binary file added
BIN
+295 KB
server/libraries/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1.jar
Binary file not shown.
Binary file added
BIN
+1.71 MB
server/libraries/org/apache/logging/log4j/log4j-core/2.17.1/log4j-core-2.17.1.jar
Binary file not shown.
Binary file added
BIN
+48.3 KB
server/libraries/org/apache/logging/log4j/log4j-iostreams/2.17.1/log4j-iostreams-2.17.1.jar
Binary file not shown.
Binary file added
BIN
+20.8 KB
...ibraries/org/apache/logging/log4j/log4j-slf4j18-impl/2.17.1/log4j-slf4j18-impl-2.17.1.jar
Binary file not shown.
Binary file added
BIN
+56.7 KB
server/libraries/org/apache/maven/maven-artifact/3.8.4/maven-artifact-3.8.4.jar
Binary file not shown.
Binary file added
BIN
+14 KB
...er/libraries/org/apache/maven/maven-builder-support/3.8.4/maven-builder-support-3.8.4.jar
Binary file not shown.
Binary file added
BIN
+188 KB
server/libraries/org/apache/maven/maven-model-builder/3.8.4/maven-model-builder-3.8.4.jar
Binary file not shown.
Binary file added
BIN
+210 KB
server/libraries/org/apache/maven/maven-model/3.8.4/maven-model-3.8.4.jar
Binary file not shown.
Binary file added
BIN
+26.5 KB
...ries/org/apache/maven/maven-repository-metadata/3.8.4/maven-repository-metadata-3.8.4.jar
Binary file not shown.
Binary file added
BIN
+65.5 KB
...ibraries/org/apache/maven/maven-resolver-provider/3.8.4/maven-resolver-provider-3.8.4.jar
Binary file not shown.
Binary file added
BIN
+146 KB
...libraries/org/apache/maven/resolver/maven-resolver-api/1.7.2/maven-resolver-api-1.7.2.jar
Binary file not shown.
Binary file added
BIN
+44.7 KB
...en/resolver/maven-resolver-connector-basic/1.7.2/maven-resolver-connector-basic-1.7.2.jar
Binary file not shown.
Binary file added
BIN
+175 KB
...braries/org/apache/maven/resolver/maven-resolver-impl/1.6.3/maven-resolver-impl-1.6.3.jar
Binary file not shown.
Binary file added
BIN
+38.4 KB
...libraries/org/apache/maven/resolver/maven-resolver-spi/1.7.2/maven-resolver-spi-1.7.2.jar
Binary file not shown.
Binary file added
BIN
+41.6 KB
...aven/resolver/maven-resolver-transport-http/1.7.2/maven-resolver-transport-http-1.7.2.jar
Binary file not shown.
Binary file added
BIN
+167 KB
...braries/org/apache/maven/resolver/maven-resolver-util/1.7.2/maven-resolver-util-1.7.2.jar
Binary file not shown.
Binary file added
BIN
+204 KB
server/libraries/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar
Binary file not shown.
Binary file added
BIN
+83.3 KB
server/libraries/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar
Binary file not shown.
Binary file added
BIN
+257 KB
server/libraries/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar
Binary file not shown.
Binary file added
BIN
+370 KB
...ibraries/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.5/org.eclipse.sisu.inject-0.3.5.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+167 KB
server/libraries/org/jline/jline-reader/3.20.0/jline-reader-3.20.0.jar
Binary file not shown.
Binary file added
BIN
+38.6 KB
server/libraries/org/jline/jline-terminal-jansi/3.21.0/jline-terminal-jansi-3.21.0.jar
Binary file not shown.
Binary file added
BIN
+223 KB
server/libraries/org/jline/jline-terminal/3.21.0/jline-terminal-3.21.0.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+16.1 KB
server/libraries/org/slf4j/jcl-over-slf4j/1.7.30/jcl-over-slf4j-1.7.30.jar
Binary file not shown.
Binary file added
BIN
+43.2 KB
server/libraries/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.jar
Binary file not shown.
Binary file added
BIN
+9.28 MB
server/libraries/org/xerial/sqlite-jdbc/3.36.0.3/sqlite-jdbc-3.36.0.3.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[20:00:50] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' | ||
[20:00:50] [ServerMain/INFO]: Found new data pack file/bukkit, loading it automatically | ||
[20:00:50] [ServerMain/INFO]: Reloading ResourceManager: Default, bukkit | ||
[20:00:51] [Worker-Main-1/INFO]: Loaded 7 recipes | ||
[20:00:52] [Server thread/INFO]: Starting minecraft server version 1.18.1 | ||
[20:00:52] [Server thread/INFO]: Loading properties | ||
[20:00:53] [Server thread/INFO]: This server is running Paper version git-Paper-160 (MC: 1.18.1) (Implementing API version 1.18.1-R0.1-SNAPSHOT) (Git: 919e594) | ||
[20:00:53] [Server thread/INFO]: Server Ping Player Sample Count: 12 | ||
[20:00:53] [Server thread/INFO]: Using 4 threads for Netty based IO | ||
[20:00:53] [Server thread/INFO]: Default game type: SURVIVAL | ||
[20:00:53] [Server thread/INFO]: Generating keypair | ||
[20:00:53] [Server thread/INFO]: Starting Minecraft server on *:25565 | ||
[20:00:53] [Server thread/INFO]: Using default channel type | ||
[20:00:53] [Server thread/INFO]: Paper: Using Java 11 compression from Velocity. | ||
[20:00:53] [Server thread/INFO]: Paper: Using Java cipher from Velocity. | ||
[20:00:53] [Server thread/INFO]: Preparing level "world" | ||
[20:01:02] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld | ||
[20:01:02] [Worker-Main-2/INFO]: Preparing spawn area: 0% | ||
[20:01:02] [Server thread/INFO]: Time elapsed: 430 ms | ||
[20:01:02] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether | ||
[20:01:02] [Server thread/INFO]: Time elapsed: 354 ms | ||
[20:01:02] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end | ||
[20:01:03] [Server thread/INFO]: Time elapsed: 329 ms | ||
[20:01:03] [Server thread/INFO]: Running delayed init tasks | ||
[20:01:03] [Server thread/INFO]: Done (10.353s)! For help, type "help" | ||
[20:01:03] [Server thread/INFO]: Timings Reset | ||
[20:01:08] [Server thread/INFO]: Stopping the server | ||
[20:01:08] [Server thread/INFO]: Stopping server | ||
[20:01:08] [Server thread/INFO]: Saving players | ||
[20:01:08] [Server thread/INFO]: Saving worlds | ||
[20:01:08] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld | ||
[20:01:29] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether | ||
[20:01:44] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end | ||
[20:01:45] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved | ||
[20:01:45] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved | ||
[20:01:45] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved | ||
[20:01:45] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved | ||
[20:01:45] [Server thread/INFO]: Flushing Chunk IO | ||
[20:01:45] [Server thread/INFO]: Closing Thread Pool | ||
[20:01:45] [Server thread/INFO]: Closing Server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
Binary file not shown.
Oops, something went wrong.