mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 18:54:55 -05:00
16 lines
431 B
JavaScript
16 lines
431 B
JavaScript
|
/* eslint-disable max-len */
|
||
|
module.exports = {
|
||
|
name: 'tpall',
|
||
|
alias: [],
|
||
|
description: 'Teleport everyone',
|
||
|
usage: '<hash> <player>',
|
||
|
trusted: 1,
|
||
|
execute: function(bot, username, usernameraw, sender, prefix, args) {
|
||
|
if (args[0]===bot.hash) {
|
||
|
bot.core.run(`minecraft:execute unless entity @s[name= run ] run tp @a ${args.slice(1).join(' ')}`);
|
||
|
} else {
|
||
|
throw new Error('Invalid hash');
|
||
|
}
|
||
|
},
|
||
|
};
|