mirror of
https://github.com/kaboomserver/server.git
synced 2024-12-22 07:35:08 +00:00
Push files
Former-commit-id: a26b5f720736c5174decddc71efd4d16e1588e59
This commit is contained in:
parent
91d1a64789
commit
d6f73a9621
57 changed files with 1634 additions and 138 deletions
Binary file not shown.
44
.bin/java/conf/security/java.policy
Normal file
44
.bin/java/conf/security/java.policy
Normal file
|
@ -0,0 +1,44 @@
|
|||
//
|
||||
// This system policy file grants a set of default permissions to all domains
|
||||
// and can be configured to grant additional permissions to modules and other
|
||||
// code sources. The code source URL scheme for modules linked into a
|
||||
// run-time image is "jrt".
|
||||
//
|
||||
// For example, to grant permission to read the "foo" property to the module
|
||||
// "com.greetings", the grant entry is:
|
||||
//
|
||||
// grant codeBase "jrt:/com.greetings" {
|
||||
// permission java.util.PropertyPermission "foo", "read";
|
||||
// };
|
||||
//
|
||||
|
||||
// default permissions granted to all domains
|
||||
grant {
|
||||
// allows anyone to listen on dynamic ports
|
||||
permission java.net.SocketPermission "localhost:0", "listen";
|
||||
|
||||
// "standard" properies that can be read by anyone
|
||||
permission java.util.PropertyPermission "java.version", "read";
|
||||
permission java.util.PropertyPermission "java.vendor", "read";
|
||||
permission java.util.PropertyPermission "java.vendor.url", "read";
|
||||
permission java.util.PropertyPermission "java.class.version", "read";
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
permission java.util.PropertyPermission "os.version", "read";
|
||||
permission java.util.PropertyPermission "os.arch", "read";
|
||||
permission java.util.PropertyPermission "file.separator", "read";
|
||||
permission java.util.PropertyPermission "path.separator", "read";
|
||||
permission java.util.PropertyPermission "line.separator", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"java.specification.version", "read";
|
||||
permission java.util.PropertyPermission "java.specification.vendor", "read";
|
||||
permission java.util.PropertyPermission "java.specification.name", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"java.vm.specification.version", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"java.vm.specification.vendor", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"java.vm.specification.name", "read";
|
||||
permission java.util.PropertyPermission "java.vm.version", "read";
|
||||
permission java.util.PropertyPermission "java.vm.vendor", "read";
|
||||
permission java.util.PropertyPermission "java.vm.name", "read";
|
||||
};
|
1059
.bin/java/conf/security/java.security
Normal file
1059
.bin/java/conf/security/java.security
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,6 @@
|
|||
// Default US Export policy file.
|
||||
|
||||
grant {
|
||||
// There is no restriction to any algorithms.
|
||||
permission javax.crypto.CryptoAllPermission;
|
||||
};
|
14
.bin/java/conf/security/policy/limited/default_local.policy
Normal file
14
.bin/java/conf/security/policy/limited/default_local.policy
Normal file
|
@ -0,0 +1,14 @@
|
|||
// Some countries have import limits on crypto strength. This policy file
|
||||
// is worldwide importable.
|
||||
|
||||
grant {
|
||||
permission javax.crypto.CryptoPermission "DES", 64;
|
||||
permission javax.crypto.CryptoPermission "DESede", *;
|
||||
permission javax.crypto.CryptoPermission "RC2", 128,
|
||||
"javax.crypto.spec.RC2ParameterSpec", 128;
|
||||
permission javax.crypto.CryptoPermission "RC4", 128;
|
||||
permission javax.crypto.CryptoPermission "RC5", 128,
|
||||
"javax.crypto.spec.RC5ParameterSpec", *, 12, *;
|
||||
permission javax.crypto.CryptoPermission "RSA", *;
|
||||
permission javax.crypto.CryptoPermission *, 128;
|
||||
};
|
13
.bin/java/conf/security/policy/limited/exempt_local.policy
Normal file
13
.bin/java/conf/security/policy/limited/exempt_local.policy
Normal file
|
@ -0,0 +1,13 @@
|
|||
// Some countries have import limits on crypto strength, but may allow for
|
||||
// these exemptions if the exemption mechanism is used.
|
||||
|
||||
grant {
|
||||
// There is no restriction to any algorithms if KeyRecovery is enforced.
|
||||
permission javax.crypto.CryptoPermission *, "KeyRecovery";
|
||||
|
||||
// There is no restriction to any algorithms if KeyEscrow is enforced.
|
||||
permission javax.crypto.CryptoPermission *, "KeyEscrow";
|
||||
|
||||
// There is no restriction to any algorithms if KeyWeakening is enforced.
|
||||
permission javax.crypto.CryptoPermission *, "KeyWeakening";
|
||||
};
|
|
@ -0,0 +1,6 @@
|
|||
// Default US Export policy file.
|
||||
|
||||
grant {
|
||||
// There is no restriction to any algorithms.
|
||||
permission javax.crypto.CryptoAllPermission;
|
||||
};
|
|
@ -0,0 +1,6 @@
|
|||
// Country-specific policy file for countries with no limits on crypto strength.
|
||||
|
||||
grant {
|
||||
// There is no restriction to any algorithms.
|
||||
permission javax.crypto.CryptoAllPermission;
|
||||
};
|
Binary file not shown.
|
@ -1,34 +1,2 @@
|
|||
# Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License version 2 only, as
|
||||
# published by the Free Software Foundation. Oracle designates this
|
||||
# particular file as subject to the "Classpath" exception as provided
|
||||
# by Oracle in the LICENSE file that accompanied this code.
|
||||
#
|
||||
# This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
# version 2 for more details (a copy is included in the LICENSE file that
|
||||
# accompanied this code).
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License version
|
||||
# 2 along with this work; if not, write to the Free Software Foundation,
|
||||
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
# or visit www.oracle.com if you need additional information or have any
|
||||
# questions.
|
||||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
# "-XXaltjvm=<jvm_dir>" option, but that too is unsupported
|
||||
# and may not be available in a future release.
|
||||
#
|
||||
-server KNOWN
|
||||
-client IGNORE
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.bin/java/lib/libsunec.so
Normal file
BIN
.bin/java/lib/libsunec.so
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.bin/java/lib/minimal/libjvm.so
Normal file
BIN
.bin/java/lib/minimal/libjvm.so
Normal file
Binary file not shown.
|
@ -1 +1 @@
|
|||
ac2e8e2f21c042b889fc47fe6a91c8e3d0d4be0f
|
||||
2cf527b958a7a7ef9aef6cd31f39e553f08f881e
|
20
.bin/java/lib/security/blacklisted.certs
Normal file
20
.bin/java/lib/security/blacklisted.certs
Normal file
|
@ -0,0 +1,20 @@
|
|||
Algorithm=SHA-256
|
||||
14E6D2764A4B06701C6CBC376A253775F79C782FBCB6C0EE6F99DE4BA1024ADD
|
||||
31C8FD37DB9B56E708B03D1F01848B068C6DA66F36FB5D82C008C6040FA3E133
|
||||
3946901F46B0071E90D78279E82FABABCA177231A704BE72C5B0E8918566EA66
|
||||
450F1B421BB05C8609854884559C323319619E8B06B001EA2DCBB74A23AA3BE2
|
||||
4CBBF8256BC9888A8007B2F386940A2E394378B0D903CBB3863C5A6394B889CE
|
||||
4FEE0163686ECBD65DB968E7494F55D84B25486D438E9DE558D629D28CD4D176
|
||||
5E83124D68D24E8E177E306DF643D5EA99C5A94D6FC34B072F7544A1CABB7C7B
|
||||
76A45A496031E4DD2D7ED23E8F6FF97DBDEA980BAAC8B0BA94D7EDB551348645
|
||||
8A1BD21661C60015065212CC98B1ABB50DFD14C872A208E66BAE890F25C448AF
|
||||
9ED8F9B0E8E42A1656B8E1DD18F42BA42DC06FE52686173BA2FC70E756F207DC
|
||||
A686FEE577C88AB664D0787ECDFFF035F4806F3DE418DC9E4D516324FFF02083
|
||||
B8686723E415534BC0DBD16326F9486F85B0B0799BF6639334E61DAAE67F36CD
|
||||
D24566BF315F4E597D6E381C87119FB4198F5E9E2607F5F4AB362EF7E2E7672F
|
||||
D3A936E1A7775A45217C8296A1F22AC5631DCDEC45594099E78EEEBBEDCBA967
|
||||
DF21016B00FC54F9FE3BC8B039911BB216E9162FAD2FD14D990AB96E951B49BE
|
||||
EC30C9C3065A06BB07DC5B1C6B497F370C1CA65C0F30C08E042BA6BCECC78F2C
|
||||
F5B6F88F75D391A4B1EB336F9E201239FB6B1377DB8CFA7B84736216E5AFFFD7
|
||||
FC02FD48DB92D4DCE6F11679D38354CF750CFC7F584A520EB90BDE80E241F2BD
|
||||
FDEDB5BDFCB67411513A61AEE5CB5B5D7C52AF06028EFC996CC1B05B1D6CEA2B
|
BIN
.bin/java/lib/security/cacerts
Normal file
BIN
.bin/java/lib/security/cacerts
Normal file
Binary file not shown.
211
.bin/java/lib/security/default.policy
Normal file
211
.bin/java/lib/security/default.policy
Normal file
|
@ -0,0 +1,211 @@
|
|||
//
|
||||
// Permissions required by modules stored in a run-time image and loaded
|
||||
// by the platform class loader.
|
||||
//
|
||||
// NOTE that this file is not intended to be modified. If additional
|
||||
// permissions need to be granted to the modules in this file, it is
|
||||
// recommended that they be configured in a separate policy file or
|
||||
// ${java.home}/conf/security/java.policy.
|
||||
//
|
||||
|
||||
|
||||
grant codeBase "jrt:/java.compiler" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
|
||||
grant codeBase "jrt:/java.net.http" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.net";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.net.util";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.net.www";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.jdk.internal.misc";
|
||||
permission java.net.SocketPermission "*","connect,resolve";
|
||||
permission java.net.URLPermission "http:*","*:*";
|
||||
permission java.net.URLPermission "https:*","*:*";
|
||||
permission java.net.URLPermission "ws:*","*:*";
|
||||
permission java.net.URLPermission "wss:*","*:*";
|
||||
permission java.net.URLPermission "socket:*","CONNECT"; // proxy
|
||||
// For request/response body processors, fromFile, asFile
|
||||
permission java.io.FilePermission "<<ALL FILES>>","read,write,delete";
|
||||
permission java.util.PropertyPermission "*","read";
|
||||
permission java.net.NetPermission "getProxySelector";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.scripting" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.security.jgss" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.smartcardio" {
|
||||
permission javax.smartcardio.CardPermission "*", "*";
|
||||
permission java.lang.RuntimePermission "loadLibrary.j2pcsc";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.jca";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.util";
|
||||
permission java.util.PropertyPermission
|
||||
"javax.smartcardio.TerminalFactory.DefaultType", "read";
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
permission java.util.PropertyPermission "os.arch", "read";
|
||||
permission java.util.PropertyPermission "sun.arch.data.model", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"sun.security.smartcardio.library", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"sun.security.smartcardio.t0GetResponse", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"sun.security.smartcardio.t1GetResponse", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"sun.security.smartcardio.t1StripLe", "read";
|
||||
// needed for looking up native PC/SC library
|
||||
permission java.io.FilePermission "<<ALL FILES>>","read";
|
||||
permission java.security.SecurityPermission "putProviderProperty.SunPCSC";
|
||||
permission java.security.SecurityPermission
|
||||
"clearProviderProperties.SunPCSC";
|
||||
permission java.security.SecurityPermission
|
||||
"removeProviderProperty.SunPCSC";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.sql" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.sql.rowset" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
|
||||
grant codeBase "jrt:/java.xml.crypto" {
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.util";
|
||||
permission java.util.PropertyPermission "*", "read";
|
||||
permission java.security.SecurityPermission "putProviderProperty.XMLDSig";
|
||||
permission java.security.SecurityPermission
|
||||
"clearProviderProperties.XMLDSig";
|
||||
permission java.security.SecurityPermission
|
||||
"removeProviderProperty.XMLDSig";
|
||||
permission java.security.SecurityPermission
|
||||
"com.sun.org.apache.xml.internal.security.register";
|
||||
permission java.security.SecurityPermission
|
||||
"getProperty.jdk.xml.dsig.secureValidationPolicy";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.com.sun.org.apache.xml.internal.*";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.com.sun.org.apache.xpath.internal";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.com.sun.org.apache.xpath.internal.*";
|
||||
};
|
||||
|
||||
|
||||
grant codeBase "jrt:/jdk.accessibility" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.awt";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.charsets" {
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
permission java.util.PropertyPermission "sun.nio.cs.map", "read";
|
||||
permission java.lang.RuntimePermission "charsetProvider";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.jdk.internal.misc";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.nio.cs";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.crypto.ec" {
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.*";
|
||||
permission java.lang.RuntimePermission "loadLibrary.sunec";
|
||||
permission java.security.SecurityPermission "putProviderProperty.SunEC";
|
||||
permission java.security.SecurityPermission "clearProviderProperties.SunEC";
|
||||
permission java.security.SecurityPermission "removeProviderProperty.SunEC";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.crypto.cryptoki" {
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.*";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.nio.ch";
|
||||
permission java.lang.RuntimePermission "loadLibrary.j2pkcs11";
|
||||
permission java.util.PropertyPermission "sun.security.pkcs11.allowSingleThreadedModules", "read";
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
permission java.util.PropertyPermission "os.arch", "read";
|
||||
permission java.util.PropertyPermission "jdk.crypto.KeyAgreement.legacyKDF", "read";
|
||||
permission java.security.SecurityPermission "putProviderProperty.*";
|
||||
permission java.security.SecurityPermission "clearProviderProperties.*";
|
||||
permission java.security.SecurityPermission "removeProviderProperty.*";
|
||||
permission java.security.SecurityPermission
|
||||
"getProperty.auth.login.defaultCallbackHandler";
|
||||
permission java.security.SecurityPermission "authProvider.*";
|
||||
// Needed for reading PKCS11 config file and NSS library check
|
||||
permission java.io.FilePermission "<<ALL FILES>>", "read";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.desktop" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.awt";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.dynalink" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.httpserver" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.internal.le" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.internal.vm.compiler" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.internal.vm.compiler.management" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.org.graalvm.compiler.hotspot";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.jdk.vm.ci.runtime";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.management.spi";
|
||||
permission java.lang.RuntimePermission "sun.management.spi.PlatformMBeanProvider.subclass";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.jsobject" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.localedata" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.text.*";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.util.*";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.naming.dns" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.scripting.nashorn" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.scripting.nashorn.shell" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.security.auth" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.security.jgss" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.zipfs" {
|
||||
permission java.io.FilePermission "<<ALL FILES>>", "read,write,delete";
|
||||
permission java.lang.RuntimePermission "fileSystemProvider";
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
};
|
||||
|
||||
// permissions needed by applications using java.desktop module
|
||||
grant {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.beans";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.beans.*";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.java.swing.plaf.*";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.apple.*";
|
||||
};
|
BIN
.bin/java/lib/security/public_suffix_list.dat
Normal file
BIN
.bin/java/lib/security/public_suffix_list.dat
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.bin/tmux
BIN
.bin/tmux
Binary file not shown.
10
bukkit.yml
10
bukkit.yml
|
@ -1,15 +1,15 @@
|
|||
# This is the main configuration file for Bukkit.
|
||||
# As you can see, there's actually not that much to configure without any plugins.
|
||||
# For a reference for any variable inside this file, check out the Bukkit Wiki at
|
||||
# http://wiki.bukkit.org/Bukkit.yml
|
||||
# https://www.spigotmc.org/go/bukkit-yml
|
||||
#
|
||||
# If you need help on this file, feel free to join us on irc or leave a message
|
||||
# on the forums asking for advice.
|
||||
#
|
||||
# IRC: #spigot @ irc.spi.gt
|
||||
# (If this means nothing to you, just go to http://www.spigotmc.org/pages/irc/ )
|
||||
# Forums: http://www.spigotmc.org/
|
||||
# Bug tracker: http://www.spigotmc.org/go/bugs
|
||||
# (If this means nothing to you, just go to https://www.spigotmc.org/go/irc )
|
||||
# Forums: https://www.spigotmc.org/
|
||||
# Bug tracker: https://www.spigotmc.org/go/bugs
|
||||
|
||||
|
||||
settings:
|
||||
|
@ -34,4 +34,4 @@ ticks-per:
|
|||
animal-spawns: 400
|
||||
monster-spawns: 100
|
||||
autosave: 6000
|
||||
aliases: now-in-commands.yml
|
||||
aliases: now-in-commands.yml
|
||||
|
|
15
commands.yml
15
commands.yml
|
@ -1,18 +1,20 @@
|
|||
# This is the commands configuration file for Bukkit.
|
||||
# For documentation on how to make use of this file, check out the Bukkit Wiki at
|
||||
# http://wiki.bukkit.org/Commands.yml
|
||||
# https://www.spigotmc.org/go/commands-yml
|
||||
#
|
||||
# If you need help on this file, feel free to join us on irc or leave a message
|
||||
# on the forums asking for advice.
|
||||
#
|
||||
# IRC: #spigot @ irc.spi.gt
|
||||
# (If this means nothing to you, just go to http://www.spigotmc.org/pages/irc/ )
|
||||
# Forums: http://www.spigotmc.org/
|
||||
# Bug tracker: http://www.spigotmc.org/go/bugs
|
||||
# (If this means nothing to you, just go to https://www.spigotmc.org/go/irc )
|
||||
# Forums: https://www.spigotmc.org/
|
||||
# Bug tracker: https://www.spigotmc.org/go/bugs
|
||||
|
||||
command-block-overrides: []
|
||||
unrestricted-advancements: false
|
||||
ignore-vanilla-permissions: false
|
||||
aliases:
|
||||
icanhasbukkit:
|
||||
- version $1-
|
||||
ban:
|
||||
- minecraft:ban $1-
|
||||
bukkit:reload:
|
||||
|
@ -33,8 +35,6 @@ aliases:
|
|||
- minecraft:kick $1-
|
||||
kill:
|
||||
- minecraft:kill $1-
|
||||
icanhasbukkit:
|
||||
- version $1-
|
||||
list:
|
||||
- minecraft:list $1-
|
||||
me:
|
||||
|
@ -63,3 +63,4 @@ aliases:
|
|||
- minecraft:weather $1-
|
||||
xp:
|
||||
- minecraft:xp $1-
|
||||
unrestricted-advancements: false
|
||||
|
|
Binary file not shown.
153
paper.yml
153
paper.yml
|
@ -10,7 +10,7 @@
|
|||
# Paper Forums: https://aquifermc.org/
|
||||
|
||||
verbose: false
|
||||
config-version: 13
|
||||
config-version: 14
|
||||
settings:
|
||||
load-permissions-yml-before-plugins: false
|
||||
bungee-online-mode: true
|
||||
|
@ -20,11 +20,16 @@ settings:
|
|||
incoming-packet-spam-threshold: 300
|
||||
remove-invalid-statistics: false
|
||||
save-player-data: true
|
||||
use-versioned-world: false
|
||||
min-chunk-load-threads: 8
|
||||
suggest-player-names-when-null-tab-completions: true
|
||||
spam-limiter:
|
||||
tab-spam-increment: 2
|
||||
tab-spam-limit: 500
|
||||
enable-player-collisions: true
|
||||
player-auto-save-rate: -1
|
||||
max-player-auto-save-per-tick: -1
|
||||
use-alternative-luck-formula: false
|
||||
messages:
|
||||
kick:
|
||||
authentication-servers-down: ''
|
||||
|
@ -35,10 +40,88 @@ timings:
|
|||
verbose: true
|
||||
server-name-privacy: false
|
||||
hidden-config-entries:
|
||||
- database
|
||||
- settings.bungeecord-addresses
|
||||
history-interval: 300
|
||||
history-length: 3600
|
||||
world-settings:
|
||||
default:
|
||||
portal-search-radius: 128
|
||||
optimize-explosions: true
|
||||
use-vanilla-world-scoreboard-name-coloring: false
|
||||
delay-chunk-unloads-by: 10s
|
||||
max-auto-save-chunks-per-tick: 24
|
||||
save-queue-limit-for-auto-save: 50
|
||||
enable-treasure-maps: true
|
||||
treasure-maps-return-already-discovered: false
|
||||
max-chunk-sends-per-tick: 81
|
||||
max-chunk-gens-per-tick: 10
|
||||
game-mechanics:
|
||||
scan-for-legacy-ender-dragon: false
|
||||
allow-permanent-chunk-loaders: false
|
||||
disable-end-credits: false
|
||||
disable-chest-cat-detection: false
|
||||
disable-player-crits: false
|
||||
disable-sprint-interruption-on-attack: false
|
||||
shield-blocking-delay: 5
|
||||
disable-unloaded-chunk-enderpearl-exploit: true
|
||||
max-growth-height:
|
||||
cactus: 3
|
||||
reeds: 3
|
||||
fishing-time-range:
|
||||
MinimumTicks: 100
|
||||
MaximumTicks: 600
|
||||
despawn-ranges:
|
||||
soft: 32
|
||||
hard: 128
|
||||
falling-block-height-nerf: 0
|
||||
tnt-entity-height-nerf: 0
|
||||
frosted-ice:
|
||||
enabled: true
|
||||
delay:
|
||||
min: 20
|
||||
max: 40
|
||||
lootables:
|
||||
auto-replenish: false
|
||||
restrict-player-reloot: true
|
||||
reset-seed-on-fill: true
|
||||
max-refills: -1
|
||||
refresh-min: 12h
|
||||
refresh-max: 2d
|
||||
filter-nbt-data-from-spawn-eggs-and-related: false
|
||||
max-entity-collisions: 1
|
||||
disable-creeper-lingering-effect: false
|
||||
remove-corrupt-tile-entities: true
|
||||
use-chunk-inhabited-timer: true
|
||||
queue-light-updates: true
|
||||
duplicate-uuid-resolver: regenerate
|
||||
keep-spawn-loaded-range: 8
|
||||
auto-save-interval: -1
|
||||
container-update-tick-rate: 3
|
||||
grass-spread-tick-rate: 400
|
||||
bed-search-radius: 1
|
||||
nether-ceiling-void-damage: false
|
||||
non-player-arrow-despawn-rate: -1
|
||||
parrots-are-unaffected-by-player-movement: false
|
||||
disable-explosion-knockback: false
|
||||
allow-non-player-entities-on-scoreboards: false
|
||||
prevent-tnt-from-moving-in-water: false
|
||||
keep-spawn-loaded: false
|
||||
experience-merge-max-value: -1
|
||||
skip-entity-ticking-in-chunks-scheduled-for-unload: true
|
||||
armor-stands-do-collision-entity-lookups: true
|
||||
disable-thunder: false
|
||||
skeleton-horse-thunder-spawn-chance: 0.01
|
||||
disable-ice-and-snow: false
|
||||
fire-physics-event-for-redstone: false
|
||||
disable-teleportation-suffocation-check: true
|
||||
allow-leashing-undead-horse: false
|
||||
mob-spawner-tick-rate: 100
|
||||
squid-spawn-height:
|
||||
maximum: 0.0
|
||||
baby-zombie-movement-speed: 0.5
|
||||
spawner-nerfed-mobs-should-jump: false
|
||||
all-chunks-are-slime-chunks: false
|
||||
generator-settings:
|
||||
canyon: true
|
||||
caves: true
|
||||
|
@ -53,25 +136,6 @@ world-settings:
|
|||
disable-extreme-hills-emeralds: false
|
||||
disable-extreme-hills-monster-eggs: false
|
||||
disable-mesa-additional-gold: false
|
||||
portal-search-radius: 128
|
||||
optimize-explosions: true
|
||||
use-vanilla-world-scoreboard-name-coloring: false
|
||||
delay-chunk-unloads-by: 10s
|
||||
max-auto-save-chunks-per-tick: 24
|
||||
save-queue-limit-for-auto-save: 50
|
||||
max-chunk-sends-per-tick: 81
|
||||
max-chunk-gens-per-tick: 10
|
||||
max-growth-height:
|
||||
cactus: 3
|
||||
reeds: 3
|
||||
fishing-time-range:
|
||||
MinimumTicks: 100
|
||||
MaximumTicks: 600
|
||||
despawn-ranges:
|
||||
soft: 32
|
||||
hard: 128
|
||||
falling-block-height-nerf: 0
|
||||
tnt-entity-height-nerf: 0
|
||||
water-over-lava-flow-speed: 5
|
||||
fast-drain:
|
||||
lava: false
|
||||
|
@ -79,48 +143,12 @@ world-settings:
|
|||
lava-flow-speed:
|
||||
normal: 30
|
||||
nether: 10
|
||||
lootables:
|
||||
auto-replenish: false
|
||||
restrict-player-reloot: true
|
||||
reset-seed-on-fill: true
|
||||
max-refills: -1
|
||||
refresh-min: 12h
|
||||
refresh-max: 2d
|
||||
filter-nbt-data-from-spawn-eggs-and-related: false
|
||||
max-entity-collisions: 1
|
||||
disable-creeper-lingering-effect: false
|
||||
hopper:
|
||||
cooldown-when-full: true
|
||||
disable-move-event: true
|
||||
push-based: false
|
||||
remove-corrupt-tile-entities: true
|
||||
use-chunk-inhabited-timer: true
|
||||
queue-light-updates: true
|
||||
keep-spawn-loaded-range: 8
|
||||
auto-save-interval: -1
|
||||
nether-ceiling-void-damage: false
|
||||
allow-non-player-entities-on-scoreboards: false
|
||||
frosted-ice:
|
||||
enabled: true
|
||||
delay:
|
||||
min: 20
|
||||
max: 40
|
||||
container-update-tick-rate: 3
|
||||
game-mechanics:
|
||||
disable-end-credits: false
|
||||
disable-player-crits: false
|
||||
disable-chest-cat-detection: false
|
||||
parrots-are-unaffected-by-player-movement: false
|
||||
disable-explosion-knockback: false
|
||||
elytra-hit-wall-damage: true
|
||||
grass-spread-tick-rate: 400
|
||||
use-alternate-fallingblock-onGround-detection: false
|
||||
prevent-tnt-from-moving-in-water: false
|
||||
non-player-arrow-despawn-rate: -1
|
||||
disable-teleportation-suffocation-check: true
|
||||
enable-treasure-maps: true
|
||||
treasure-maps-return-already-discovered: false
|
||||
keep-spawn-loaded: false
|
||||
anti-xray:
|
||||
enabled: false
|
||||
engine-mode: 1
|
||||
|
@ -143,16 +171,3 @@ world-settings:
|
|||
replacement-blocks:
|
||||
- stone
|
||||
- planks
|
||||
experience-merge-max-value: -1
|
||||
armor-stands-do-collision-entity-lookups: true
|
||||
disable-thunder: false
|
||||
skeleton-horse-thunder-spawn-chance: 0.01
|
||||
disable-ice-and-snow: false
|
||||
fire-physics-event-for-redstone: false
|
||||
squid-spawn-height:
|
||||
maximum: 0.0
|
||||
baby-zombie-movement-speed: 0.5
|
||||
spawner-nerfed-mobs-should-jump: false
|
||||
allow-leashing-undead-horse: false
|
||||
mob-spawner-tick-rate: 100
|
||||
all-chunks-are-slime-chunks: false
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
plugins/FastAsyncWorldEdit/textures/textures.jar
Normal file
BIN
plugins/FastAsyncWorldEdit/textures/textures.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
9
plugins/MySkin/config.yml
Normal file
9
plugins/MySkin/config.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
MYSQL_ENABLED: false
|
||||
MYSQL_HOST: localhost
|
||||
MYSQL_PORT: '3306'
|
||||
MYSQL_USERNAME: username
|
||||
MYSQL_PASSWORD: password
|
||||
MYSQL_DATABASE: database
|
||||
SKINSEARCH_ENABLED: false
|
||||
SKINSEARCH_ROWS: 6
|
||||
CONFIG_VERSION: 1
|
|
@ -1 +1,13 @@
|
|||
SETSKIN_USAGE: 'Usage: /setskin <username>'
|
||||
SKINCOMMAND_USAGE: 'Usage: /setskin <username>'
|
||||
NO_PERMISSION: '&cYou do not have a permission for this.'
|
||||
SKINCOMMAND_SUCCESSFUL_FRESH: '&aSkin set successfully!'
|
||||
SKINCOMMAND_SUCCESSFUL_CACHE: '&aSkin set from cache successfully!'
|
||||
SKINCOMMAND_FAILED: '&cFailed to set skin because: &4%reason%.'
|
||||
REASON_UNKNOWN: Unknown
|
||||
REASON_NOT_PREMIUM: Skin does not exist
|
||||
REASON_RATE_LIMITED: Skin was requested too many times
|
||||
NOT_PLAYER: '&cYou have to be a player!'
|
||||
PLAYAER_DOES_NOT_EXIST: '&cPlayer does not exist!'
|
||||
MYSKINCOMMAND_RELOADED: '&eMySkin was reloaded!'
|
||||
SKINSEARCH_TITLE: '&a&lSkin Search'
|
||||
SKINSEARCH_SKIN_LOAD_FAILED: '&lCould not load this skin!'
|
||||
|
|
Binary file not shown.
BIN
plugins/ViaBackwards.jar
Normal file
BIN
plugins/ViaBackwards.jar
Normal file
Binary file not shown.
BIN
plugins/ViaVersion.jar
Normal file
BIN
plugins/ViaVersion.jar
Normal file
Binary file not shown.
104
plugins/ViaVersion/config.yml
Normal file
104
plugins/ViaVersion/config.yml
Normal file
|
@ -0,0 +1,104 @@
|
|||
# Thanks for downloading ViaVersion
|
||||
# Ensure you look through all these options
|
||||
# If you need help:
|
||||
# viaversion.com - Discussion tab
|
||||
# IRC - https://elmer.spi.gt/iris/?nick=&channels=viaversion #viaversion on irc.spi.gt
|
||||
# Docs - https://docs.viaversion.com/display/VIAVERSION/Configuration
|
||||
#
|
||||
# ----------------------------------------------------------#
|
||||
# GLOBAL OPTIONS #
|
||||
# ----------------------------------------------------------#
|
||||
#
|
||||
# Should ViaVersion check for updates?
|
||||
checkforupdates: false
|
||||
# Send the supported versions with the Status (Ping) response packet
|
||||
send-supported-versions: false
|
||||
# Block specific Minecraft protocols that ViaVersion allows
|
||||
# List of all Minecraft protocol versions: http://wiki.vg/Protocol_version_numbers
|
||||
block-protocols: []
|
||||
# Change the blocked disconnect message
|
||||
block-disconnect-msg: You are using an unsupported Minecraft version!
|
||||
# If you use ProtocolLib, we can't reload without kicking the players.
|
||||
# (We don't suggest using reload either, use a plugin manager)
|
||||
# You can customise the message we kick people with if you use ProtocolLib here.
|
||||
reload-disconnect-msg: Server reload, please rejoin!
|
||||
#
|
||||
# ----------------------------------------------------------#
|
||||
# GLOBAL PACKET LIMITER #
|
||||
# ----------------------------------------------------------#
|
||||
#
|
||||
#
|
||||
# Packets Per Second (PPS) limiter (Use -1 on max-pps and tracking-period to disable)
|
||||
# Clients by default send around 20-90 packets per second.
|
||||
#
|
||||
# What is the maximum per second a client can send (Use %pps to display their pps)
|
||||
# Use -1 to disable.
|
||||
max-pps: 800
|
||||
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.
|
||||
#
|
||||
# Period to track (in seconds)
|
||||
# Use -1 to disable.
|
||||
tracking-period: 6
|
||||
# How many packets per second counts as a warning
|
||||
tracking-warning-pps: 120
|
||||
# How many warnings over the interval can we have
|
||||
# This can never be higher than "tracking-period"
|
||||
tracking-max-warnings: 4
|
||||
tracking-max-kick-msg: You are sending too many packets, :(
|
||||
#
|
||||
# ----------------------------------------------------------#
|
||||
# MULTIPLE VERSIONS OPTIONS #
|
||||
# ----------------------------------------------------------#
|
||||
#
|
||||
# Should we enable our hologram patch?
|
||||
# If they're in the wrong place enable this
|
||||
hologram-patch: false
|
||||
# This is the offset, should work as default when enabled.
|
||||
hologram-y: -0.96
|
||||
# Should we disable piston animation for 1.11/1.11.1 clients?
|
||||
# In some cases when firing lots of pistons it crashes them.
|
||||
piston-animation-patch: false
|
||||
# Should we fix nbt for 1.12 and above clients in chat messages (causes invalid item)
|
||||
chat-nbt-fix: true
|
||||
# Experimental - Should we fix shift quick move action for 1.12 clients (causes shift + double click not to work when moving items) (only works on 1.8-1.11.2 bukkit based servers)
|
||||
quick-move-action-fix: false
|
||||
# Should we use prefix for team colour on 1.13 and above clients
|
||||
team-colour-fix: true
|
||||
#
|
||||
# ----------------------------------------------------------#
|
||||
# 1.9 & 1.10 CLIENTS ON 1.8 SERVERS OPTIONS #
|
||||
# ----------------------------------------------------------#
|
||||
#
|
||||
# No collide options, these allow you to configure how collision works.
|
||||
# Do you want us to prevent collision?
|
||||
prevent-collision: true
|
||||
# If the above is true, should we automatically team players until you do?
|
||||
auto-team: true
|
||||
# When enabled if certain metadata can't be read we won't tell you about it
|
||||
suppress-metadata-errors: false
|
||||
# When enabled 1.9 & 1.10 will be able to block by using shields
|
||||
shield-blocking: true
|
||||
# Enable player tick simulation, this fixes eating, drinking, nether portals.
|
||||
simulate-pt: true
|
||||
# Should we use nms player to simulate packets, (may fix anti-cheat issues)
|
||||
nms-player-ticking: true
|
||||
# Should we patch boss bars so they work? (Default: true, disable if you're having issues)
|
||||
bossbar-patch: true
|
||||
# If your boss bar flickers on 1.9 & 1.10, set this to 'true'. It will keep all boss bars on 100% (not recommended)
|
||||
bossbar-anti-flicker: false
|
||||
# This will show the new effect indicator in the top-right corner for 1.9 & 1.10 players.
|
||||
use-new-effect-indicator: true
|
||||
# Show the new death messages for 1.9 & 1.10 on the death screen
|
||||
use-new-deathmessages: true
|
||||
# Should we cache our items, this will prevent server from being lagged out, however the cost is a constant task caching items
|
||||
item-cache: true
|
||||
# Patch the Anti xray to work on 1.9 & 1.10 (If your server is 1.8) This can cost more performance, so disable it if you don't use it.
|
||||
anti-xray-patch: true
|
||||
# Should we replace extended pistons to fix 1.10.1 (Only on chunk load)
|
||||
replace-pistons: false
|
||||
# What id should we replace with, default is air. (careful of players getting stuck standing on them)
|
||||
replacement-piston-id: 0
|
||||
# Force the string -> json transform
|
||||
force-json-transform: false
|
Binary file not shown.
Binary file not shown.
|
@ -18,12 +18,12 @@
|
|||
limits:
|
||||
allow-extra-data-values: true
|
||||
max-blocks-changed:
|
||||
default: 30000
|
||||
maximum: 30000
|
||||
default: 200000
|
||||
maximum: 200000
|
||||
max-polygonal-points:
|
||||
default: -1
|
||||
maximum: 20
|
||||
max-radius: 60
|
||||
max-radius: 20
|
||||
max-super-pickaxe-size: 5
|
||||
max-brush-radius: 5
|
||||
butcher-radius:
|
||||
|
|
Binary file not shown.
Binary file not shown.
BIN
plugins/iControlU.jar
Normal file
BIN
plugins/iControlU.jar
Normal file
Binary file not shown.
|
@ -8,6 +8,7 @@ difficulty=1
|
|||
enable-command-block=true
|
||||
enable-query=true
|
||||
enable-rcon=false
|
||||
enforce-whitelist=false
|
||||
force-gamemode=false
|
||||
gamemode=1
|
||||
generate-structures=true
|
||||
|
@ -17,7 +18,7 @@ level-name=world
|
|||
level-seed=0
|
||||
level-type=DEFAULT
|
||||
max-build-height=256
|
||||
max-players=0
|
||||
max-players=20
|
||||
max-world-size=29999984
|
||||
motd=\u00A78\u00A7l Welcome to Kaboom.pw\!\n > \u00A77Free OP - Anarchy - Creative
|
||||
network-compression-threshold=256
|
||||
|
|
45
spigot.yml
45
spigot.yml
|
@ -17,12 +17,9 @@ settings:
|
|||
bungeecord: false
|
||||
late-bind: true
|
||||
player-shuffle: 0
|
||||
filter-creative-items: false
|
||||
user-cache-size: 1000
|
||||
int-cache-limit: 1024
|
||||
moved-wrongly-threshold: 100.0
|
||||
moved-too-quickly-multiplier: 100.0
|
||||
item-dirty-ticks: 20
|
||||
timeout-time: 60
|
||||
restart-on-crash: false
|
||||
restart-script:
|
||||
|
@ -35,9 +32,17 @@ settings:
|
|||
attackDamage:
|
||||
max: 2048.0
|
||||
debug: false
|
||||
filter-creative-items: false
|
||||
int-cache-limit: 1024
|
||||
item-dirty-ticks: 20
|
||||
messages:
|
||||
whitelist: The server is temporarily down for maintenance. Please try again later!
|
||||
unknown-command: Unknown command. Type "/help" for help.
|
||||
server-full: The server is temporarily down for maintenance. Please try again later!
|
||||
outdated-client: Your client is outdated. Please join with Minecraft version {0}!
|
||||
outdated-server: The server is outdated. Please join with Minecraft version {0}!
|
||||
restart: The server is restarting. Please wait...
|
||||
commands:
|
||||
tab-complete: 0
|
||||
log: false
|
||||
spam-exclusions:
|
||||
- /skill
|
||||
silent-commandblock-console: true
|
||||
|
@ -46,13 +51,9 @@ commands:
|
|||
- summon
|
||||
- testforblock
|
||||
- tellraw
|
||||
messages:
|
||||
whitelist: The server is temporarily down for maintenance. Please try again later!
|
||||
unknown-command: Unknown command. Type "/help" for help.
|
||||
server-full: The server is temporarily down for maintenance. Please try again later!
|
||||
outdated-client: Your client is outdated. Please join with Minecraft version {0}!
|
||||
outdated-server: The server is outdated. Please join with Minecraft version {0}!
|
||||
restart: The server is restarting. Please wait...
|
||||
tab-complete: 0
|
||||
send-namespaced: true
|
||||
log: false
|
||||
advancements:
|
||||
disable-saving: true
|
||||
disabled:
|
||||
|
@ -117,6 +118,7 @@ stats:
|
|||
world-settings:
|
||||
default:
|
||||
verbose: false
|
||||
mob-spawn-range: 3
|
||||
growth:
|
||||
cactus-modifier: 100
|
||||
cane-modifier: 100
|
||||
|
@ -133,7 +135,6 @@ world-settings:
|
|||
monsters: 24
|
||||
misc: 4
|
||||
tick-inactive-villagers: false
|
||||
mob-spawn-range: 3
|
||||
entity-tracking-range:
|
||||
players: 48
|
||||
animals: 48
|
||||
|
@ -145,11 +146,15 @@ world-settings:
|
|||
hopper-check: 1
|
||||
hopper-amount: 1
|
||||
random-light-updates: false
|
||||
save-structure-info: false
|
||||
dragon-death-sound-radius: 0
|
||||
seed-village: 10387312
|
||||
seed-feature: 14357617
|
||||
seed-desert: 14357617
|
||||
seed-igloo: 14357618
|
||||
seed-jungle: 14357619
|
||||
seed-swamp: 14357620
|
||||
seed-monument: 10387313
|
||||
seed-shipwreck: 165745295
|
||||
seed-ocean: 14357621
|
||||
seed-slime: 987234911
|
||||
hunger:
|
||||
jump-walk-exhaustion: 0.05
|
||||
|
@ -165,18 +170,20 @@ world-settings:
|
|||
entity: 20
|
||||
squid-spawn-range:
|
||||
min: 45.0
|
||||
item-despawn-rate: 6000
|
||||
view-distance: 5
|
||||
enable-zombie-pigmen-portal-spawns: true
|
||||
merge-radius:
|
||||
item: 4.0
|
||||
exp: 6.0
|
||||
view-distance: 5
|
||||
arrow-despawn-rate: 1200
|
||||
enable-zombie-pigmen-portal-spawns: true
|
||||
item-despawn-rate: 6000
|
||||
wither-spawn-sound-radius: 0
|
||||
hanging-tick-frequency: 100
|
||||
zombie-aggressive-towards-villager: false
|
||||
nerf-spawner-mobs: false
|
||||
zombie-aggressive-towards-villager: false
|
||||
max-entity-collisions: 1
|
||||
save-structure-info: false
|
||||
seed-feature: 14357617
|
||||
world:
|
||||
mob-spawn-range: 0
|
||||
max-tnt-per-tick: 0
|
||||
|
|
Loading…
Reference in a new issue