/* eslint-disable max-len */ const sleep = require('sleep-promise'); const {MessageEmbed} = require('discord.js'); module.exports = { name: 'list', alias: [], description: 'List players', usage: '', trusted: 0, execute: async function(bot) { try { bot.core.run('minecraft:tellraw @a ' + JSON.stringify(['', {text: 'Players:', color: 'green'}])); await sleep(60); for (const property of bot.players.list) { // if (property.match.startsWith('@')) continue; bot.core.run('minecraft:tellraw @a ' + JSON.stringify(['', {text: `${property.name}`, color: 'yellow'}, {text: ' › ', color: 'aqua'}, {text: `${property.UUID}`, color: 'aqua'}])); } } catch (e) { return; } }, discordExecute: function(bot, username, usernameraw, sender, prefix, args, channeldc) { try { let players = ''; for (const property of bot.players.list) { // if (property.match.startsWith('@')) continue; players += `\`${property.name}\` › \`${property.UUID}\`` + '\n'; } const Embed = new MessageEmbed() .setColor('#FFFF00') .setTitle('Players') .setDescription(players); channeldc.send({embeds: [Embed]}); } catch (e) { return; } }, };