Regular backup

This commit is contained in:
bento64 2022-08-04 23:38:54 +07:00
parent e89bb7193e
commit e0cb8e69a3
Signed by: bento64
GPG Key ID: CF044E72D9A681CF
130 changed files with 4534 additions and 123 deletions

View File

@ -1 +1 @@
java -Xmx2048M -Xms2048M -jar ./core.jar
java -Xmx4096M -Xms4096M -jar ./core.jar

BIN
logs/2022-08-04-5.log.gz Normal file

Binary file not shown.

BIN
logs/2022-08-04-6.log.gz Normal file

Binary file not shown.

BIN
logs/2022-08-04-7.log.gz Normal file

Binary file not shown.

BIN
logs/2022-08-04-8.log.gz Normal file

Binary file not shown.

BIN
logs/2022-08-04-9.log.gz Normal file

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,418 @@
# AntiCheatReloaded checks configuration file
# Checks that have multiple modules need to be disabled on a per-module basis
# If you have a false positive and can't determine what subcheck it's from,
# enable debug-mode in config.yml and compare the results against the commented values
# Flight check settings
# Checks if a player moves wrongly in the air
flight:
# Checks for prolonged air movement
# Debugs as 'tried to fly on the Y-axis' or 'had too little Y dropoff'
airFlight:
# Should this part of the check be enabled?
enabled: true
# How many milliseconds to account for block placement
# Increase this if you get false positives when building a tower
accountForBlockPlacement: 1200
# How many milliseconds to account for TPS drops
# Increase this if you get false positives when building a tower during TPS drops
accountForTpsDrops: 300
# How many milliseconds to account for teleports
# Increase this is you debug 'had too little Y dropoff' after teleports
accountForTeleports: 500
# Checks for climbing behaviour in air
# Debugs as 'tried to climb air'
airClimb:
# Should this part of the check be enabled?
enabled: true
# How many milliseconds to account for teleports
# Increase this is you debug 'tried to climb air' after teleports
accountForTeleports: 300
# Checks if a player is faking it's ground status to fly
# Debugs as 'faked ground to fly'
groundFlight:
# Should this part of the check be enabled?
enabled: true
# Checks if a player ignores gravity
# Debugs as 'ignored gravity'
gravity:
# Should this part of the check be enabled?
enabled: true
# Maximum offset between predicted and actual gravity
maxOffset: 0.005
# How many milliseconds to account for teleports
# Increase this is you debug 'ignored gravity' after teleports
accountForTeleports: 300
# Amount of illegal moves before flagging
vlBeforeFlag: 5
# ElytraFly check settings
# Checks for illegal upward elytra movement
elytrafly:
# Should this check be enabled?
enabled: true
# Speed check settings
# Checks if a player moves too fast
speed:
# Checks movement speed in the air
# Debugs as 'moved too fast in air'
airSpeed:
# Should this part of the check be enabled?
enabled: true
# Base unadjusted air speed limit
baseLimit: 0.0315
# Prediction multiplier for custom walk speeds
walkSpeedMultiplier: 1.4
# Checks movement acceleration in the air
# Debugs as 'exceeded acceleration limits'
airAcceleration:
# Should this part of the check be enabled?
enabled: true
# Base unadjusted air acceleration limit
baseLimit: 0.375
# Limit multiplier for custom walk speeds
walkSpeedMultiplier: 1.4
# Checks movement acceleration in the air
# Debugs as 'had unexpected jumping behaviour'
jumpBehaviour:
# Should this part of the check be enabled?
enabled: true
# Minimum movement distance needed to flag
minimumDistXZ: 0.42
# Checks movement speed on the ground
# Debugs as 'moved too fast on ground'
groundSpeed:
# Should this part of the check be enabled?
enabled: true
# Initial speed limit value
initialLimit: 0.34
# Checks movement acceleration in the air
# Debugs as 'exceeded vertical speed limit'
verticalSpeed:
# Should this part of the check be enabled?
enabled: true
# Extra compensation when moving off a ladder up a slab
climbableCompensation: 0.04
# Strafe check settings
# Checks if a player switches movement angle in air
strafe:
# Should this check be enabled?
enabled: true
# How many milliseconds to account for teleports
accountForTeleports: 300
# Maximum angle change when moving in air
maxAngleChange: 0.58
# Minimum movement distance for the strafe check to be active
minActivationDistance: 0.05
# WaterWalk check settings
# Checks if a player is walking on water
waterwalk:
# Checks for vanilla water walking/jumping
# Debugs as 'tried to walk on water'
walk:
# Should this part of the check be enabled?
enabled: true
# Minimum xz distance before flagging
# This combats false positives, while giving hackers not much leniency
minimumDistXZ: 0.092
# Checks for small hops on top of water
# Debugs as 'tried to hop on water'
hop:
# Should this part of the check be enabled?
enabled: true
# Maximum lunge Y motion to flag
maxMotionY: 0.1
# Checks for small lunges in water
# Debugs as 'tried to lunge in water'
lunge:
# Should this part of the check be enabled?
enabled: true
# Minimum xz distance before flagging
# This combats false positives, while giving hackers not much leniency
minimumDistXZ: 0.098
# FastLadder check settings
# Checks if a player moves too fast on a ladder
fastladder:
# Should this check be enabled?
enabled: true
# Maximum speed a player on a ladder can travel upwards
speedUpMax: 0.11761
# Maximum speed a player on a ladder can travel downwards
speedDownMax: 0.15
# Amount of illegal ladder moves before flagging
vlBeforeFlag: 3
# BoatFly check settings
# Checks if the player is flying in a boat
boatfly:
# Should this check be enabled?
enabled: true
# Amount of in-boat airborne moments before flagging
vlBeforeFlag: 2
# KillAura check settings
# Checks if the player uses a form of kill aura
killaura:
# Checks reach distance in fights
# Debugs as 'reached too far'
reach:
# Should this part of the check be enabled?
enabled: true
# Maximum base reach distances
baseMaxValue:
# Maximum base reach value
normal: 3.5
# Maximum base reach value when a player has velocity
velocitized: 4.0
# Settings for lag compensation
lagCompensation:
# Basic extra allowed reach when a player is lagging
lagExtraReach: 0.2
# Extra allowed reach distance per millisecond of ping
pingCompensation: 0.0025
# The multiplier of extra compensation for velocity
velocityMultiplier: 1.3
# Checks if the target it within a players viewing angle
# Debugs as 'tried to attack from an illegal angle'
angle:
# Should this part of the check be enabled?
enabled: true
# Maximum difference in angle from the players view
maxDifference: 60
# Amount of illegally angled hits before flagging
vlBeforeFlag: 3
# Checks if the player has a suspicious packet order
# Debugs as 'suspicious packet order'
packetOrder:
# Should this part of the check be enabled?
enabled: true
# Minimum server TPS needed for the packet order subcheck to be active
minimumTps: 17.5
# Minimum elapsed time in milliseconds between a movement packet and a combat packet
minElapsedTime: 5
# Amount of suspicious combat packet situations before flagging
vlBeforeFlag: 3
# Aimbot check settings
# Checks if the player is sending aimbot-like movements
aimbot:
# Should this check be enabled?
enabled: true
# Maximum pitch acceleration for check to consider aim illegal
minAcceleration: 5.5
# Maximum mod value for check to consider aim illegal
maxMod: 0.001
# Criticals check settings
# Checks if the player tries to do a crit without needed conditions
criticals:
# Should this check be enabled?
enabled: true
# Velocity check settings
# Checks if the player ignores knockback
velocity:
# Should this check be enabled?
enabled: true
# Minimum percentage of the given knockback a player has to meet
minimumPercentage: 75
# Amount of low-velocity moments before flagging
vlBeforeFlag: 2
# FastPlace check settings
# Checks if the player places blocks too fast
fastplace:
# Should this check be enabled?
enabled: true
# Minimum time in milliseconds between block places
minimumTime: 50
# Amount of fastplace-moments before flagging a survival player
vlBeforeFlagSurvival: 3
# Amount of fastplace-moments before flagging a creative player
vlBeforeFlagCreative: 4
# Amount of time in milliseconds to prevent a player from placing blocks after flagging
blockPlacementTime: 1000
# IllegalInteract check settings
# Checks if the player is using, placing or breaking blocks from illegal angles
illegalinteract:
# Maximum difference in angle from the players view
maxAngleDifference: 90
# Checks angle when breaking a block
# Debugs as 'tried to break a block which was out of view'
break:
# Should this part of the check be enabled?
enabled: true
# Checks angle when placing a block
# Debugs as 'tried to place a block which was out of view'
place:
# Should this part of the check be enabled?
enabled: true
# Checks angle when placing a block
# Debugs as 'tried to interact out of range' or 'tried to interact out of view'
interact:
# Should this part of the check be enabled?
enabled: true
# Default survival interact range
survivalRange: 5.8
# Default creative interact range
creativeRange: 6.8
# Extra allowed reach distance per millisecond of ping
pingCompensation: 0.0045
# The multiplier of extra compensation for velocity
velocityMultiplier: 1.5
# BadPackets check settings
# Checks for illegal packets
badpackets:
# Should this check be enabled?
enabled: true
# Minimum server TPS needed for BadPackets to be active
minimumTps: 17.5
# Maximum distance a player can move between packets
maxDistance: 25.0
# The amount of milliseconds to compensate for a teleport (50ms = 1 tick)
teleportCompensation: 500
# MorePackets check settings
# Checks for an extra amount of packets and modified game timers
morepackets:
# Should this check be enabled?
enabled: true
# Minimum server TPS needed for MorePackets to be active
minimumTps: 18.5
# Maximum amount of lag compensation a player can acquire (50ms = 1 tick)
minimumClamp: 1250
# The amount of milliseconds offset between packets before flagging (50ms = 1 tick)
triggerBalance: 250
# The amount of milliseconds to compensate for a teleport (50ms = 1 tick)
teleportCompensation: 500
# Should this check be disabled for 'lagging' players?
# This can easily be spoofed by clients!
disableForLagging: false
# Maximum ping value before MorePackets stops checking a player (-1 to disable)
# This can easily be spoofed by clients!
maxPing: -1
# Sneak check settings
# Checks if the player toggles sneak too fast
sneak:
# Should this check be enabled?
enabled: true
# Should this check be disabled for 'lagging' players?
# This can easily be spoofed by clients!
disableForLagging: false
# Minimum server TPS needed for sneak
minimumTps: 15
# Minimum time in milliseconds between sneak toggles
minToggleTime: 75
# NoSlow check settings
# Checks if the player moves too fast while blocking
noslow:
# Should this check be enabled?
enabled: true
# Minimum time difference in milliseconds between toggling use item state
minimumDifference: 75
# Minimum movement distance needed to flag
minimumDistXZ: 0.15
# Amount of no slowdown moments before flagging
vlBeforeFlag: 3
# Spider check settings
# Checks if the player tries to climb a non-climbable block
spider:
# Should this check be enabled?
enabled: true
# NoFall check settings
# Checks if the player tries to ignore fall damage
nofall:
# Should this check be enabled?
enabled: true
# Amount of moves with a modified fall distance before flagging
vlBeforeFlag: 6
# Sprint check settings
# Checks if the player tries to sprint without the needed conditions
sprint:
# Should this check be enabled?
enabled: true
# Minimum food level needed to sprint
sprintFoodMin: 6
# FastBow check settings
# Checks if the player fires a bow too fast
fastbow:
# Should this check be enabled?
enabled: true
# Maximum percent error between predicted bow force and actual bow force
bowError: 0.25
# FastEat check settings
# Checks if the player consumes food too fast
fasteat:
# Should this check be enabled?
enabled: true
# Minimum time in milliseconds it takes to consume food
eatTimeMin: 1000
# FastHeal check settings
# Checks if the player regains health too fast
fastheal:
# Should this check be enabled?
enabled: true
# Minimum server TPS needed for FastHeal to be active
minimumTps: 17.5
# Should FastHeal be disabled for 'lagging' players?
# This can easily be spoofed by clients!
disableForLagging: false
# The minimum time it takes to regenerate health in milliseconds
# Vanilla is 500, but enforcing this will cause too many false positives
minHealTime: 475
# Amount of milliseconds a player can heal faster per millisecond of ping
pingCompensation: 0.25
# FastProjectile check settings
# Checks if the player fires a projectile too fast
fastprojectile:
# Should this check be enabled?
enabled: true
# Number of projectiles to wait for before checking how long they took to fire off
projectilesToWait: 10
# The minimum time in milliseconds it should have taken for the player fire 'projectilesToWait' projectiles
minimumTime: 1500
# ItemSpam check settings
# Checks if the player drops items too fast
itemspam:
# Should this check be enabled?
enabled: true
# The number of item drops we should wait before checking if the player has used item spam
dropsToWait: 10
# The minimum time in milliseconds it should have taken for the player to drop items 'dropsToWait' times
minimumTime: 300
# FastInventory check settings
# Checks if the player moves items in the inventory too fast
fastinventory:
# Should this check be enabled?
enabled: true
# The number of clicks we should wait before checking if the player has used fast inventory
clicksToWait: 10
# The minimum time in milliseconds it should have taken for the player to click 'clicksToWait' times
minimumTime: 50
# vClip check settings
# Checks if the player is clipping
vclip:
# Should this check be enabled?
enabled: true
# ChatUnicode check settings
# Checks for illegal unicode characters in the chat
chatunicode:
# Should this check be enabled?
enabled: true
# ChatSpam check settings
# Checks for a spam of chat messages
chatspam:
# Should this check be enabled?
enabled: true
# Minimum time between chats
timeMin: 500
# Time in milliseconds after which repeating yourself in chat is ignored
repeatIgnore: 600
# Number of chat spam violations before action one (see config.yml) is executed
levelActionOne: 5
# Number of chat spam violations before action two (see config.yml) is executed
levelActionTwo: 10
# CommandSpam check settings
# Checks for a spam of commands
commandspam:
# Should this check be enabled?
enabled: true
# Minimum time between commands
timeMin: 250
# Time in milliseconds after which repeating a command is ignored
repeatIgnore: 500
# Number of command spam violations before action one (see config.yml) is executed
levelActionOne: 5
# Number of command spam violations before action two (see config.yml) is executed
levelActionTwo: 10

View File

@ -0,0 +1,50 @@
# AntiCheatReloaded configuration file
spam:
chat:
# Should AntiCheatReloaded block players spamming messages in chat?
block-speed: true
block-repetition: true
# Valid actions = NONE,KICK,BAN,COMMAND[command]
action-one: KICK
action-two: BAN
# Should AntiCheatReloaded block players spamming commands in chat?
command:
block-speed: true
block-repetition: true
# Valid actions = NONE,KICK,BAN,COMMAND[command]
action-one: KICK
action-two: BAN
system:
# Should AntiCheatReloaded log ALL failed checks to console?
log-to-console: false
# Should AntiCheatReloaded log to file?
log-to-file: true
# Should AntiCheatReloaded display extra debug information when starting?
verbose-startup: false
# If silent mode is on, players will not be stopped when they try to hack, and AntiCheatReloaded will do everything possible to keep them unaware of their rising hack level.
# However, alerts will still be sent to console and to admins online, and events will still take place.
silent-mode: false
# Disable broadcasts about why a player was kicked
disable-broadcast: false
# Should ops be exempt from all checks?
exempt-op: false
# Should AntiCheatReloaded track plugins in its own registered events?
event-chains: true
# Should Enterprise options be enabled? Only set this to true if you're an advanced user.
enterprise: false
# Running AntiCheatReloaded in debug mode will send alerts to the cheating players and enable debug logging
# Use this when locating and/or reporting false positives or when testing AntiCheatReloaded
# Do NOT enable this in a production environment!
debug-mode: false
# To prevent spamming, staff and the console will only be notified every x violations
# Minimum value is 1, default is 8
# Example with 5: notifications after 5 vl, 10vl, 15vl, etc.
notify-every-vl: 8
# Maximum distance a player can be set back
# If the last known valid location is further away than this,
# the player will be rubberbanded at their current location
# Minimum value is 5, default is 50
max-setback-distance: 50
disable-in:
- example-world
- example-world-2

View File

@ -0,0 +1,2 @@
d539ee43-695a-3350-b6a8-fe5a92e55eb5: 0
fd5e51a3-31c4-3585-880e-6af9a7a22e85: 0

View File

@ -0,0 +1,45 @@
# AntiCheatReloaded configuration file
# Server-specific settings
server:
# An identifiable name for this server
name: server-1
# Database settings
database:
# Type of database.
type: MySQL
# Address of the server
hostname: ''
# Port of the server
port: 3306
# Username to connect with
username: ''
# Password for the user
password: ''
# Prefix for the tables
prefix: acr_
# Database/Schema to use
database: anticheat
# Logging settings
log:
# Upload cheat logs to the database?
enable: true
# Time for logs to stay in the database (you can use any combination of d,h,m,s). Set to '' to disable pruning.
life: 2d
# How often to upload logs to the database (you can use any combination of d,h,m,s)
interval: 5m
# Syncing settings
sync:
# Keep user's levels synced in the database?
levels: true
# How often to check for changes to user's levels? (you can use any combination of d,h,m,s)
interval: 1m
# Configuration settings
config:
# Load groups configuration from the database?
groups: true
# Load rules configuration from the database?
rules: true
# Load magic configuration from the database?
magic: false
# Load language configuration from the database?
lang: false

View File

@ -0,0 +1,8 @@
# AntiCheatReloaded configuration file
# Options; WARN, KICK, COMMAND[your command here] or NONE
# To disable warnings or kicking, change WARN and/or KICK to NONE
groups:
- 'Low : 50 : GREEN : NONE'
- 'Medium : 60 : YELLOW : WARN'
- 'High : 75 : RED : KICK'
- 'Custom : -1 : GREEN : COMMAND[ban %player%;]'

View File

@ -0,0 +1,35 @@
# AntiCheatReloaded language file
# The alert message when a player enters a higher group
ALERT:
- '&6&lACR &8> &7%player% has just entered the %group% hack group.'
- '&6&lACR &8> &7%player%''s last failed check was: %check%.'
- '&6&lACR &8> &7Type ''/acr report %player%'' for more information.'
# The warning a player receives when reaching a certain level
# Only sent when enabled in groups.yml
WARNING:
- '&6&lACR &8>&7 You have been flagged for using cheats.'
- '&6&lACR &8>&7 If you continue to cheat, action will be taken.'
# Ban message
BAN_REASON: '&6&lACR &8> &7Banned for unfair advantage'
# Message to broadcast when banned
# Only sent when enabled in config.yml
BAN_BROADCAST: '&6&lACR &8> &7%player% was banned for cheating'
# Kick message
KICK_REASON: '&6&lACR &8> &7Kicked for unfair advantage'
# Message to broadcast when kicked
# Only sent when enabled in config.yml
KICK_BROADCAST: '&6&lACR &8> &7%player% was kicked for cheating'
# The warning message to send when a player is spamming
SPAM_WARNING: '&6&lACR &8> &7Stop spamming the server or you will be kicked!'
# Kick reason when spamming
SPAM_KICK_REASON: '&6&lACR &8> &7Kicked for spamming'
# Message to broadcast when kicked for spamming
# Only sent when enabled in config.yml
SPAM_KICK_BROADCAST: '&6&lACR &8> &7%player% was kicked for spamming'
# Ban reason when spamming
SPAM_BAN_REASON: '&6&lACR &8> &7Banned for spamming'
# Message to broadcast when banned for spamming
# Only sent when enabled in config.yml
SPAM_BAN_BROADCAST: '&c%player% was banned for spamming'
# The prefix for staff and debug alerts
ALERT_PREFIX: '&6&lACR &8> &7'

View File

@ -0,0 +1,19 @@
# Time to exempt a player from moving because of entering/exiting a vehicle
# Increase in case of false positives
ENTERED_EXITED_TIME: 2500
# Time to exempt a player from moving because of teleporting
# Increase in case of false positives
TELEPORT_TIME: 1500
# Time to exempt a player from moving because of joining the server
# If your server is slow when a player joins, increasing this value is important
# Shouldn't be lower than 1500 or higher than 5000
JOIN_TIME: 2000
# Time a player is considered to have a change in velocity
VELOCITY_TIME: 1500
# Minimum travel distance for move to be considered a teleport and subsequently be ignored
# This is a set value and shouldn't be changed unless you know what you're doing
TELEPORT_MIN: 400
# The change milliseconds between two keepalives before considering a player to be lagging
# Decrease this in case of clientside lag-related false positives
# Do not lower below 50 or increase above 75
LAG_DETERMINATION: 60

View File

@ -0,0 +1,4 @@
# AntiCheatReloaded rules file
rules:
# if spider check is less than 0, set group to 20. otherwise, do nothing
- 'Check_SPIDER < 0 ? Player.KICK : null'

View File

@ -0,0 +1,30 @@
global:
# Settings for the automatic version updater
auto updater:
notify: true
download: false
# Number of seconds to wait until a new update is downloaded
delay: 43200 # 12 hours
metrics: true
# Automatically compile structure modifiers
background compiler: true
# Disable version checking for the given Minecraft version. Backup your world first!
ignore version check:
# Override the starting injecting method
injection method:
# Whether or not to enable the filter command
debug: false
# Whether or not to print a stack trace for every warning
detailed error: false
# The engine used by the filter command
script engine: JavaScript
suppressed reports:

View File

@ -0,0 +1 @@
1659621556

View File

@ -1,3 +1,3 @@
ewogICJ0aW1lc3RhbXAiIDogMTYzNjU1ODM3MTU3OSwKICAicHJvZmlsZUlkIiA6ICIyZTEyODcwYzA4ZWM0MzM3YmMyZThmYmY1NGU3OTg1MyIsCiAgInByb2ZpbGVOYW1lIiA6ICJUYXBMIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzNkZjQyYWRmMTRiNDExZTg5YmE0YjI5YzFjMWQ1MjFhNTNhYTM1MThjNWNkY2ZjYjIxMjlkOGRmZWVmZjRkNjEiCiAgICB9LAogICAgIkNBUEUiIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2U3ZGZlYTE2ZGM4M2M5N2RmMDFhMTJmYWJiZDEyMTYzNTljMGNkMGVhNDJmOTk5OWI2ZTk3YzU4NDk2M2U5ODAiCiAgICB9CiAgfQp9
E6mDakvl/G9r58mrQY8EIRRyWACA0ZBOlt5jV4mlSNT3zISnB+ULhglCHtMgMdguCWILWFrnABZaeHppkNzslD9VCFyHzBi73k8d/KYi0ziS4o2Yc6tpN3VSHnhchH2b2lqTebQnxxMH9IZRT6h+7psWw6hnJmeIQyJgQXdjVBXUznlj20oJt2o3jFKcsM4n7dDDXuelhZbu+jZt3kc8JFIMaQEDa9r6Hb3lr5HVBFLAg2GHO/3//gB0WWuddskRbszKZ40uIb0J7ZtkgwYMge7yZJptnjcLo6UcUed+Ym/w6vgc8GI1s0U29zX9iUNzPneUzcIReUSVbucpgPngegfCAke5QoMWbl+42/SjNhCdq1vgbwbB7rwPLuHCC/de0CRtmo0B917OkwXSF3bch4cGzYuuTeWyliXHfoikiAbt1NJZhhY6iIf6I4knxow3EkpoWHJPe2Y/IGBbcm1mLpaqmJyrC17GtvC53842Nw5+xJ/gifse+hTb8hyh5hysS2ysxOregkg6J0o9hAGCiR2v//UGwPea8kPIF576R+Yu9cJnbruBPdcJdRB2fl4AMLHijpICSxk5PGFDHlDccF7VJMICjlWR/GLGGzIDTBI5VnrYYa9aa35mXNMzWtCH0LIfvzE60fiQku3jJx3J685+3MBtPEmObGrjhK6cYBU=
1659607718529
1659622762495

View File

@ -1,5 +1,5 @@
#Minecraft server properties
#Thu Aug 04 17:08:09 ICT 2022
#Thu Aug 04 21:18:47 ICT 2022
allow-flight=false
allow-nether=true
broadcast-console-to-ops=true

View File

@ -1 +1 @@
[{"name":"bento64","uuid":"fd5e51a3-31c4-3585-880e-6af9a7a22e85","expiresOn":"2022-09-04 17:08:37 +0700"},{"name":"LoneWolf","uuid":"ed0e1cc7-8787-3f8e-82c6-b79d32f937c8","expiresOn":"2022-09-04 15:52:26 +0700"},{"name":"Navi_Vo_Dich","uuid":"6cf31700-fcf5-30d6-9a7e-949667e236d4","expiresOn":"2022-09-04 15:35:37 +0700"},{"name":"HMTheBoy154","uuid":"2491502d-2f94-3eac-8788-2e660a11832a","expiresOn":"2022-09-04 13:49:58 +0700"},{"name":"Aragami1408","uuid":"43802be5-553b-307a-8e27-97fa23be1c48","expiresOn":"2022-09-04 12:54:06 +0700"}]
[{"name":"Navi_Vo_Dich","uuid":"6cf31700-fcf5-30d6-9a7e-949667e236d4","expiresOn":"2022-09-04 23:17:29 +0700"},{"name":"ZF_LoneWolf","uuid":"d539ee43-695a-3350-b6a8-fe5a92e55eb5","expiresOn":"2022-09-04 22:36:52 +0700"},{"name":"Quangpe","uuid":"841792cf-e228-32ce-811b-d5762a4e89cc","expiresOn":"2022-09-04 22:30:01 +0700"},{"name":"ZF_LotusSword","uuid":"743f0476-50c5-3552-93a0-a401e83dd699","expiresOn":"2022-09-04 22:19:43 +0700"},{"name":"bento64","uuid":"fd5e51a3-31c4-3585-880e-6af9a7a22e85","expiresOn":"2022-09-04 21:19:21 +0700"},{"name":"LoneWolf","uuid":"ed0e1cc7-8787-3f8e-82c6-b79d32f937c8","expiresOn":"2022-09-04 15:52:26 +0700"},{"name":"HMTheBoy154","uuid":"2491502d-2f94-3eac-8788-2e660a11832a","expiresOn":"2022-09-04 13:49:58 +0700"},{"name":"Aragami1408","uuid":"43802be5-553b-307a-8e27-97fa23be1c48","expiresOn":"2022-09-04 12:54:06 +0700"}]

View File

@ -35,6 +35,12 @@
},
"done": true
},
"minecraft:recipes/redstone/acacia_button": {
"criteria": {
"has_planks": "2022-08-04 20:40:31 +0700"
},
"done": true
},
"minecraft:recipes/combat/iron_sword": {
"criteria": {
"has_iron_ingot": "2022-08-04 12:54:47 +0700"
@ -119,6 +125,12 @@
},
"done": true
},
"minecraft:recipes/misc/melon_seeds": {
"criteria": {
"has_melon": "2022-08-04 21:49:20 +0700"
},
"done": true
},
"minecraft:recipes/decorations/ladder": {
"criteria": {
"has_stick": "2022-08-04 12:36:17 +0700"
@ -149,6 +161,12 @@
},
"done": true
},
"minecraft:recipes/decorations/black_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:recipes/tools/wooden_shovel": {
"criteria": {
"has_stick": "2022-08-04 12:36:17 +0700"
@ -203,6 +221,18 @@
},
"done": true
},
"minecraft:recipes/misc/firework_rocket_simple": {
"criteria": {
"has_gunpowder": "2022-08-04 23:02:56 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/emerald_block": {
"criteria": {
"has_emerald": "2022-08-04 23:01:44 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/gray_wool": {
"criteria": {
"has_white_wool": "2022-08-04 12:33:17 +0700"
@ -215,6 +245,18 @@
},
"done": true
},
"minecraft:recipes/food/cake": {
"criteria": {
"has_egg": "2022-08-04 20:19:25 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/polished_granite_from_granite_stonecutting": {
"criteria": {
"has_granite": "2022-08-04 20:21:51 +0700"
},
"done": true
},
"minecraft:recipes/misc/sugar_from_sugar_cane": {
"criteria": {
"has_sugar_cane": "2022-08-04 12:35:38 +0700"
@ -237,6 +279,8 @@
"criteria": {
"cooked_porkchop": "2022-08-04 12:52:20 +0700",
"cooked_mutton": "2022-08-04 12:39:48 +0700",
"cooked_beef": "2022-08-04 22:00:54 +0700",
"bread": "2022-08-04 22:06:11 +0700",
"cooked_chicken": "2022-08-04 13:55:09 +0700"
},
"done": false
@ -283,6 +327,12 @@
},
"done": true
},
"minecraft:recipes/decorations/gray_bed": {
"criteria": {
"has_gray_wool": "2022-08-04 20:24:27 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/cobblestone_stairs": {
"criteria": {
"has_cobblestone": "2022-08-04 12:38:10 +0700"
@ -313,6 +363,18 @@
},
"done": true
},
"minecraft:recipes/decorations/yellow_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:recipes/decorations/granite_wall": {
"criteria": {
"has_granite": "2022-08-04 20:21:51 +0700"
},
"done": true
},
"minecraft:recipes/redstone/note_block": {
"criteria": {
"has_redstone": "2022-08-04 13:21:27 +0700"
@ -409,6 +471,18 @@
},
"done": true
},
"minecraft:recipes/redstone/tnt": {
"criteria": {
"has_gunpowder": "2022-08-04 23:02:56 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/acacia_slab": {
"criteria": {
"has_planks": "2022-08-04 20:40:31 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/smooth_sandstone": {
"criteria": {
"has_sandstone": "2022-08-04 13:03:21 +0700"
@ -421,6 +495,18 @@
},
"done": true
},
"minecraft:recipes/decorations/acacia_fence": {
"criteria": {
"has_planks": "2022-08-04 20:40:31 +0700"
},
"done": true
},
"minecraft:recipes/decorations/magenta_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/andesite_stairs_from_andesite_stonecutting": {
"criteria": {
"has_andesite": "2022-08-04 12:43:56 +0700"
@ -439,12 +525,24 @@
},
"done": true
},
"minecraft:recipes/decorations/orange_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/blue_wool": {
"criteria": {
"has_white_wool": "2022-08-04 12:33:17 +0700"
},
"done": true
},
"minecraft:story/obtain_armor": {
"criteria": {
"iron_chestplate": "2022-08-04 23:06:02 +0700"
},
"done": true
},
"minecraft:recipes/combat/diamond_chestplate": {
"criteria": {
"has_diamond": "2022-08-04 13:20:48 +0700"
@ -511,6 +609,12 @@
},
"done": true
},
"minecraft:adventure/sleep_in_bed": {
"criteria": {
"slept_in_bed": "2022-08-04 21:59:17 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/orange_wool": {
"criteria": {
"has_white_wool": "2022-08-04 12:33:17 +0700"
@ -577,6 +681,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/polished_granite_slab_from_granite_stonecutting": {
"criteria": {
"has_granite": "2022-08-04 20:21:51 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/green_concrete_powder": {
"criteria": {
"has_sand": "2022-08-04 13:03:05 +0700"
@ -619,6 +729,18 @@
},
"done": true
},
"minecraft:recipes/redstone/acacia_door": {
"criteria": {
"has_planks": "2022-08-04 20:40:31 +0700"
},
"done": true
},
"minecraft:recipes/decorations/cyan_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:adventure/root": {
"criteria": {
"killed_something": "2022-08-04 12:33:16 +0700"
@ -631,6 +753,12 @@
},
"done": true
},
"minecraft:recipes/decorations/gray_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/white_concrete_powder": {
"criteria": {
"has_sand": "2022-08-04 13:03:05 +0700"
@ -649,6 +777,12 @@
},
"done": true
},
"minecraft:recipes/decorations/lime_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:recipes/tools/stone_hoe": {
"criteria": {
"has_cobblestone": "2022-08-04 12:38:10 +0700"
@ -682,6 +816,8 @@
"minecraft:adventure/kill_all_mobs": {
"criteria": {
"minecraft:skeleton": "2022-08-04 13:14:01 +0700",
"minecraft:spider": "2022-08-04 23:02:20 +0700",
"minecraft:creeper": "2022-08-04 23:02:46 +0700",
"minecraft:cave_spider": "2022-08-04 13:18:01 +0700",
"minecraft:zombie": "2022-08-04 13:09:53 +0700"
},
@ -693,6 +829,12 @@
},
"done": true
},
"minecraft:recipes/decorations/green_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/polished_deepslate_from_cobbled_deepslate_stonecutting": {
"criteria": {
"has_cobbled_deepslate": "2022-08-04 13:12:13 +0700"
@ -711,6 +853,18 @@
},
"done": true
},
"minecraft:adventure/trade": {
"criteria": {
"traded": "2022-08-04 23:01:44 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/granite_slab": {
"criteria": {
"has_granite": "2022-08-04 20:21:51 +0700"
},
"done": true
},
"minecraft:recipes/food/cooked_beef_from_smoking": {
"criteria": {
"has_beef": "2022-08-04 12:49:13 +0700"
@ -723,12 +877,24 @@
},
"done": true
},
"minecraft:recipes/decorations/pink_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:recipes/food/cooked_chicken_from_campfire_cooking": {
"criteria": {
"has_chicken": "2022-08-04 12:51:25 +0700"
},
"done": true
},
"minecraft:recipes/brewing/glistering_melon_slice": {
"criteria": {
"has_melon": "2022-08-04 21:49:20 +0700"
},
"done": true
},
"minecraft:recipes/decorations/brown_bed": {
"criteria": {
"has_brown_wool": "2022-08-04 13:51:59 +0700"
@ -753,6 +919,12 @@
},
"done": true
},
"minecraft:recipes/decorations/granite_wall_from_granite_stonecutting": {
"criteria": {
"has_granite": "2022-08-04 20:21:51 +0700"
},
"done": true
},
"minecraft:recipes/decorations/chain": {
"criteria": {
"has_iron_ingot": "2022-08-04 12:54:47 +0700"
@ -777,6 +949,18 @@
},
"done": true
},
"minecraft:recipes/building_blocks/polished_granite_stairs_from_granite_stonecutting": {
"criteria": {
"has_granite": "2022-08-04 20:21:51 +0700"
},
"done": true
},
"minecraft:recipes/misc/blue_dye": {
"criteria": {
"has_lapis_lazuli": "2022-08-04 23:06:50 +0700"
},
"done": true
},
"minecraft:recipes/decorations/oak_fence": {
"criteria": {
"has_planks": "2022-08-04 12:34:19 +0700"
@ -795,6 +979,12 @@
},
"done": true
},
"minecraft:recipes/decorations/blue_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:recipes/food/cooked_porkchop": {
"criteria": {
"has_porkchop": "2022-08-04 12:49:21 +0700"
@ -843,6 +1033,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/granite_stairs": {
"criteria": {
"has_granite": "2022-08-04 20:21:51 +0700"
},
"done": true
},
"minecraft:recipes/redstone/jungle_pressure_plate": {
"criteria": {
"has_planks": "2022-08-04 12:35:14 +0700"
@ -891,6 +1087,12 @@
},
"done": true
},
"minecraft:recipes/redstone/acacia_pressure_plate": {
"criteria": {
"has_planks": "2022-08-04 20:40:31 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/diorite_stairs_from_diorite_stonecutting": {
"criteria": {
"has_diorite": "2022-08-04 13:03:42 +0700"
@ -927,6 +1129,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/acacia_wood": {
"criteria": {
"has_log": "2022-08-04 20:40:22 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/andesite_slab_from_andesite_stonecutting": {
"criteria": {
"has_andesite": "2022-08-04 12:43:56 +0700"
@ -945,6 +1153,12 @@
},
"done": true
},
"minecraft:recipes/redstone/acacia_fence_gate": {
"criteria": {
"has_planks": "2022-08-04 20:40:31 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/coal_block": {
"criteria": {
"has_coal": "2022-08-04 12:44:45 +0700"
@ -975,6 +1189,12 @@
},
"done": true
},
"minecraft:recipes/decorations/gray_banner": {
"criteria": {
"has_gray_wool": "2022-08-04 20:24:27 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/oak_planks": {
"criteria": {
"has_logs": "2022-08-04 12:33:26 +0700"
@ -999,6 +1219,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/granite_slab_from_granite_stonecutting": {
"criteria": {
"has_granite": "2022-08-04 20:21:51 +0700"
},
"done": true
},
"minecraft:recipes/decorations/jungle_sign": {
"criteria": {
"has_planks": "2022-08-04 12:35:14 +0700"
@ -1035,6 +1261,18 @@
},
"done": true
},
"minecraft:recipes/redstone/acacia_trapdoor": {
"criteria": {
"has_planks": "2022-08-04 20:40:31 +0700"
},
"done": true
},
"minecraft:recipes/decorations/gray_carpet": {
"criteria": {
"has_gray_wool": "2022-08-04 20:24:27 +0700"
},
"done": true
},
"minecraft:recipes/redstone/oak_pressure_plate": {
"criteria": {
"has_planks": "2022-08-04 12:34:19 +0700"
@ -1161,6 +1399,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/granite_stairs_from_granite_stonecutting": {
"criteria": {
"has_granite": "2022-08-04 20:21:51 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/jungle_slab": {
"criteria": {
"has_planks": "2022-08-04 12:35:14 +0700"
@ -1173,6 +1417,12 @@
},
"done": true
},
"minecraft:recipes/decorations/light_blue_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:recipes/misc/iron_nugget_from_blasting": {
"criteria": {
"has_iron_pickaxe": "2022-08-04 13:17:21 +0700"
@ -1191,6 +1441,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/acacia_planks": {
"criteria": {
"has_log": "2022-08-04 20:40:22 +0700"
},
"done": true
},
"minecraft:recipes/tools/compass": {
"criteria": {
"has_redstone": "2022-08-04 13:21:27 +0700"
@ -1273,6 +1529,12 @@
},
"done": true
},
"minecraft:recipes/decorations/purple_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:recipes/decorations/composter": {
"criteria": {
"has_wood_slab": "2022-08-04 16:07:33 +0700"
@ -1387,6 +1649,12 @@
},
"done": true
},
"minecraft:recipes/transportation/carrot_on_a_stick": {
"criteria": {
"has_carrot": "2022-08-04 21:43:07 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/pink_wool": {
"criteria": {
"has_white_wool": "2022-08-04 12:33:17 +0700"
@ -1405,12 +1673,36 @@
},
"done": true
},
"minecraft:recipes/building_blocks/lapis_block": {
"criteria": {
"has_lapis_lazuli": "2022-08-04 23:06:50 +0700"
},
"done": true
},
"minecraft:recipes/decorations/acacia_sign": {
"criteria": {
"has_planks": "2022-08-04 20:40:31 +0700"
},
"done": true
},
"minecraft:recipes/decorations/brown_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:recipes/redstone/jungle_fence_gate": {
"criteria": {
"has_planks": "2022-08-04 12:35:14 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/polished_granite": {
"criteria": {
"has_granite": "2022-08-04 20:21:51 +0700"
},
"done": true
},
"minecraft:recipes/redstone/piston": {
"criteria": {
"has_redstone": "2022-08-04 13:21:27 +0700"
@ -1483,12 +1775,24 @@
},
"done": true
},
"minecraft:recipes/decorations/red_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/red_wool": {
"criteria": {
"has_white_wool": "2022-08-04 12:33:17 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/acacia_stairs": {
"criteria": {
"has_planks": "2022-08-04 20:40:31 +0700"
},
"done": true
},
"minecraft:recipes/decorations/soul_campfire": {
"criteria": {
"has_stick": "2022-08-04 12:36:17 +0700"
@ -1513,6 +1817,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/melon": {
"criteria": {
"has_melon": "2022-08-04 21:49:20 +0700"
},
"done": true
},
"minecraft:recipes/food/cooked_mutton": {
"criteria": {
"has_mutton": "2022-08-04 12:33:17 +0700"
@ -1525,5 +1835,11 @@
},
"done": true
},
"minecraft:recipes/decorations/light_gray_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 22:45:32 +0700"
},
"done": true
},
"DataVersion": 2975
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,131 @@
{
"minecraft:recipes/misc/charcoal": {
"criteria": {
"has_log": "2022-08-04 22:32:10 +0700"
},
"done": true
},
"minecraft:recipes/decorations/crafting_table": {
"criteria": {
"has_planks": "2022-08-04 22:32:32 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/jungle_slab": {
"criteria": {
"has_planks": "2022-08-04 22:32:32 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/jungle_stairs": {
"criteria": {
"has_planks": "2022-08-04 22:32:32 +0700"
},
"done": true
},
"minecraft:recipes/decorations/jungle_fence": {
"criteria": {
"has_planks": "2022-08-04 22:32:32 +0700"
},
"done": true
},
"minecraft:husbandry/root": {
"criteria": {
"consumed_item": "2022-08-04 22:31:10 +0700"
},
"done": true
},
"minecraft:adventure/kill_a_mob": {
"criteria": {
"minecraft:zombie": "2022-08-04 22:32:50 +0700"
},
"done": true
},
"minecraft:recipes/redstone/jungle_door": {
"criteria": {
"has_planks": "2022-08-04 22:32:32 +0700"
},
"done": true
},
"minecraft:adventure/kill_all_mobs": {
"criteria": {
"minecraft:zombie": "2022-08-04 22:32:50 +0700"
},
"done": false
},
"minecraft:recipes/redstone/jungle_pressure_plate": {
"criteria": {
"has_planks": "2022-08-04 22:32:32 +0700"
},
"done": true
},
"minecraft:recipes/decorations/barrel": {
"criteria": {
"has_planks": "2022-08-04 22:32:32 +0700"
},
"done": true
},
"minecraft:recipes/decorations/jungle_sign": {
"criteria": {
"has_planks": "2022-08-04 22:32:32 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/jungle_wood": {
"criteria": {
"has_log": "2022-08-04 22:32:10 +0700"
},
"done": true
},
"minecraft:recipes/redstone/jungle_fence_gate": {
"criteria": {
"has_planks": "2022-08-04 22:32:32 +0700"
},
"done": true
},
"minecraft:husbandry/balanced_diet": {
"criteria": {
"cooked_beef": "2022-08-04 22:31:10 +0700"
},
"done": false
},
"minecraft:recipes/redstone/jungle_trapdoor": {
"criteria": {
"has_planks": "2022-08-04 22:32:32 +0700"
},
"done": true
},
"minecraft:recipes/misc/stick": {
"criteria": {
"has_planks": "2022-08-04 22:32:32 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/jungle_planks": {
"criteria": {
"has_logs": "2022-08-04 22:32:10 +0700"
},
"done": true
},
"minecraft:adventure/root": {
"criteria": {
"killed_by_something": "2022-08-04 22:30:10 +0700"
},
"done": true
},
"minecraft:recipes/redstone/jungle_button": {
"criteria": {
"has_planks": "2022-08-04 22:32:32 +0700"
},
"done": true
},
"minecraft:adventure/adventuring_time": {
"criteria": {
"minecraft:beach": "2022-08-04 22:33:37 +0700",
"minecraft:sparse_jungle": "2022-08-04 22:30:01 +0700",
"minecraft:plains": "2022-08-04 22:31:41 +0700"
},
"done": false
},
"DataVersion": 2975
}

View File

@ -0,0 +1,15 @@
{
"minecraft:adventure/root": {
"criteria": {
"killed_by_something": "2022-08-04 22:07:30 +0700"
},
"done": true
},
"minecraft:adventure/adventuring_time": {
"criteria": {
"minecraft:sparse_jungle": "2022-08-04 21:13:22 +0700"
},
"done": false
},
"DataVersion": 2975
}

View File

@ -17,6 +17,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/black_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/purple_wool": {
"criteria": {
"has_white_wool": "2022-08-04 12:25:14 +0700"
@ -47,6 +53,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/stone_bricks": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/misc/wheat": {
"criteria": {
"has_hay_block": "2022-08-04 12:38:57 +0700"
@ -89,6 +101,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/gray_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/yellow_concrete_powder": {
"criteria": {
"has_sand": "2022-08-04 13:56:03 +0700"
@ -149,6 +167,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/purple_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/copper_block": {
"criteria": {
"has_copper_ingot": "2022-08-04 12:34:33 +0700"
@ -161,6 +185,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/smooth_stone": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/decorations/ladder": {
"criteria": {
"has_stick": "2022-08-04 12:22:25 +0700"
@ -203,6 +233,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/stone_slab_from_stone_stonecutting": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/cobbled_deepslate_slab": {
"criteria": {
"has_cobbled_deepslate": "2022-08-04 13:02:19 +0700"
@ -215,6 +251,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/chiseled_stone_bricks_stone_from_stonecutting": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/tools/wooden_shovel": {
"criteria": {
"has_stick": "2022-08-04 12:22:25 +0700"
@ -239,6 +281,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/blue_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/cyan_wool": {
"criteria": {
"has_white_wool": "2022-08-04 12:25:14 +0700"
@ -263,6 +311,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/stone_brick_slab_from_stone_stonecutting": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/transportation/spruce_boat": {
"criteria": {
"in_water": "2022-08-04 12:30:06 +0700"
@ -299,6 +353,12 @@
},
"done": true
},
"minecraft:recipes/misc/firework_rocket_simple": {
"criteria": {
"has_gunpowder": "2022-08-04 22:32:44 +0700"
},
"done": true
},
"minecraft:recipes/redstone/dispenser": {
"criteria": {
"has_bow": "2022-08-04 15:28:50 +0700"
@ -365,6 +425,12 @@
},
"done": true
},
"minecraft:recipes/brewing/golden_carrot": {
"criteria": {
"has_gold_nugget": "2022-08-04 23:07:39 +0700"
},
"done": true
},
"minecraft:recipes/combat/shield": {
"criteria": {
"has_iron_ingot": "2022-08-04 12:34:45 +0700"
@ -413,6 +479,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/coarse_dirt": {
"criteria": {
"has_gravel": "2022-08-04 19:47:51 +0700"
},
"done": true
},
"minecraft:recipes/redstone/note_block": {
"criteria": {
"has_redstone": "2022-08-04 13:02:14 +0700"
@ -515,12 +587,30 @@
},
"done": true
},
"minecraft:recipes/redstone/tnt": {
"criteria": {
"has_gunpowder": "2022-08-04 22:32:44 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/yellow_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/purple_concrete_powder": {
"criteria": {
"has_sand": "2022-08-04 13:56:03 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/stone_stairs_from_stone_stonecutting": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/decorations/magenta_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 14:21:54 +0700"
@ -529,6 +619,8 @@
},
"minecraft:husbandry/bred_all_animals": {
"criteria": {
"minecraft:sheep": "2022-08-04 22:10:53 +0700",
"minecraft:cow": "2022-08-04 19:33:15 +0700",
"minecraft:chicken": "2022-08-04 15:03:30 +0700"
},
"done": false
@ -641,6 +733,18 @@
},
"done": true
},
"minecraft:recipes/building_blocks/red_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:adventure/sleep_in_bed": {
"criteria": {
"slept_in_bed": "2022-08-04 23:01:27 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/orange_wool": {
"criteria": {
"has_white_wool": "2022-08-04 12:25:14 +0700"
@ -731,6 +835,12 @@
},
"done": true
},
"minecraft:recipes/decorations/enchanting_table": {
"criteria": {
"has_obsidian": "2022-08-04 23:07:35 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/polished_andesite_from_andesite_stonecutting": {
"criteria": {
"has_andesite": "2022-08-04 12:30:00 +0700"
@ -767,6 +877,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/orange_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/decorations/cyan_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 14:21:54 +0700"
@ -809,6 +925,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/stone_brick_stairs_from_stone_stonecutting": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/tools/stone_hoe": {
"criteria": {
"has_cobblestone": "2022-08-04 12:22:50 +0700"
@ -926,6 +1048,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/lime_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/food/cooked_chicken_from_campfire_cooking": {
"criteria": {
"has_chicken": "2022-08-04 12:41:23 +0700"
@ -956,18 +1084,36 @@
},
"done": true
},
"minecraft:recipes/decorations/glass_pane": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/decorations/chain": {
"criteria": {
"has_iron_ingot": "2022-08-04 12:34:45 +0700"
},
"done": true
},
"minecraft:recipes/misc/gold_ingot_from_nuggets": {
"criteria": {
"has_gold_nugget": "2022-08-04 23:07:39 +0700"
},
"done": true
},
"minecraft:recipes/misc/lapis_lazuli": {
"criteria": {
"has_lapis_block": "2022-08-04 12:57:06 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/magenta_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:story/mine_diamond": {
"criteria": {
"diamond": "2022-08-04 13:17:08 +0700"
@ -1016,6 +1162,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/light_blue_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/food/cooked_porkchop": {
"criteria": {
"has_porkchop": "2022-08-04 13:28:11 +0700"
@ -1094,6 +1246,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/stone_bricks_from_stone_stonecutting": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/combat/golden_chestplate": {
"criteria": {
"has_gold_ingot": "2022-08-04 13:07:01 +0700"
@ -1130,6 +1288,12 @@
},
"done": true
},
"minecraft:recipes/brewing/glass_bottle": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/brown_wool": {
"criteria": {
"has_white_wool": "2022-08-04 12:25:14 +0700"
@ -1160,6 +1324,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/white_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/misc/red_dye_from_poppy": {
"criteria": {
"has_poppy": "2022-08-04 14:42:10 +0700"
@ -1184,6 +1354,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/stone_slab": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/coal_block": {
"criteria": {
"has_coal": "2022-08-04 12:23:06 +0700"
@ -1196,12 +1372,24 @@
},
"done": true
},
"minecraft:recipes/building_blocks/green_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/redstone/light_weighted_pressure_plate": {
"criteria": {
"has_gold_ingot": "2022-08-04 13:07:01 +0700"
},
"done": true
},
"minecraft:recipes/misc/gold_nugget_from_blasting": {
"criteria": {
"has_golden_pickaxe": "2022-08-04 23:07:29 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/light_blue_wool": {
"criteria": {
"has_white_wool": "2022-08-04 12:25:14 +0700"
@ -1238,6 +1426,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/cyan_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/decorations/jungle_sign": {
"criteria": {
"has_planks": "2022-08-04 12:55:41 +0700"
@ -1334,6 +1528,12 @@
},
"done": true
},
"minecraft:recipes/redstone/stone_button": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/combat/crossbow": {
"criteria": {
"has_stick": "2022-08-04 12:22:25 +0700"
@ -1382,6 +1582,12 @@
},
"done": true
},
"minecraft:story/form_obsidian": {
"criteria": {
"obsidian": "2022-08-04 23:07:35 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/jungle_slab": {
"criteria": {
"has_planks": "2022-08-04 12:55:41 +0700"
@ -1460,6 +1666,12 @@
},
"done": true
},
"minecraft:recipes/decorations/stonecutter": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/food/cooked_beef": {
"criteria": {
"has_beef": "2022-08-04 12:33:39 +0700"
@ -1511,6 +1723,12 @@
},
"done": true
},
"minecraft:recipes/decorations/composter": {
"criteria": {
"has_wood_slab": "2022-08-04 19:53:32 +0700"
},
"done": true
},
"minecraft:recipes/misc/copper_ingot_from_smelting_raw_copper": {
"criteria": {
"has_raw_copper": "2022-08-04 12:43:32 +0700"
@ -1589,6 +1807,18 @@
},
"done": true
},
"minecraft:recipes/building_blocks/brown_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/redstone/stone_pressure_plate": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/combat/leather_boots": {
"criteria": {
"has_leather": "2022-08-04 12:33:39 +0700"
@ -1607,12 +1837,24 @@
},
"done": true
},
"minecraft:recipes/decorations/stone_brick_walls_from_stone_stonecutting": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/jungle_stairs": {
"criteria": {
"has_planks": "2022-08-04 12:55:41 +0700"
},
"done": true
},
"minecraft:recipes/building_blocks/light_gray_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/redstone/heavy_weighted_pressure_plate": {
"criteria": {
"has_iron_ingot": "2022-08-04 12:34:45 +0700"
@ -1703,6 +1945,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/stone_stairs": {
"criteria": {
"has_stone": "2022-08-04 21:06:48 +0700"
},
"done": true
},
"minecraft:recipes/food/cookie": {
"criteria": {
"has_cocoa": "2022-08-04 12:22:37 +0700"
@ -1715,6 +1963,12 @@
},
"done": true
},
"minecraft:recipes/misc/gold_nugget_from_smelting": {
"criteria": {
"has_golden_pickaxe": "2022-08-04 23:07:29 +0700"
},
"done": true
},
"minecraft:recipes/combat/diamond_boots": {
"criteria": {
"has_diamond": "2022-08-04 13:17:08 +0700"
@ -1811,6 +2065,12 @@
},
"done": true
},
"minecraft:recipes/building_blocks/pink_stained_glass": {
"criteria": {
"has_glass": "2022-08-04 19:36:33 +0700"
},
"done": true
},
"minecraft:recipes/decorations/light_gray_bed_from_white_bed": {
"criteria": {
"has_bed": "2022-08-04 14:21:54 +0700"

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
world/entities/r.-1.-3.mca Normal 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.

Binary file not shown.

BIN
world/entities/r.-3.1.mca Normal file

Binary file not shown.

BIN
world/entities/r.-4.0.mca Normal file

Binary file not shown.

BIN
world/entities/r.-4.1.mca Normal 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.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
world/poi/r.-3.0.mca Normal file

Binary file not shown.

BIN
world/poi/r.-4.0.mca Normal file

Binary file not shown.

BIN
world/poi/r.-6.2.mca Normal 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.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
world/region/r.-3.1.mca Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
world/region/r.-4.1.mca Normal 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.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
world/region/r.0.-3.mca Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More