2018-01-14 21:53:05 +00:00
|
|
|
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
|
|
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
|
|
import me.totalfreedom.totalfreedommod.util.FUtil;
|
|
|
|
import org.bukkit.ChatColor;
|
2018-07-30 07:23:01 +00:00
|
|
|
import org.bukkit.Location;
|
2018-01-14 21:53:05 +00:00
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
2018-07-30 07:23:01 +00:00
|
|
|
import org.bukkit.entity.Player;
|
2018-01-14 21:53:05 +00:00
|
|
|
|
|
|
|
@CommandPermissions(level = Rank.OP, source = SourceType.ONLY_IN_GAME)
|
2019-08-19 07:01:53 +00:00
|
|
|
@CommandParameters(description = "Go to a random place in the current world you are in", usage = "/<command>", aliases = "tpr,rtp")
|
2018-01-14 21:53:05 +00:00
|
|
|
public class Command_tprandom extends FreedomCommand
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
|
|
|
{
|
|
|
|
int x = FUtil.random(-10000, 10000);
|
|
|
|
int z = FUtil.random(-10000, 10000);
|
|
|
|
int y = playerSender.getWorld().getHighestBlockYAt(x, z);
|
|
|
|
Location location = new Location(playerSender.getLocation().getWorld(), x, y, z);
|
|
|
|
playerSender.teleport(location);
|
|
|
|
msg("Poof!", ChatColor.GREEN);
|
|
|
|
return true;
|
|
|
|
}
|
2019-08-19 07:01:53 +00:00
|
|
|
}
|