First commit
This commit is contained in:
113
SAMe/.gitignore
vendored
Executable file
113
SAMe/.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/
|
80
SAMe/pom.xml
Executable file
80
SAMe/pom.xml
Executable file
@@ -0,0 +1,80 @@
|
||||
<?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>
|
||||
<dependency>
|
||||
<groupId>com.destroystokyo.paper</groupId>
|
||||
<artifactId>paper-api</artifactId>
|
||||
<version>1.16.3-R0.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
3
SAMe/server/Lobbyy/WorldDownloader.txt
Executable file
3
SAMe/server/Lobbyy/WorldDownloader.txt
Executable file
@@ -0,0 +1,3 @@
|
||||
#
|
||||
#Fri Jul 10 00:42:46 COT 2020
|
||||
WorldName=authtt
|
1727
SAMe/server/Lobbyy/advancements/0c298ad8-165e-4d2d-89ed-e123b5175bc9.json
Executable file
1727
SAMe/server/Lobbyy/advancements/0c298ad8-165e-4d2d-89ed-e123b5175bc9.json
Executable file
File diff suppressed because it is too large
Load Diff
159
SAMe/server/Lobbyy/advancements/6a8a42b0-cd37-4017-8773-44d032f45b7f.json
Executable file
159
SAMe/server/Lobbyy/advancements/6a8a42b0-cd37-4017-8773-44d032f45b7f.json
Executable file
@@ -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
SAMe/server/Lobbyy/data/chunks.dat
Executable file
BIN
SAMe/server/Lobbyy/data/chunks.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/data/raids.dat
Executable file
BIN
SAMe/server/Lobbyy/data/raids.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/data/scoreboard.dat
Executable file
BIN
SAMe/server/Lobbyy/data/scoreboard.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/data/villages.dat
Executable file
BIN
SAMe/server/Lobbyy/data/villages.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/data/villages_end.dat
Executable file
BIN
SAMe/server/Lobbyy/data/villages_end.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/data/villages_nether.dat
Executable file
BIN
SAMe/server/Lobbyy/data/villages_nether.dat
Executable file
Binary file not shown.
6
SAMe/server/Lobbyy/datapacks/bukkit/pack.mcmeta
Executable file
6
SAMe/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
SAMe/server/Lobbyy/level.dat
Executable file
BIN
SAMe/server/Lobbyy/level.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/level.dat_old
Executable file
BIN
SAMe/server/Lobbyy/level.dat_old
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/playerdata/00000000-0000-0000-0000-000000000000.dat
Executable file
BIN
SAMe/server/Lobbyy/playerdata/00000000-0000-0000-0000-000000000000.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/playerdata/0795319e-c250-3c11-ac34-d7f5b772bc0a.dat
Executable file
BIN
SAMe/server/Lobbyy/playerdata/0795319e-c250-3c11-ac34-d7f5b772bc0a.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/playerdata/0c298ad8-165e-4d2d-89ed-e123b5175bc9.dat
Executable file
BIN
SAMe/server/Lobbyy/playerdata/0c298ad8-165e-4d2d-89ed-e123b5175bc9.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/playerdata/0c298ad8-165e-4d2d-89ed-e123b5175bc9.dat_old
Executable file
BIN
SAMe/server/Lobbyy/playerdata/0c298ad8-165e-4d2d-89ed-e123b5175bc9.dat_old
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/playerdata/6a8a42b0-cd37-4017-8773-44d032f45b7f.dat
Executable file
BIN
SAMe/server/Lobbyy/playerdata/6a8a42b0-cd37-4017-8773-44d032f45b7f.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/playerdata/6a8a42b0-cd37-4017-8773-44d032f45b7f.dat_old
Executable file
BIN
SAMe/server/Lobbyy/playerdata/6a8a42b0-cd37-4017-8773-44d032f45b7f.dat_old
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/poi/r.-1.-1.mca
Executable file
BIN
SAMe/server/Lobbyy/poi/r.-1.-1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/poi/r.-1.0.mca
Executable file
BIN
SAMe/server/Lobbyy/poi/r.-1.0.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/poi/r.0.-1.mca
Executable file
BIN
SAMe/server/Lobbyy/poi/r.0.-1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/poi/r.0.0.mca
Executable file
BIN
SAMe/server/Lobbyy/poi/r.0.0.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.-1.-1.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.-1.-1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.-1.-2.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.-1.-2.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.-1.0.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.-1.0.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.-1.1.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.-1.1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.-2.-1.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.-2.-1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.-2.0.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.-2.0.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.-2.1.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.-2.1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.0.-1.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.0.-1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.0.-2.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.0.-2.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.0.0.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.0.0.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.0.1.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.0.1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.1.-1.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.1.-1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.1.-2.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.1.-2.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy/region/r.1.0.mca
Executable file
BIN
SAMe/server/Lobbyy/region/r.1.0.mca
Executable file
Binary file not shown.
1
SAMe/server/Lobbyy/session.lock
Executable file
1
SAMe/server/Lobbyy/session.lock
Executable file
@@ -0,0 +1 @@
|
||||
☃
|
1
SAMe/server/Lobbyy/stats/00000000-0000-0000-0000-000000000000.json
Executable file
1
SAMe/server/Lobbyy/stats/00000000-0000-0000-0000-000000000000.json
Executable file
@@ -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"]}}
|
1
SAMe/server/Lobbyy/stats/0c298ad8-165e-4d2d-89ed-e123b5175bc9.json
Executable file
1
SAMe/server/Lobbyy/stats/0c298ad8-165e-4d2d-89ed-e123b5175bc9.json
Executable file
File diff suppressed because one or more lines are too long
1
SAMe/server/Lobbyy/stats/6a8a42b0-cd37-4017-8773-44d032f45b7f.json
Executable file
1
SAMe/server/Lobbyy/stats/6a8a42b0-cd37-4017-8773-44d032f45b7f.json
Executable file
@@ -0,0 +1 @@
|
||||
{"stats":{"minecraft:used":{"minecraft:dark_oak_stairs":12,"minecraft:redstone_lamp":8,"minecraft:barrier":236,"minecraft:stone":1},"minecraft:dropped":{"minecraft:yellow_stained_glass_pane":3,"minecraft:rotten_flesh":2,"minecraft:skeleton_skull":1,"minecraft:brown_stained_glass_pane":1},"minecraft:picked_up":{"minecraft:chicken":1,"minecraft:brown_stained_glass_pane":1,"minecraft:rotten_flesh":2,"minecraft:slime_ball":4,"minecraft:redstone_lamp":2,"minecraft:leather":1,"minecraft:yellow_stained_glass_pane":3,"minecraft:beef":2,"minecraft:skeleton_skull":1},"minecraft:killed":{"minecraft:slime":19,"minecraft:chicken":1,"minecraft:cow":1},"minecraft:mined":{"minecraft:redstone_lamp":2},"minecraft:killed_by":{"minecraft:player":2},"minecraft:custom":{"minecraft:time_since_rest":8352,"minecraft:play_one_minute":143774,"minecraft:crouch_one_cm":2308,"minecraft:sprint_one_cm":79828,"minecraft:damage_taken":22226,"minecraft:walk_one_cm":32848,"minecraft:deaths":12,"minecraft:sneak_time":1358,"minecraft:walk_under_water_one_cm":84,"minecraft:mob_kills":22,"minecraft:drop":7,"minecraft:jump":1072,"minecraft:damage_dealt":1183,"minecraft:leave_game":31,"minecraft:walk_on_water_one_cm":600,"minecraft:time_since_death":8326,"minecraft:swim_one_cm":1303,"minecraft:fall_one_cm":253586,"minecraft:fly_one_cm":609563}},"DataVersion":2580}
|
1
SAMe/server/Lobbyy/uid.dat
Executable file
1
SAMe/server/Lobbyy/uid.dat
Executable file
@@ -0,0 +1 @@
|
||||
/<2F><>8rbK<62><4B><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>N
|
BIN
SAMe/server/Lobbyy_nether/DIM-1/data/raids.dat
Executable file
BIN
SAMe/server/Lobbyy_nether/DIM-1/data/raids.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_nether/DIM-1/poi/r.0.-1.mca
Executable file
BIN
SAMe/server/Lobbyy_nether/DIM-1/poi/r.0.-1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_nether/DIM-1/poi/r.0.0.mca
Executable file
BIN
SAMe/server/Lobbyy_nether/DIM-1/poi/r.0.0.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_nether/DIM-1/region/r.-1.-1.mca
Executable file
BIN
SAMe/server/Lobbyy_nether/DIM-1/region/r.-1.-1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_nether/DIM-1/region/r.-1.0.mca
Executable file
BIN
SAMe/server/Lobbyy_nether/DIM-1/region/r.-1.0.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_nether/DIM-1/region/r.0.-1.mca
Executable file
BIN
SAMe/server/Lobbyy_nether/DIM-1/region/r.0.-1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_nether/DIM-1/region/r.0.0.mca
Executable file
BIN
SAMe/server/Lobbyy_nether/DIM-1/region/r.0.0.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_nether/data/villages.dat
Executable file
BIN
SAMe/server/Lobbyy_nether/data/villages.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_nether/data/villages_end.dat
Executable file
BIN
SAMe/server/Lobbyy_nether/data/villages_end.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_nether/data/villages_nether.dat
Executable file
BIN
SAMe/server/Lobbyy_nether/data/villages_nether.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_nether/level.dat
Executable file
BIN
SAMe/server/Lobbyy_nether/level.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_nether/level.dat_old
Executable file
BIN
SAMe/server/Lobbyy_nether/level.dat_old
Executable file
Binary file not shown.
1
SAMe/server/Lobbyy_nether/session.lock
Executable file
1
SAMe/server/Lobbyy_nether/session.lock
Executable file
@@ -0,0 +1 @@
|
||||
☃
|
1
SAMe/server/Lobbyy_nether/uid.dat
Executable file
1
SAMe/server/Lobbyy_nether/uid.dat
Executable file
@@ -0,0 +1 @@
|
||||
bb=wIR<49>@G<><11>
|
BIN
SAMe/server/Lobbyy_the_end/DIM1/data/raids_end.dat
Executable file
BIN
SAMe/server/Lobbyy_the_end/DIM1/data/raids_end.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_the_end/DIM1/region/r.-1.-1.mca
Executable file
BIN
SAMe/server/Lobbyy_the_end/DIM1/region/r.-1.-1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_the_end/DIM1/region/r.-1.0.mca
Executable file
BIN
SAMe/server/Lobbyy_the_end/DIM1/region/r.-1.0.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_the_end/DIM1/region/r.0.-1.mca
Executable file
BIN
SAMe/server/Lobbyy_the_end/DIM1/region/r.0.-1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_the_end/DIM1/region/r.0.0.mca
Executable file
BIN
SAMe/server/Lobbyy_the_end/DIM1/region/r.0.0.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_the_end/DIM1/region/r.1.-1.mca
Executable file
BIN
SAMe/server/Lobbyy_the_end/DIM1/region/r.1.-1.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_the_end/DIM1/region/r.1.0.mca
Executable file
BIN
SAMe/server/Lobbyy_the_end/DIM1/region/r.1.0.mca
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_the_end/data/villages.dat
Executable file
BIN
SAMe/server/Lobbyy_the_end/data/villages.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_the_end/data/villages_end.dat
Executable file
BIN
SAMe/server/Lobbyy_the_end/data/villages_end.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_the_end/data/villages_nether.dat
Executable file
BIN
SAMe/server/Lobbyy_the_end/data/villages_nether.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_the_end/level.dat
Executable file
BIN
SAMe/server/Lobbyy_the_end/level.dat
Executable file
Binary file not shown.
BIN
SAMe/server/Lobbyy_the_end/level.dat_old
Executable file
BIN
SAMe/server/Lobbyy_the_end/level.dat_old
Executable file
Binary file not shown.
1
SAMe/server/Lobbyy_the_end/session.lock
Executable file
1
SAMe/server/Lobbyy_the_end/session.lock
Executable file
@@ -0,0 +1 @@
|
||||
☃
|
1
SAMe/server/Lobbyy_the_end/uid.dat
Executable file
1
SAMe/server/Lobbyy_the_end/uid.dat
Executable file
@@ -0,0 +1 @@
|
||||
Ј<EFBFBD><EFBFBD> <20>@w<><77><EFBFBD>u<EFBFBD>u}G
|
10
SAMe/server/Server.desktop
Executable file
10
SAMe/server/Server.desktop
Executable file
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Server
|
||||
Comment=Paper-Minecraft-Server
|
||||
Exec=java -Xmx2G -jar paper.jar --nogui
|
||||
Icon=
|
||||
Path=
|
||||
Terminal=false
|
||||
StartupNotify=false
|
1
SAMe/server/banned-ips.json
Executable file
1
SAMe/server/banned-ips.json
Executable file
@@ -0,0 +1 @@
|
||||
[]
|
1
SAMe/server/banned-players.json
Executable file
1
SAMe/server/banned-players.json
Executable file
@@ -0,0 +1 @@
|
||||
[]
|
41
SAMe/server/bukkit.yml
Executable file
41
SAMe/server/bukkit.yml
Executable file
@@ -0,0 +1,41 @@
|
||||
# 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
|
||||
# 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 https://www.spigotmc.org/go/irc )
|
||||
# Forums: https://www.spigotmc.org/
|
||||
# Bug tracker: https://www.spigotmc.org/go/bugs
|
||||
|
||||
|
||||
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: 15
|
||||
water-ambient: 20
|
||||
ambient: 15
|
||||
chunk-gc:
|
||||
period-in-ticks: 600
|
||||
ticks-per:
|
||||
animal-spawns: 400
|
||||
monster-spawns: 1
|
||||
water-spawns: 1
|
||||
water-ambient-spawns: 1
|
||||
ambient-spawns: 1
|
||||
autosave: 6000
|
||||
aliases: now-in-commands.yml
|
17
SAMe/server/commands.yml
Executable file
17
SAMe/server/commands.yml
Executable file
@@ -0,0 +1,17 @@
|
||||
# This is the commands configuration file for Bukkit.
|
||||
# For documentation on how to make use of this file, check out the Bukkit Wiki at
|
||||
# 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 https://www.spigotmc.org/go/irc )
|
||||
# Forums: https://www.spigotmc.org/
|
||||
# Bug tracker: https://www.spigotmc.org/go/bugs
|
||||
|
||||
command-block-overrides: []
|
||||
ignore-vanilla-permissions: false
|
||||
aliases:
|
||||
icanhasbukkit:
|
||||
- version $1-
|
BIN
SAMe/server/dumps/heap-dump-2021-04-10_10.54.52.hprof
Executable file
BIN
SAMe/server/dumps/heap-dump-2021-04-10_10.54.52.hprof
Executable file
Binary file not shown.
4
SAMe/server/eula.txt
Executable file
4
SAMe/server/eula.txt
Executable file
@@ -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.
|
||||
#Sat Oct 17 18:51:40 CEST 2020
|
||||
eula=true
|
56
SAMe/server/help.yml
Executable file
56
SAMe/server/help.yml
Executable file
@@ -0,0 +1,56 @@
|
||||
# This is the help configuration file for Bukkit.
|
||||
#
|
||||
# By default you do not need to modify this file. Help topics for all plugin commands are automatically provided by
|
||||
# or extracted from your installed plugins. You only need to modify this file if you wish to add new help pages to
|
||||
# your server or override the help pages of existing plugin commands.
|
||||
#
|
||||
# This file is divided up into the following parts:
|
||||
# -- general-topics: lists admin defined help topics
|
||||
# -- index-topics: lists admin defined index topics
|
||||
# -- amend-topics: lists topic amendments to apply to existing help topics
|
||||
# -- ignore-plugins: lists any plugins that should be excluded from help
|
||||
#
|
||||
# Examples are given below. When amending command topic, the string <text> will be replaced with the existing value
|
||||
# in the help topic. Color codes can be used in topic text. The color code character is & followed by 0-F.
|
||||
# ================================================================
|
||||
#
|
||||
# Set this to true to list the individual command help topics in the master help.
|
||||
# command-topics-in-master-index: true
|
||||
#
|
||||
# Each general topic will show up as a separate topic in the help index along with all the plugin command topics.
|
||||
# general-topics:
|
||||
# Rules:
|
||||
# shortText: Rules of the server
|
||||
# fullText: |
|
||||
# &61. Be kind to your fellow players.
|
||||
# &B2. No griefing.
|
||||
# &D3. No swearing.
|
||||
# permission: topics.rules
|
||||
#
|
||||
# Each index topic will show up as a separate sub-index in the help index along with all the plugin command topics.
|
||||
# To override the default help index (displayed when the user executes /help), name the index topic "Default".
|
||||
# index-topics:
|
||||
# Ban Commands:
|
||||
# shortText: Player banning commands
|
||||
# preamble: Moderator - do not abuse these commands
|
||||
# permission: op
|
||||
# commands:
|
||||
# - /ban
|
||||
# - /ban-ip
|
||||
# - /banlist
|
||||
#
|
||||
# Topic amendments are used to change the content of automatically generated plugin command topics.
|
||||
# amended-topics:
|
||||
# /stop:
|
||||
# shortText: Stops the server cold....in its tracks!
|
||||
# fullText: <text> - This kills the server.
|
||||
# permission: you.dont.have
|
||||
#
|
||||
# Any plugin in the ignored plugins list will be excluded from help. The name must match the name displayed by
|
||||
# the /plugins command. Ignore "Bukkit" to remove the standard bukkit commands from the index. Ignore "All"
|
||||
# to completely disable automatic help topic generation.
|
||||
# ignore-plugins:
|
||||
# - PluginNameOne
|
||||
# - PluginNameTwo
|
||||
# - PluginNameThree
|
||||
|
BIN
SAMe/server/logs/2020-10-17-1.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-17-1.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-17-2.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-17-2.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-17-3.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-17-3.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-17-4.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-17-4.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-17-5.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-17-5.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-17-6.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-17-6.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-17-7.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-17-7.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-17-8.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-17-8.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-17-9.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-17-9.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-18-1.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-18-1.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-18-10.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-18-10.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-18-11.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-18-11.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-18-12.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-18-12.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-18-13.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-18-13.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-18-14.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-18-14.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-18-15.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-18-15.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-18-16.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-18-16.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-18-17.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-18-17.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-18-18.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-18-18.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-18-19.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-18-19.log.gz
Executable file
Binary file not shown.
BIN
SAMe/server/logs/2020-10-18-2.log.gz
Executable file
BIN
SAMe/server/logs/2020-10-18-2.log.gz
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