First commit
This commit is contained in:
113
Java-SameUtilsBukkitPlugin/.gitignore
vendored
Executable file
113
Java-SameUtilsBukkitPlugin/.gitignore
vendored
Executable file
@@ -0,0 +1,113 @@
|
||||
# User-specific stuff
|
||||
.idea/
|
||||
|
||||
*.iml
|
||||
*.ipr
|
||||
*.iws
|
||||
|
||||
# IntelliJ
|
||||
out/
|
||||
|
||||
# Compiled class file
|
||||
*.class
|
||||
|
||||
# Log file
|
||||
*.log
|
||||
|
||||
# BlueJ files
|
||||
*.ctxt
|
||||
|
||||
# Package Files #
|
||||
*.jar
|
||||
*.war
|
||||
*.nar
|
||||
*.ear
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.rar
|
||||
|
||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||
hs_err_pid*
|
||||
|
||||
*~
|
||||
|
||||
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||
.fuse_hidden*
|
||||
|
||||
# KDE directory preferences
|
||||
.directory
|
||||
|
||||
# Linux trash folder which might appear on any partition or disk
|
||||
.Trash-*
|
||||
|
||||
# .nfs files are created when an open file is removed but is still being accessed
|
||||
.nfs*
|
||||
|
||||
# General
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Icon must end with two \r
|
||||
Icon
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
|
||||
# Files that might appear in the root of a volume
|
||||
.DocumentRevisions-V100
|
||||
.fseventsd
|
||||
.Spotlight-V100
|
||||
.TemporaryItems
|
||||
.Trashes
|
||||
.VolumeIcon.icns
|
||||
.com.apple.timemachine.donotpresent
|
||||
|
||||
# Directories potentially created on remote AFP share
|
||||
.AppleDB
|
||||
.AppleDesktop
|
||||
Network Trash Folder
|
||||
Temporary Items
|
||||
.apdisk
|
||||
|
||||
# Windows thumbnail cache files
|
||||
Thumbs.db
|
||||
Thumbs.db:encryptable
|
||||
ehthumbs.db
|
||||
ehthumbs_vista.db
|
||||
|
||||
# Dump file
|
||||
*.stackdump
|
||||
|
||||
# Folder config file
|
||||
[Dd]esktop.ini
|
||||
|
||||
# Recycle Bin used on file shares
|
||||
$RECYCLE.BIN/
|
||||
|
||||
# Windows Installer files
|
||||
*.cab
|
||||
*.msi
|
||||
*.msix
|
||||
*.msm
|
||||
*.msp
|
||||
|
||||
# Windows shortcuts
|
||||
*.lnk
|
||||
|
||||
target/
|
||||
|
||||
pom.xml.tag
|
||||
pom.xml.releaseBackup
|
||||
pom.xml.versionsBackup
|
||||
pom.xml.next
|
||||
|
||||
release.properties
|
||||
dependency-reduced-pom.xml
|
||||
buildNumber.properties
|
||||
.mvn/timing.properties
|
||||
.mvn/wrapper/maven-wrapper.jar
|
||||
.flattened-pom.xml
|
||||
|
||||
# Common working directory
|
||||
run/
|
75
Java-SameUtilsBukkitPlugin/pom.xml
Executable file
75
Java-SameUtilsBukkitPlugin/pom.xml
Executable file
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>de.same</groupId>
|
||||
<artifactId>sameUtils</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>SameUtils</name>
|
||||
|
||||
<description>Ein Same-Plugin</description>
|
||||
<properties>
|
||||
<java.version>1.8</java.version>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<configuration>
|
||||
<source>${java.version}</source>
|
||||
<target>${java.version}</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
<version>3.2.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>shade</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<createDependencyReducedPom>false</createDependencyReducedPom>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/resources</directory>
|
||||
<filtering>true</filtering>
|
||||
</resource>
|
||||
</resources>
|
||||
</build>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>papermc-repo</id>
|
||||
<url>https://papermc.io/repo/repository/maven-public/</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>sonatype</id>
|
||||
<url>https://oss.sonatype.org/content/groups/public/</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.destroystokyo.paper</groupId>
|
||||
<artifactId>paper-api</artifactId>
|
||||
<version>1.16.1-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
3
Java-SameUtilsBukkitPlugin/server/Lobbyy/WorldDownloader.txt
Executable file
3
Java-SameUtilsBukkitPlugin/server/Lobbyy/WorldDownloader.txt
Executable file
@@ -0,0 +1,3 @@
|
||||
#
|
||||
#Fri Jul 10 00:42:46 COT 2020
|
||||
WorldName=authtt
|
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,159 @@
|
||||
{
|
||||
"minecraft:recipes/decorations/item_frame": {
|
||||
"criteria": {
|
||||
"has_leather": "2020-11-07 11:16:18 +0100"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/food/cooked_chicken_from_smoking": {
|
||||
"criteria": {
|
||||
"has_chicken": "2020-10-18 18:31:05 +0200"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/combat/leather_chestplate": {
|
||||
"criteria": {
|
||||
"has_leather": "2020-11-07 11:16:18 +0100"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/transportation/dark_oak_boat": {
|
||||
"criteria": {
|
||||
"in_water": "2020-10-18 18:42:03 +0200"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:adventure/kill_a_mob": {
|
||||
"criteria": {
|
||||
"minecraft:slime": "2020-11-07 11:15:28 +0100"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:adventure/kill_all_mobs": {
|
||||
"criteria": {
|
||||
"minecraft:slime": "2020-11-07 11:15:28 +0100"
|
||||
},
|
||||
"done": false
|
||||
},
|
||||
"minecraft:recipes/redstone/sticky_piston": {
|
||||
"criteria": {
|
||||
"has_slime_ball": "2020-11-07 11:16:46 +0100"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/food/cooked_beef_from_smoking": {
|
||||
"criteria": {
|
||||
"has_beef": "2020-11-07 11:16:18 +0100"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/food/cooked_chicken_from_campfire_cooking": {
|
||||
"criteria": {
|
||||
"has_chicken": "2020-10-18 18:31:05 +0200"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/tools/lead": {
|
||||
"criteria": {
|
||||
"has_slime_ball": "2020-11-07 11:16:46 +0100"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/food/cooked_beef": {
|
||||
"criteria": {
|
||||
"has_beef": "2020-11-07 11:16:18 +0100"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/combat/leather_helmet": {
|
||||
"criteria": {
|
||||
"has_leather": "2020-11-07 11:16:18 +0100"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:adventure/adventuring_time": {
|
||||
"criteria": {
|
||||
"minecraft:plains": "2020-10-17 21:22:25 +0200"
|
||||
},
|
||||
"done": false
|
||||
},
|
||||
"minecraft:recipes/decorations/slime_block": {
|
||||
"criteria": {
|
||||
"has_slime_ball": "2020-11-07 11:16:46 +0100"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/misc/map": {
|
||||
"criteria": {
|
||||
"has_compass": "2020-10-18 16:01:40 +0200"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/food/cooked_beef_from_campfire_cooking": {
|
||||
"criteria": {
|
||||
"has_beef": "2020-11-07 11:16:18 +0100"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/transportation/birch_boat": {
|
||||
"criteria": {
|
||||
"in_water": "2020-10-18 18:42:03 +0200"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/food/cooked_chicken": {
|
||||
"criteria": {
|
||||
"has_chicken": "2020-10-18 18:31:05 +0200"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/transportation/acacia_boat": {
|
||||
"criteria": {
|
||||
"in_water": "2020-10-18 18:42:03 +0200"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/transportation/oak_boat": {
|
||||
"criteria": {
|
||||
"in_water": "2020-10-18 18:42:03 +0200"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:adventure/root": {
|
||||
"criteria": {
|
||||
"killed_something": "2020-10-18 18:31:04 +0200"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/combat/leather_boots": {
|
||||
"criteria": {
|
||||
"has_leather": "2020-11-07 11:16:18 +0100"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/transportation/jungle_boat": {
|
||||
"criteria": {
|
||||
"in_water": "2020-10-18 18:42:03 +0200"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/transportation/spruce_boat": {
|
||||
"criteria": {
|
||||
"in_water": "2020-10-18 18:42:03 +0200"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/misc/leather_horse_armor": {
|
||||
"criteria": {
|
||||
"has_leather": "2020-11-07 11:16:18 +0100"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"minecraft:recipes/combat/leather_leggings": {
|
||||
"criteria": {
|
||||
"has_leather": "2020-11-07 11:16:18 +0100"
|
||||
},
|
||||
"done": true
|
||||
},
|
||||
"DataVersion": 2580
|
||||
}
|
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/data/chunks.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/data/chunks.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/data/raids.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/data/raids.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/data/scoreboard.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/data/scoreboard.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/data/villages.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/data/villages.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/data/villages_end.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/data/villages_end.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/data/villages_nether.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/data/villages_nether.dat
Executable file
Binary file not shown.
6
Java-SameUtilsBukkitPlugin/server/Lobbyy/datapacks/bukkit/pack.mcmeta
Executable file
6
Java-SameUtilsBukkitPlugin/server/Lobbyy/datapacks/bukkit/pack.mcmeta
Executable file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"pack": {
|
||||
"description": "Data pack for resources provided by Bukkit plugins",
|
||||
"pack_format": 6
|
||||
}
|
||||
}
|
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/level.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/level.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/level.dat_old
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/level.dat_old
Executable file
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
Java-SameUtilsBukkitPlugin/server/Lobbyy/poi/r.-1.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/poi/r.-1.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/poi/r.-1.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/poi/r.-1.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/poi/r.0.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/poi/r.0.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/poi/r.0.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/poi/r.0.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-1.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-1.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-1.-2.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-1.-2.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-1.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-1.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-1.1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-1.1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-2.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-2.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-2.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-2.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-2.1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.-2.1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.0.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.0.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.0.-2.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.0.-2.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.0.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.0.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.0.1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.0.1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.1.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.1.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.1.-2.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.1.-2.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.1.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy/region/r.1.0.mca
Executable file
Binary file not shown.
1
Java-SameUtilsBukkitPlugin/server/Lobbyy/session.lock
Executable file
1
Java-SameUtilsBukkitPlugin/server/Lobbyy/session.lock
Executable file
@@ -0,0 +1 @@
|
||||
☃s:<3A>Ћ
|
@@ -0,0 +1 @@
|
||||
{"stat.walkOneCm":2541,"achievement.openInventory":1,"stat.leaveGame":3,"stat.flyOneCm":20192,"stat.deaths":1,"stat.jump":15,"stat.swimOneCm":359,"stat.playOneMinute":3138,"stat.timeSinceDeath":2751,"stat.sprintOneCm":1395,"achievement.exploreAllBiomes":{"value":0,"progress":["Plains"]}}
|
@@ -0,0 +1 @@
|
||||
{"stats":{"minecraft:used":{"minecraft:dark_oak_stairs":3,"minecraft:petrified_oak_slab":3,"minecraft:netherite_sword":117,"minecraft:flint_and_steel":4,"minecraft:birch_planks":45,"minecraft:polished_andesite":5,"minecraft:oak_planks":3,"minecraft:oak_sign":11,"minecraft:chest":11,"minecraft:ender_pearl":74,"minecraft:spruce_planks":11,"minecraft:ender_chest":6,"minecraft:stone":175,"minecraft:redstone_block":8,"minecraft:player_head":62,"minecraft:gilded_blackstone":5,"minecraft:mutton":1,"minecraft:rail":6,"minecraft:spruce_stairs":3,"minecraft:birch_sign":6,"minecraft:crossbow":22,"minecraft:white_bed":14,"minecraft:acacia_button":1,"minecraft:obsidian":16,"minecraft:redstone_torch":36,"minecraft:lever":4,"minecraft:lava_bucket":4,"minecraft:firework_rocket":33,"minecraft:grass_block":65,"minecraft:chicken":2,"minecraft:barrier":11,"minecraft:light_blue_bed":3,"minecraft:dark_oak_slab":1,"minecraft:bedrock":3,"minecraft:diamond_sword":30,"minecraft:bow":1,"minecraft:fire_coral_block":2,"minecraft:redstone_lamp":57,"minecraft:cobblestone":7,"minecraft:potion":2,"minecraft:white_banner":1,"minecraft:bubble_coral_block":1,"minecraft:chain_command_block":4,"minecraft:bucket":2,"minecraft:repeating_command_block":3,"minecraft:magenta_glazed_terracotta":4,"minecraft:horn_coral_block":94,"minecraft:golden_axe":1,"minecraft:golden_pickaxe":1141,"minecraft:enchanted_golden_apple":117},"minecraft:dropped":{"minecraft:golden_pickaxe":5,"minecraft:tipped_arrow":1,"minecraft:netherite_boots":1,"minecraft:string":9,"minecraft:white_wool":4,"minecraft:firework_rocket":3},"minecraft:custom":{"minecraft:mob_kills":140,"minecraft:play_one_minute":1842992,"minecraft:leave_game":105,"minecraft:time_since_death":31119,"minecraft:sleep_in_bed":1,"minecraft:damage_resisted":740,"minecraft:time_since_rest":31139,"minecraft:damage_absorbed":512,"minecraft:sprint_one_cm":442262,"minecraft:open_enderchest":4,"minecraft:damage_taken":10325,"minecraft:walk_one_cm":197379,"minecraft:drop":20,"minecraft:damage_dealt":10648,"minecraft:swim_one_cm":2254,"minecraft:fly_one_cm":4207303,"minecraft:open_chest":18,"minecraft:crouch_one_cm":15509,"minecraft:deaths":16,"minecraft:sneak_time":6820,"minecraft:walk_under_water_one_cm":3738,"minecraft:aviate_one_cm":1238675,"minecraft:jump":3588,"minecraft:walk_on_water_one_cm":1104,"minecraft:fall_one_cm":178824},"minecraft:picked_up":{"minecraft:netherite_boots":1,"minecraft:barrier":5,"minecraft:feather":16,"minecraft:chicken":2,"minecraft:redstone_lamp":15,"minecraft:golden_pickaxe":9,"minecraft:leather":92,"minecraft:birch_planks":768,"minecraft:gilded_blackstone":1,"minecraft:crimson_planks":768,"minecraft:string":81,"minecraft:dirt":7,"minecraft:paper":252,"minecraft:elytra":6,"minecraft:flint_and_steel":6,"minecraft:compass":8,"minecraft:acacia_planks":768,"minecraft:oak_sign":5,"minecraft:wheat_seeds":24,"minecraft:fire_coral_block":5,"minecraft:netherite_sword":9,"minecraft:spruce_planks":646,"minecraft:horn_coral_block":5,"minecraft:beef":182,"minecraft:redstone_torch":11,"minecraft:player_head":1,"minecraft:enchanted_golden_apple":42,"minecraft:chest":1,"minecraft:oak_planks":771,"minecraft:golden_helmet":5,"minecraft:tipped_arrow":7,"minecraft:stone":18,"minecraft:spruce_stairs":1,"minecraft:porkchop":35,"minecraft:golden_axe":9,"minecraft:white_bed":7,"minecraft:grass_block":9,"minecraft:warped_planks":768,"minecraft:light_blue_bed":7,"minecraft:dark_oak_planks":768,"minecraft:polished_andesite":8,"minecraft:firework_rocket":165,"minecraft:arrow":2,"minecraft:rotten_flesh":24,"minecraft:slime_ball":287,"minecraft:crossbow":6,"minecraft:birch_sign":6,"minecraft:gray_wool":3,"minecraft:petrified_oak_slab":2,"minecraft:white_wool":20,"minecraft:bubble_coral_block":1,"minecraft:black_wool":8,"minecraft:obsidian":384,"minecraft:mutton":50,"minecraft:coal":136,"minecraft:rail":5,"minecraft:cobblestone":1299},"minecraft:killed_by":{"minecraft:slime":1},"minecraft:killed":{"minecraft:wolf":3,"minecraft:pig":2,"minecraft:spider":6,"minecraft:slime":104,"minecraft:creeper":1,"minecraft:horse":5,"minecraft:skeleton":1,"minecraft:sheep":4,"minecraft:chicken":1,"minecraft:cow":13},"minecraft:crafted":{"minecraft:firework_rocket":66},"minecraft:mined":{"minecraft:spruce_planks":4,"minecraft:white_bed":7,"minecraft:chest":1,"minecraft:tall_grass":2,"minecraft:oak_planks":3,"minecraft:spruce_stairs":1,"minecraft:birch_planks":1,"minecraft:grass":21,"minecraft:coal_ore":17,"minecraft:stone":458,"minecraft:polished_andesite":3,"minecraft:player_head":1,"minecraft:redstone_lamp":8}},"DataVersion":2580}
|
@@ -0,0 +1 @@
|
||||
{"stats":{"minecraft:used":{"minecraft:dark_oak_stairs":12,"minecraft:redstone_lamp":8,"minecraft:barrier":236,"minecraft:stone":1},"minecraft:picked_up":{"minecraft:chicken":1,"minecraft:slime_ball":4,"minecraft:rotten_flesh":2,"minecraft:redstone_lamp":2,"minecraft:leather":1,"minecraft:beef":2,"minecraft:skeleton_skull":1},"minecraft:dropped":{"minecraft:rotten_flesh":2,"minecraft:skeleton_skull":1},"minecraft:custom":{"minecraft:time_since_rest":28908,"minecraft:crouch_one_cm":1369,"minecraft:play_one_minute":133840,"minecraft:sprint_one_cm":68811,"minecraft:deaths":10,"minecraft:damage_taken":21695,"minecraft:walk_one_cm":28703,"minecraft:sneak_time":1087,"minecraft:walk_under_water_one_cm":84,"minecraft:mob_kills":22,"minecraft:drop":3,"minecraft:jump":1040,"minecraft:damage_dealt":1067,"minecraft:leave_game":22,"minecraft:walk_on_water_one_cm":600,"minecraft:time_since_death":28888,"minecraft:swim_one_cm":1303,"minecraft:fall_one_cm":253586,"minecraft:fly_one_cm":594605},"minecraft:killed":{"minecraft:slime":19,"minecraft:chicken":1,"minecraft:cow":1},"minecraft:mined":{"minecraft:redstone_lamp":2}},"DataVersion":2580}
|
1
Java-SameUtilsBukkitPlugin/server/Lobbyy/uid.dat
Executable file
1
Java-SameUtilsBukkitPlugin/server/Lobbyy/uid.dat
Executable file
@@ -0,0 +1 @@
|
||||
/<2F><>8rbK<62><4B><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>N
|
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/data/raids.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/data/raids.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/poi/r.0.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/poi/r.0.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/poi/r.0.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/poi/r.0.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/region/r.-1.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/region/r.-1.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/region/r.-1.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/region/r.-1.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/region/r.0.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/region/r.0.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/region/r.0.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/DIM-1/region/r.0.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/data/villages.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/data/villages.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/data/villages_end.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/data/villages_end.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/data/villages_nether.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/data/villages_nether.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/level.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/level.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/level.dat_old
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/level.dat_old
Executable file
Binary file not shown.
1
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/session.lock
Executable file
1
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/session.lock
Executable file
@@ -0,0 +1 @@
|
||||
☃
|
1
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/uid.dat
Executable file
1
Java-SameUtilsBukkitPlugin/server/Lobbyy_nether/uid.dat
Executable file
@@ -0,0 +1 @@
|
||||
bb=wIR<49>@G<><11>
|
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/DIM1/data/raids_end.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/DIM1/data/raids_end.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/DIM1/region/r.-1.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/DIM1/region/r.-1.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/DIM1/region/r.-1.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/DIM1/region/r.-1.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/DIM1/region/r.0.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/DIM1/region/r.0.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/DIM1/region/r.0.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/DIM1/region/r.0.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/data/villages.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/data/villages.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/data/villages_end.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/data/villages_end.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/data/villages_nether.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/data/villages_nether.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/level.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/level.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/level.dat_old
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/level.dat_old
Executable file
Binary file not shown.
1
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/session.lock
Executable file
1
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/session.lock
Executable file
@@ -0,0 +1 @@
|
||||
☃
|
1
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/uid.dat
Executable file
1
Java-SameUtilsBukkitPlugin/server/Lobbyy_the_end/uid.dat
Executable file
@@ -0,0 +1 @@
|
||||
Ј<EFBFBD><EFBFBD> <20>@w<><77><EFBFBD>u<EFBFBD>u}G
|
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/data/raids.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/data/raids.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/level.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/level.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/level.dat_old
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/level.dat_old
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/poi/r.-1.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/poi/r.-1.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-1.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-1.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-1.-2.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-1.-2.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-1.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-1.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-1.1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-1.1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-2.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-2.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-2.-2.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-2.-2.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-2.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.-2.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.0.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.0.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.0.-2.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.0.-2.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.0.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.0.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.0.1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.0.1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.1.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.1.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.1.1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/region/r.1.1.mca
Executable file
Binary file not shown.
1
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/session.lock
Executable file
1
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/session.lock
Executable file
@@ -0,0 +1 @@
|
||||
☃
|
1
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/uid.dat
Executable file
1
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-3/uid.dat
Executable file
@@ -0,0 +1 @@
|
||||
<EFBFBD><EFBFBD><EFBFBD>,#L<><4C>"<22> <09>M&n
|
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/data/raids.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/data/raids.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/level.dat
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/level.dat
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/level.dat_old
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/level.dat_old
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/poi/r.1.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/poi/r.1.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.-1.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.-1.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.-1.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.-1.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.-1.1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.-1.1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.0.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.0.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.0.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.0.0.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.0.1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.0.1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.1.-1.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.1.-1.mca
Executable file
Binary file not shown.
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.1.0.mca
Executable file
BIN
Java-SameUtilsBukkitPlugin/server/SameUtilWorlds/Welt-4/region/r.1.0.mca
Executable file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user