- Notifications
You must be signed in to change notification settings - Fork1
Home
const mc = include("mc-server-stats");
Hypixel -https://hypixel.net/
mc.hypixelPlayer("player-username-here", "hypixel-api-key-here").then(result => console.log(result));
mc.hypixelWatchdog("hypixel-api-key-here").then(result => console.log(result));
mc.hypixelBoosters("hypixel-api-key-here").then(result => console.log(result));
mc.hypixelKey("hypixel-api-key-here").then(result => console.log(result));
BlocksMC -https://blocksmc.com/
mc.blocksmc("player-username-here").then(result => console.log(result));
HiveMC -https://blocksmc.com/
`mc.hivemc("player-username-here", type*).then(result => console.log(result));
*type can be:profile
,SG
,BP
,CAI
,CR
,DR
,HB
FunCraft -https://www.funcraft.net/fr
mc.funcraft("player-username-here").then(result => console.log(result));
Mineplex -https://www.mineplex.com/home/
mc.mineplex("player-username-here").then(result => console.log(result));
- ???
ManaCube -https://manacube.com/
mc.manacube("player-username-here").then(result => console.log(result));
MineSaga -https://www.minesaga.org/
mc.minesaga("player-username-here").then(result => console.log(result));
GommeHD -https://www.gommehd.net/
mc.gommehd("player-username-here").then(result => console.log(result));
Timolia -https://www.timolia.de/
mc.timolia("player-username-here").then(result => console.log(result));
VeltPvP -https://www.veltpvp.com/
mc.veltpvp("player-username-here").then(result => console.log(result));
UniversoCraft -https://www.universocraft.com/
mc.universocraft("player-username-here").then(result => console.log(result));
HiveMC-https://hivemc.com/
The hivemc method requires atype
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 |
mc.hivemc("player-username-here", "profile").then(result => console.log(result));
mc.hivemc("player-username-here", "BED").then(result => console.log(result));
WynnCraft-https://wynncraft.com/
The wynncraft method requires atype
input. The table below contains all the possible methods:
Type | Outcome |
---|---|
player | Wynncraft player information |
guild | Wynncraft guild information |
mc.wynncraft("player", "player-username-here").then(result => console.log(result));
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 theString.replace() function