- Download the SQLite driver .jar from here: https://bitbucket.org/xerial/sqlite-jdbc/downloads
- Open your BungeeCord/Waterfall jar with any archiver program
- Open the SQLite driver with any archiver program
- Copy the contents (the "org"-folder) from the SQLite driver to BungeeCord
- Now just use the SQLite settings in the ChangeSkin config.
This file contains hidden or 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
| ;; area-of-ring: number number -> number | |
| ;; Determines the area of a ring | |
| ;; with outer radius outer and an inner radius inner | |
| ;; Example: (area-of-ring 5 3) is | |
| ;; roughly 50.26544 | |
| (define (area-of-ring outer inner) | |
| (- (area-of-circle outer) | |
| (area-of-circle inner))) | |
| ;;Tests |
This file contains hidden or 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
| nmap -sP -n 192.168.0.0/24 |
This file contains hidden or 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
| public class AnnotationHelper { | |
| private static final String ANNOTATIONS = "annotations"; | |
| public static final String ANNOTATION_DATA = "annotationData"; | |
| public static boolean isJDK7OrLower() { | |
| boolean jdk7OrLower = true; | |
| try { | |
| Class.class.getDeclaredField(ANNOTATIONS); | |
| } catch (NoSuchFieldException e) { | |
| //Willfully ignore all exceptions |
This file contains hidden or 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
| public class MinecraftPing { | |
| //this value updates every 40 Ticks => 2 Seconds. So you proparly want to add a scheduled task for it. | |
| public int getReflectionPing(Player player) { | |
| try { | |
| if (getHandleMethod == null) { | |
| getHandleMethod = player.getClass().getDeclaredMethod("getHandle"); | |
| //disable java security check. This will speed it a little | |
| getHandleMethod.setAccessible(true); | |
| } |
This file contains hidden or 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
| === Changelog VERSION === | |
| ====== ++Added++ ====== | |
| * | |
| ====== Changed/Fixed ====== | |
| * |
This file contains hidden or 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
| [B][SIZE=5][COLOR=rgb(0, 89, 179)]VERSION[/COLOR][/SIZE][/B] | |
| [SIZE=4][B][COLOR=rgb(0, 179, 0)][U]Added[/U][/COLOR][/B][/SIZE] | |
| [LIST] | |
| [*] | |
| [/LIST] | |
| [B][U]Changes/Fixes[/U][/B] | |
| [LIST] | |
| [*] |
This file contains hidden or 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
| #!/usr/bin/python3 | |
| from pysimplesoap.client import SoapClient | |
| location = 'http://fritz.box:49000/igdupnp/control/WANCommonIFC1' | |
| namespace = 'urn:schemas-upnp-org:service:WANCommonInterfaceConfig:1' | |
| action = 'urn:schemas-upnp-org:service:WANCommonInterfaceConfig:1#' | |
| debug = False # display http/soap requests and responses | |
| client = SoapClient(location, action, namespace, trace=debug) |
This file contains hidden or 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
| #!/bin/sh | |
| cd /home/minecraft | |
| mkdir tempdl | |
| cd tempdl | |
| wget https://ci.destroystokyo.com/job/PaperSpigot/lastSuccessfulBuild/artifact/paperclip.jar #Download the latest version of Spigot | |
| wget https://ci.aquifermc.org/job/Waterfall/lastSuccessfulBuild/artifact/Waterfall-Proxy/bootstrap/target/Waterfall.jar #Download the latest version of BungeeCord | |
| #Copy the .jars to the server folders | |
| cp paperclip.jar /home/minecraft/paperclip.jar |
This file contains hidden or 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
| <? | |
| /** | |
| * Generates a offline-mode player UUID. | |
| * | |
| * @param $username string | |
| * @return string | |
| */ | |
| public static function constructOfflinePlayerUuid($username) { | |
| //extracted from the java code: | |
| //new GameProfile(UUID.nameUUIDFromBytes(("OfflinePlayer:" + name).getBytes(Charsets.UTF_8)), name)); |