


Plugin API Usage
// Register new custom stats
HyStats.registerCustomStat("things_done");
// Set/get stats
HyStats.incrementStat(playerUuid, "custom", "things_done", 1);
HyStats.setStat(playerUuid, "custom", "things_done", 100);
HyStats.resetStat(playerUuid, "custom", "things_done");
// Load offline stats
hyStats.loadOfflinePlayerStats(playerUuid).thenAccept(stats -> {
long blocksMined = stats.get("killed", "Skeleton_Fighter");
// TODO...
});




