chomens-bot-js/commands/tpall.js

16 lines
464 B
JavaScript
Raw Normal View History

2022-08-14 05:51:45 -04:00
/* eslint-disable max-len */
module.exports = {
name: 'tpall',
alias: [],
description: 'Teleport everyone',
usage: '<hash> <player>',
trusted: 1,
2022-11-16 06:41:30 -05:00
execute: function(bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash, selector) {
2022-11-16 06:09:37 -05:00
if (args[0] === hash) {
2022-08-14 05:51:45 -04:00
bot.core.run(`minecraft:execute unless entity @s[name= run ] run tp @a ${args.slice(1).join(' ')}`);
} else {
throw new Error('Invalid hash');
}
},
};