-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.ts
31 lines (20 loc) · 1.27 KB
/
test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import MCCAPI from "./index.js"
async function run() {
let HOF = await MCCAPI.getHallOfFameStats();
console.log("Most eliminations in RS: " + JSON.stringify(HOF.data.MG_ROCKET_SPLEEF["Most eliminations"]));
let HOF_RS = await MCCAPI.getHallOfFameStatsForGame("MG_ROCKET_SPLEEF");
console.log("Most eliminations in RS: " + JSON.stringify(HOF_RS.data["Most eliminations"]));
let red = await MCCAPI.getParticipantsOnTeam("RED");
console.log("First player on red: " + red.data[0].username);
let all = await MCCAPI.getParticipants();
console.log("The user object of the first player on red: " + JSON.stringify(all.data.RED[0]));
let rundown = await MCCAPI.getRundown();
console.log("The amount of coins of red in the last event: " + rundown.data.eventScores.RED);
let rundownMCC3 = await MCCAPI.getRundownForEvent("3");
console.log("The 4th game in MCC3: " + JSON.stringify(rundownMCC3.data.history["3"]));
let rundownMCC29 = await MCCAPI.getRundownForEvent("29");
console.log("Seapeekays score in the 4th game of MCC 29: " + rundownMCC29.data.history["3"].individualScores["Seapeekay"]);
let eventInfo = await MCCAPI.getEventInformation();
console.log("The name of the next MCC event: " + eventInfo.data.event);
}
run().then();