FridayNightFunkinBoyfriendBot/commands/tpr.js

21 lines
618 B
JavaScript

const between = require('../util/between')
module.exports = {
name: 'tpr',
description:['teleport to a random place'],
trustLevel: 0,
aliases:['rtp', 'teleportrandom', 'randomteleport'],
execute (context) {
const bot = context.bot
const sender = context.source.player
const source = context.source
if (!sender) return
const x = between(-1_000_000, 1_000_000)
const y = 100
const z = between(-1_000_000, 1_000_000)
source.sendFeedback(`Randomly Teleported: ${sender.profile.name} to x:${x} y:${y} z:${z} `)
bot.core.run(`tp ${sender.uuid} ${x} ${y} ${z}`)
}
}