Skip to content
Tj edited this page Jan 4, 2020 · 5 revisions

Get started by including the package to your project

const mc = include("mc-server-stats");

Get Hypixel Player statistics

mc.hypixelPlayer("player-username-here", "hypixel-api-key-here").then(result => console.log(result));

Get Watchdog statistics

mc.hypixelWatchdog("hypixel-api-key-here").then(result => console.log(result));

Get active boosters information

mc.hypixelBoosters("hypixel-api-key-here").then(result => console.log(result));

Get your API key's statistics

mc.hypixelKey("hypixel-api-key-here").then(result => console.log(result));

Get player statistics

mc.blocksmc("player-username-here").then(result => console.log(result));

Get player statistics

`mc.hivemc("player-username-here", type*).then(result => console.log(result));

*type can be: profile, SG, BP, CAI, CR, DR, HB

Get player statistics

mc.funcraft("player-username-here").then(result => console.log(result));

Get player statistics

mc.mineplex("player-username-here").then(result => console.log(result)); - ???

Get player statistics

mc.manacube("player-username-here").then(result => console.log(result));

Get player statistics

mc.minesaga("player-username-here").then(result => console.log(result));

Get player statistics

mc.gommehd("player-username-here").then(result => console.log(result));

Get player statistics

mc.timolia("player-username-here").then(result => console.log(result));

Get player statistics

mc.veltpvp("player-username-here").then(result => console.log(result));

Get player statistics

mc.universocraft("player-username-here").then(result => console.log(result));

The hivemc method requires a type input. The table below contains all the possible methods:

Type Outcome
profile Hivemc player info
SG Survival Games
BP BlockParty
CAI Cowboys and Indians
CR Cranked
DR DeathRun
HB The Herobrine
HERO SG:Heroes
HIDE Hide and Seek
OITC One in the Chamber
SP Splegg
TIMV Trouble in Mineville
SKY SkyWars
LAB The Lab
DRAW Draw It
SLAP Slaparoo
EF Electric Floor
MM Music Masters
GRAV Gravity
RR Restaurant Rush
GNT SkyGiants
SGN Survival Games 2
BD BatteryDash
SPL Sploop
MIMV Murder in Mineville
BED BedWars

Get player profile information

mc.hivemc("player-username-here", "profile").then(result => console.log(result));

Get player bedwars statistics

mc.hivemc("player-username-here", "BED").then(result => console.log(result));

The wynncraft method requires a type input. The table below contains all the possible methods:

Type Outcome
player Wynncraft player information
guild Wynncraft guild information

Get player information, classes, guild and ranking statistics

mc.wynncraft("player", "player-username-here").then(result => console.log(result));

Get guild information

mc.wynncraft("guild", "guild-name-here").then(result => console.log(result));

Note: If a guild name has a space in it, replace the space with %20. This can be easily achieved by using the String.replace() function