Since the new API change, this program is no longer able to track a player's chest count.
Tracks specified players' chest count, on an interval of 5 minutes.
- Tracks player current world, total chest count (and increased chests)
- Sends you a push notification whenever a tracked player has opened a specified amount of chests (30, 60, 90, 120)
- Logs server switches
ChestTracker can be used with the command java -jar ChestAPI-VERSION.jar
If you do not know how to execute that, place the run.bat
with it.
As of ChestTracker 1.1.0, it will generate config.yaml when you use it.
The configuration file looks like this:
# Seconds between requests; Should be over 300s due to how API updates.
interval: 300
# List of users to track
players: ["Player", "Array"]
# Should it notify you when a player's logs on / off?
trackOnline: false
# Should it notify you when a player reaches 30/60/90/120 chests?
trackChests: true
Since Wynncraft has an API limit of 750 requests/30 minutes, it's advised that you do not supply over 120 players at once (It'll warn you when you reach 120, and you may get ratelimited at 150+)
gradlew clean build
on the base directory or run the build.bat
- World scans (Tracks specified worlds)
- Optimized tracking (Ignores offline players, might use more CPU)