mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
6895a37104
i totally did not used the search icon thing in vscode
14 lines
615 B
JavaScript
14 lines
615 B
JavaScript
/* eslint-disable max-len */
|
|
const {between} = require('../util/between');
|
|
module.exports = {
|
|
name: 'rtp',
|
|
alias: [],
|
|
description: 'Randomly teleports the player',
|
|
usage: '',
|
|
trusted: 0,
|
|
execute: function(bot, username, usernameraw, sender, prefix, args) {
|
|
const rtppos = `${between(20000000, 500000)} 100 ${between(20000000, 500000)}`;
|
|
bot.tellraw('@a', [{text: 'Teleporting ', color: 'white'}, {text: username, color: 'aqua'}, {text: ' to ', color: 'white'}, {text: rtppos, color: 'green'}, {text: '...', color: 'white'}]);
|
|
bot.core.run(`essentials:teleport ${sender} ${rtppos}`);
|
|
},
|
|
};
|