bedwars
This method is used to retrieve bedwars information for a player on CubedCraft.
// Dependencies
const CubedCraft = require('cubed-api');
// Getting the player info
CubedCraft.API.player.bedwars('4de211d9-2e6d-41a8-830f-c20ba2359654').then(info => {
console.log(info);
}){
player: {
uuid: '4de211d9-2e6d-41a8-830f-c20ba2359654',
username: 'PondWader',
coins: 33,
kills: 8,
deaths: 24,
wins: 1,
score: 33,
beds: 3,
first_joined: 1584033856293,
last_joined: 1584033856293,
playtime: 0
}
}Last updated