diff --git a/.gitignore b/.gitignore index c149166..0daa1c5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,10 @@ # eclipse -bin *.launch -.settings -.metadata -.classpath -.project +/.settings +/.metadata +/.classpath +/.project +/eclipse # idea out @@ -18,14 +18,9 @@ build .gradle # other -eclipse -run -saves -screenshots +/bin logs -config crash-reports -world whitelist.json usercache.json usernamecache.json @@ -39,4 +34,4 @@ CREDITS-fml.txt forge-*changelog.txt LICENSE-fml.txt MinecraftForge-*.txt -README.txt \ No newline at end of file +README.txt diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..d49c609 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,9 @@ +# [The MIT License (MIT)](https://sites.google.com/site/furglsmods/licensing) + +Copyright (c) 2016 Jake Pollard + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..07f56f6 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# [AutoPickup](https://sites.google.com/site/furglsmods/auto-pickup) +Auto Pickup allows items to be picked up automatically or blacklisted and never picked up. Whenever you do something that creates an item, that item will be automatically placed in your inventory (if it is not in your blacklist). Experience will also be given to you automatically. This works with all modded items! diff --git a/build.gradle b/build.gradle index 3946b7d..70bb07c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,44 +1,32 @@ -/* -// For those who want the bleeding edge buildscript { repositories { - jcenter() + mavenCentral() maven { name = "forge" url = "http://files.minecraftforge.net/maven" } + maven { + name = "sonatype" + url = "https://oss.sonatype.org/content/repositories/snapshots/" + } } dependencies { - classpath 'net.minecraftforge.gradle:ForgeGradle:2.0-SNAPSHOT' + classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT' } } -apply plugin: 'net.minecraftforge.gradle.forge' -*/ -// for people who want stable -plugins { - id "net.minecraftforge.gradle.forge" version "2.0.2" -} +apply plugin: 'forge' -version = "1.8-2.1" +version = "1.7.10-2.0" group= "furgl.autoPickup" // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = "AutoPickup" sourceCompatibility = 1.7 targetCompatibility = 1.7 - minecraft { - version = "1.8-11.14.4.1563" - runDir = "run" - - // the mappings can be changed at any time, and must be in the following format. - // snapshot_YYYYMMDD snapshot are built nightly. - // stable_# stables are built at the discretion of the MCP team. - // Use non-default mappings at your own risk. they may not allways work. - // simply re-run your setup task after changing the mappings to update your workspace. - mappings = "snapshot_20141130" - // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable. + version = "1.7.10-10.13.4.1566-1.7.10" + runDir = "eclipse" } dependencies { @@ -51,14 +39,6 @@ dependencies { //compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env //compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env - // the 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime. - //provided 'com.mod-buildcraft:buildcraft:6.0.8:dev' - - // the deobf configurations: 'deobfCompile' and 'deobfProvided' are the same as the normal compile and provided, - // except that these dependencies get remapped to your current MCP mappings - //deobfCompile 'com.mod-buildcraft:buildcraft:6.0.8:dev' - //deobfProvided 'com.mod-buildcraft:buildcraft:6.0.8:dev' - // for more info... // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html // http://www.gradle.org/docs/current/userguide/dependency_management.html diff --git a/config/autopickup.cfg b/config/autopickup.cfg new file mode 100644 index 0000000..3fbc8f8 --- /dev/null +++ b/config/autopickup.cfg @@ -0,0 +1,17 @@ +# Configuration file + +furgl { + B:AutoAdd=true + S:"Blacklisted Items" < + Dirt + > +} + + +player563 { + B:AutoAdd=true + S:"Blacklisted Items" < + > +} + + diff --git a/config/forge.cfg b/config/forge.cfg new file mode 100644 index 0000000..743322e --- /dev/null +++ b/config/forge.cfg @@ -0,0 +1,69 @@ +# Configuration file + +general { + # Set to true to disable Forge's version check mechanics. Forge queries a small json file on our server for version information. For more details see the ForgeVersion class in our github. + B:disableVersionCheck=false + + # Controls the number threshold at which Packet51 is preferred over Packet52, default and minimum 64, maximum 1024 + I:clumpingThreshold=64 + + # Set to true to enable the post initialization sorting of crafting recipes using Forge's sorter. May cause desyncing on conflicting recipies. MUST RESTART MINECRAFT IF CHANGED FROM THE CONFIG GUI. + B:sortRecipies=true + + # Set this to true to remove any Entity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES. + B:removeErroringEntities=false + + # Set this to true to remove any TileEntity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES. + B:removeErroringTileEntities=false + + # Set this to true to check the entire entity's collision bounding box for ladders instead of just the block they are in. Causes noticable differences in mechanics so default is vanilla behavior. Default: false + B:fullBoundingBoxLadders=false + + # Control the range of sky blending for colored skies in biomes. + I:biomeSkyBlendRange < + 2 + 4 + 6 + 8 + 10 + 12 + 14 + 16 + 18 + 20 + 22 + 24 + 26 + 28 + 30 + 32 + 34 + > + + # Base zombie summoning spawn chance. Allows changing the bonus zombie summoning mechanic. + D:zombieBaseSummonChance=0.1 + + # Chance that a zombie (or subclass) is a baby. Allows changing the zombie spawning mechanic. + D:zombieBabyChance=0.05 + + # The spawn fuzz when a player respawns in the world, this is controlable by WorldType, this config option is for the default overworld. + I:defaultSpawnFuzz=20 + + # If the overworld has ANY spawn fuzz at all. If not, the spawn will always be the exact same location. + B:spawnHasFuzz=true + + # Enable the forge block rendering pipeline - fixes the lighting of custom models. + B:forgeLightPipelineEnabled=true + + # Set this to just disable the texture stitcher from writing the '{name}_{mipmap}.png files to disc. Just a small performance tweak. Default: true + B:disableStitchedFileSaving=true + B:enableGlobalConfig=false +} + + +version_checking { + # Enable the entire mod update check system. This only applies to mods using the Forge system. + B:Global=true +} + + diff --git a/config/forgeChunkLoading.cfg b/config/forgeChunkLoading.cfg new file mode 100644 index 0000000..3051bdf --- /dev/null +++ b/config/forgeChunkLoading.cfg @@ -0,0 +1,47 @@ +# Configuration file + +########################################################################################################## +# Forge +#--------------------------------------------------------------------------------------------------------# +# Sample mod specific control section. +# Copy this section and rename the with the modid for the mod you wish to override. +# A value of zero in either entry effectively disables any chunkloading capabilities +# for that mod +########################################################################################################## + +Forge { + # Maximum chunks per ticket for the mod. + I:maximumChunksPerTicket=25 + + # Maximum ticket count for the mod. Zero disables chunkloading capabilities. + I:maximumTicketCount=200 +} + + +########################################################################################################## +# defaults +#--------------------------------------------------------------------------------------------------------# +# Default configuration for forge chunk loading control +########################################################################################################## + +defaults { + # Are mod overrides enabled? + B:enabled=true + + # The default maximum number of chunks a mod can force, per ticket, + # for a mod without an override. This is the maximum number of chunks a single ticket can force. + I:maximumChunksPerTicket=25 + + # The default maximum ticket count for a mod which does not have an override + # in this file. This is the number of chunk loading requests a mod is allowed to make. + I:maximumTicketCount=200 + + # The number of tickets a player can be assigned instead of a mod. This is shared across all mods and it is up to the mods to use it. + I:playerTicketCount=500 + + # Unloaded chunks can first be kept in a dormant cache for quicker + # loading times. Specify the size (in chunks) of that cache here + I:dormantChunkCacheSize=0 +} + + diff --git a/config/splash.properties b/config/splash.properties new file mode 100644 index 0000000..fbf0dec --- /dev/null +++ b/config/splash.properties @@ -0,0 +1,14 @@ +#Splash screen properties +#Thu Sep 01 13:57:38 CDT 2016 +logoTexture=textures/gui/title/mojang.png +background=0xFFFFFF +font=0x0 +barBackground=0xFFFFFF +barBorder=0xC0C0C0 +rotate=false +bar=0xCB3D35 +enabled=true +resourcePackPath=resources +logoOffset=0 +forgeTexture=fml\:textures/gui/forge.gif +fontTexture=textures/font/ascii.png diff --git a/eula.txt b/eula.txt deleted file mode 100644 index a356e0d..0000000 --- a/eula.txt +++ /dev/null @@ -1,3 +0,0 @@ -#By changing the setting below to TRUE you are indicating your agreement to our EULA (https://account.mojang.com/documents/minecraft_eula). -#Thu Sep 01 13:54:19 CDT 2016 -eula=true diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 30d399d..b761216 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 9397848..678d9d8 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Mon Sep 14 12:28:28 PDT 2015 +#Wed Jul 02 15:54:47 CDT 2014 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-2.0-bin.zip diff --git a/run/config/forge.cfg b/run/config/forge.cfg new file mode 100644 index 0000000..976d134 --- /dev/null +++ b/run/config/forge.cfg @@ -0,0 +1,57 @@ +# Configuration file + +general { + # Set to true to disable Forge's version check mechanics. Forge queries a small json file on our server for version information. For more details see the ForgeVersion class in our github. + B:disableVersionCheck=false + + # Controls the number threshold at which Packet51 is preferred over Packet52, default and minimum 64, maximum 1024 + I:clumpingThreshold=64 + + # Set to true to enable the post initialization sorting of crafting recipes using Forge's sorter. May cause desyncing on conflicting recipies. MUST RESTART MINECRAFT IF CHANGED FROM THE CONFIG GUI. + B:sortRecipies=true + + # Set this to true to remove any Entity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES. + B:removeErroringEntities=false + + # Set this to true to remove any TileEntity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES. + B:removeErroringTileEntities=false + + # Set this to true to check the entire entity's collision bounding box for ladders instead of just the block they are in. Causes noticable differences in mechanics so default is vanilla behavior. Default: false + B:fullBoundingBoxLadders=false + + # Control the range of sky blending for colored skies in biomes. + I:biomeSkyBlendRange < + 2 + 4 + 6 + 8 + 10 + 12 + 14 + 16 + 18 + 20 + 22 + 24 + 26 + 28 + 30 + 32 + 34 + > + + # Base zombie summoning spawn chance. Allows changing the bonus zombie summoning mechanic. + D:zombieBaseSummonChance=0.1 + + # Chance that a zombie (or subclass) is a baby. Allows changing the zombie spawning mechanic. + D:zombieBabyChance=0.05 + + # The spawn fuzz when a player respawns in the world, this is controlable by WorldType, this config option is for the default overworld. + I:defaultSpawnFuzz=20 + + # If the overworld has ANY spawn fuzz at all. If not, the spawn will always be the exact same location. + B:spawnHasFuzz=true + B:enableGlobalConfig=false +} + + diff --git a/run/config/forgeChunkLoading.cfg b/run/config/forgeChunkLoading.cfg new file mode 100644 index 0000000..3051bdf --- /dev/null +++ b/run/config/forgeChunkLoading.cfg @@ -0,0 +1,47 @@ +# Configuration file + +########################################################################################################## +# Forge +#--------------------------------------------------------------------------------------------------------# +# Sample mod specific control section. +# Copy this section and rename the with the modid for the mod you wish to override. +# A value of zero in either entry effectively disables any chunkloading capabilities +# for that mod +########################################################################################################## + +Forge { + # Maximum chunks per ticket for the mod. + I:maximumChunksPerTicket=25 + + # Maximum ticket count for the mod. Zero disables chunkloading capabilities. + I:maximumTicketCount=200 +} + + +########################################################################################################## +# defaults +#--------------------------------------------------------------------------------------------------------# +# Default configuration for forge chunk loading control +########################################################################################################## + +defaults { + # Are mod overrides enabled? + B:enabled=true + + # The default maximum number of chunks a mod can force, per ticket, + # for a mod without an override. This is the maximum number of chunks a single ticket can force. + I:maximumChunksPerTicket=25 + + # The default maximum ticket count for a mod which does not have an override + # in this file. This is the number of chunk loading requests a mod is allowed to make. + I:maximumTicketCount=200 + + # The number of tickets a player can be assigned instead of a mod. This is shared across all mods and it is up to the mods to use it. + I:playerTicketCount=500 + + # Unloaded chunks can first be kept in a dormant cache for quicker + # loading times. Specify the size (in chunks) of that cache here + I:dormantChunkCacheSize=0 +} + + diff --git a/run/saves/New World/DIM-1/data/villages.dat b/run/saves/New World/DIM-1/data/villages.dat new file mode 100644 index 0000000..da4bddb Binary files /dev/null and b/run/saves/New World/DIM-1/data/villages.dat differ diff --git a/run/saves/New World/DIM-1/forcedchunks.dat b/run/saves/New World/DIM-1/forcedchunks.dat new file mode 100644 index 0000000..e434547 Binary files /dev/null and b/run/saves/New World/DIM-1/forcedchunks.dat differ diff --git a/run/saves/New World/DIM1/data/villages.dat b/run/saves/New World/DIM1/data/villages.dat new file mode 100644 index 0000000..da4bddb Binary files /dev/null and b/run/saves/New World/DIM1/data/villages.dat differ diff --git a/run/saves/New World/DIM1/forcedchunks.dat b/run/saves/New World/DIM1/forcedchunks.dat new file mode 100644 index 0000000..e434547 Binary files /dev/null and b/run/saves/New World/DIM1/forcedchunks.dat differ diff --git a/run/saves/New World/data/Village.dat b/run/saves/New World/data/Village.dat new file mode 100644 index 0000000..0806f7e Binary files /dev/null and b/run/saves/New World/data/Village.dat differ diff --git a/run/saves/New World/data/villages.dat b/run/saves/New World/data/villages.dat new file mode 100644 index 0000000..7fd5a3e Binary files /dev/null and b/run/saves/New World/data/villages.dat differ diff --git a/run/saves/New World/forcedchunks.dat b/run/saves/New World/forcedchunks.dat new file mode 100644 index 0000000..e434547 Binary files /dev/null and b/run/saves/New World/forcedchunks.dat differ diff --git a/run/saves/New World/level.dat b/run/saves/New World/level.dat new file mode 100644 index 0000000..7def5b8 Binary files /dev/null and b/run/saves/New World/level.dat differ diff --git a/run/saves/New World/level.dat_mcr b/run/saves/New World/level.dat_mcr new file mode 100644 index 0000000..1b53079 Binary files /dev/null and b/run/saves/New World/level.dat_mcr differ diff --git a/run/saves/New World/level.dat_old b/run/saves/New World/level.dat_old new file mode 100644 index 0000000..7796d78 Binary files /dev/null and b/run/saves/New World/level.dat_old differ diff --git a/run/saves/New World/playerdata/9c66b502-7304-3207-92e6-8d6afcf30d77.dat b/run/saves/New World/playerdata/9c66b502-7304-3207-92e6-8d6afcf30d77.dat new file mode 100644 index 0000000..90d4164 Binary files /dev/null and b/run/saves/New World/playerdata/9c66b502-7304-3207-92e6-8d6afcf30d77.dat differ diff --git a/run/saves/New World/region/r.-1.-1.mca b/run/saves/New World/region/r.-1.-1.mca new file mode 100644 index 0000000..83fb792 Binary files /dev/null and b/run/saves/New World/region/r.-1.-1.mca differ diff --git a/run/saves/New World/region/r.-1.0.mca b/run/saves/New World/region/r.-1.0.mca new file mode 100644 index 0000000..ed2f7f6 Binary files /dev/null and b/run/saves/New World/region/r.-1.0.mca differ diff --git a/run/saves/New World/region/r.-2.-1.mca b/run/saves/New World/region/r.-2.-1.mca new file mode 100644 index 0000000..b1f9d0d Binary files /dev/null and b/run/saves/New World/region/r.-2.-1.mca differ diff --git a/run/saves/New World/region/r.-2.0.mca b/run/saves/New World/region/r.-2.0.mca new file mode 100644 index 0000000..020b11c Binary files /dev/null and b/run/saves/New World/region/r.-2.0.mca differ diff --git a/run/saves/New World/region/r.0.-1.mca b/run/saves/New World/region/r.0.-1.mca new file mode 100644 index 0000000..60e97c5 Binary files /dev/null and b/run/saves/New World/region/r.0.-1.mca differ diff --git a/run/saves/New World/region/r.0.0.mca b/run/saves/New World/region/r.0.0.mca new file mode 100644 index 0000000..6b1c478 Binary files /dev/null and b/run/saves/New World/region/r.0.0.mca differ diff --git a/run/saves/New World/session.lock b/run/saves/New World/session.lock new file mode 100644 index 0000000..c4eed0c Binary files /dev/null and b/run/saves/New World/session.lock differ diff --git a/run/saves/New World/stats/9c66b502-7304-3207-92e6-8d6afcf30d77.json b/run/saves/New World/stats/9c66b502-7304-3207-92e6-8d6afcf30d77.json new file mode 100644 index 0000000..745d480 --- /dev/null +++ b/run/saves/New World/stats/9c66b502-7304-3207-92e6-8d6afcf30d77.json @@ -0,0 +1 @@ +{"stat.jump":1,"stat.playOneMinute":260,"achievement.openInventory":2,"achievement.exploreAllBiomes":{"value":0,"progress":["Plains"]}} \ No newline at end of file diff --git a/world/DIM-1/data/villages_nether.dat b/world/DIM-1/data/villages_nether.dat new file mode 100644 index 0000000..98ab350 Binary files /dev/null and b/world/DIM-1/data/villages_nether.dat differ diff --git a/world/DIM-1/forcedchunks.dat b/world/DIM-1/forcedchunks.dat new file mode 100644 index 0000000..e434547 Binary files /dev/null and b/world/DIM-1/forcedchunks.dat differ diff --git a/world/DIM1/data/villages_end.dat b/world/DIM1/data/villages_end.dat new file mode 100644 index 0000000..98ab350 Binary files /dev/null and b/world/DIM1/data/villages_end.dat differ diff --git a/world/DIM1/forcedchunks.dat b/world/DIM1/forcedchunks.dat new file mode 100644 index 0000000..e434547 Binary files /dev/null and b/world/DIM1/forcedchunks.dat differ diff --git a/world/data/Temple.dat b/world/data/Temple.dat new file mode 100644 index 0000000..c90b1fe Binary files /dev/null and b/world/data/Temple.dat differ diff --git a/world/data/villages.dat b/world/data/villages.dat new file mode 100644 index 0000000..98ab350 Binary files /dev/null and b/world/data/villages.dat differ diff --git a/world/forcedchunks.dat b/world/forcedchunks.dat new file mode 100644 index 0000000..e434547 Binary files /dev/null and b/world/forcedchunks.dat differ diff --git a/world/level.dat b/world/level.dat new file mode 100644 index 0000000..95fc617 Binary files /dev/null and b/world/level.dat differ diff --git a/world/level.dat_old b/world/level.dat_old new file mode 100644 index 0000000..ce488e5 Binary files /dev/null and b/world/level.dat_old differ diff --git a/world/playerdata/1e92cadb-e057-30f8-a789-5ce10551ba1e.dat b/world/playerdata/1e92cadb-e057-30f8-a789-5ce10551ba1e.dat new file mode 100644 index 0000000..e1ccf63 Binary files /dev/null and b/world/playerdata/1e92cadb-e057-30f8-a789-5ce10551ba1e.dat differ diff --git a/world/playerdata/e0e4674b-7fd0-3fe6-868c-b84d2f6bdc8c.dat b/world/playerdata/e0e4674b-7fd0-3fe6-868c-b84d2f6bdc8c.dat new file mode 100644 index 0000000..6530e99 Binary files /dev/null and b/world/playerdata/e0e4674b-7fd0-3fe6-868c-b84d2f6bdc8c.dat differ diff --git a/world/playerdata/f08951bc-e379-4f19-a113-7728b0367647.dat b/world/playerdata/f08951bc-e379-4f19-a113-7728b0367647.dat new file mode 100644 index 0000000..35c5beb Binary files /dev/null and b/world/playerdata/f08951bc-e379-4f19-a113-7728b0367647.dat differ diff --git a/world/region/r.-1.-1.mca b/world/region/r.-1.-1.mca new file mode 100644 index 0000000..6adc112 Binary files /dev/null and b/world/region/r.-1.-1.mca differ diff --git a/world/region/r.-1.0.mca b/world/region/r.-1.0.mca new file mode 100644 index 0000000..cf17497 Binary files /dev/null and b/world/region/r.-1.0.mca differ diff --git a/world/region/r.0.0.mca b/world/region/r.0.0.mca new file mode 100644 index 0000000..c2cfcdc Binary files /dev/null and b/world/region/r.0.0.mca differ diff --git a/world/session.lock b/world/session.lock new file mode 100644 index 0000000..e70569a Binary files /dev/null and b/world/session.lock differ diff --git a/world/stats/1e92cadb-e057-30f8-a789-5ce10551ba1e.json b/world/stats/1e92cadb-e057-30f8-a789-5ce10551ba1e.json new file mode 100644 index 0000000..6c2a596 --- /dev/null +++ b/world/stats/1e92cadb-e057-30f8-a789-5ce10551ba1e.json @@ -0,0 +1 @@ +{"stat.flyOneCm":2113,"stat.walkOneCm":4459,"stat.drop":5,"stat.jump":17,"stat.swimOneCm":5355,"stat.playerKills":3,"stat.playOneMinute":3158,"stat.fallOneCm":211,"stat.leaveGame":1,"stat.damageTaken":10,"stat.damageDealt":645,"stat.mineBlock.minecraft.red_flower":1,"stat.timeSinceDeath":3158,"stat.mineBlock.minecraft.dirt":3,"stat.sprintOneCm":1350,"achievement.exploreAllBiomes":{"value":0,"progress":["River","Plains","Swampland"]},"stat.diveOneCm":1905,"stat.useItem.minecraft.diamond_sword":5} \ No newline at end of file diff --git a/world/stats/e0e4674b-7fd0-3fe6-868c-b84d2f6bdc8c.json b/world/stats/e0e4674b-7fd0-3fe6-868c-b84d2f6bdc8c.json new file mode 100644 index 0000000..170fe75 --- /dev/null +++ b/world/stats/e0e4674b-7fd0-3fe6-868c-b84d2f6bdc8c.json @@ -0,0 +1 @@ +{"stat.flyOneCm":4729,"stat.deaths":3,"stat.walkOneCm":5195,"stat.jump":53,"stat.swimOneCm":1700,"stat.playOneMinute":2783,"stat.leaveGame":1,"stat.damageTaken":645,"stat.damageDealt":10,"stat.mineBlock.minecraft.red_flower":1,"stat.timeSinceDeath":0,"stat.sprintOneCm":2916,"stat.mineBlock.minecraft.dirt":1,"achievement.exploreAllBiomes":{"value":0,"progress":["River","Plains","Swampland"]},"stat.mineBlock.minecraft.tallgrass":6,"stat.diveOneCm":1666} \ No newline at end of file diff --git a/world/stats/f08951bc-e379-4f19-a113-7728b0367647.json b/world/stats/f08951bc-e379-4f19-a113-7728b0367647.json new file mode 100644 index 0000000..ed21f3d --- /dev/null +++ b/world/stats/f08951bc-e379-4f19-a113-7728b0367647.json @@ -0,0 +1 @@ +{"stat.flyOneCm":2153,"stat.walkOneCm":2339,"stat.drop":1,"stat.jump":12,"stat.swimOneCm":95,"stat.playOneMinute":1058,"stat.leaveGame":1,"stat.timeSinceDeath":1058,"stat.sprintOneCm":2024,"stat.mineBlock.minecraft.dirt":4,"achievement.exploreAllBiomes":{"value":0,"progress":["River","Plains"]},"stat.diveOneCm":538} \ No newline at end of file