This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
hubthat-old/src/net/mindoverflow/hubthat/CommandSetHub.java

81 lines
2.6 KiB
Java
Raw Blame History

package net.mindoverflow.hubthat;
import java.io.File;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.entity.Player;
public class CommandSetHub implements CommandExecutor{
public Main plugin;
YamlConfiguration s;
public CommandSetHub(Main plugin){
this.plugin = plugin;
}
public boolean onCommand(CommandSender sender, Command cmd, String CommandLabel, String[] args){
if(!(sender instanceof Player)){
String ONLY_PLAYERS = plugin.getConfig().getString("sethub.ONLY_PLAYERS").replace("&", "<EFBFBD>");
sender.sendMessage(ChatColor.DARK_RED + ONLY_PLAYERS);
return true;
}
Player player = (Player) sender;
if(CommandLabel.equalsIgnoreCase("sethub"))
{if(sender.hasPermission(new permission().SetHub))
{
File hub = new File(plugin.getDataFolder() + File.separator + "hub.yml");
if(!hub.exists())
{try{
hub.createNewFile();
}catch(Exception e){
e.printStackTrace();
String SET_ERROR = plugin.getConfig().getString("sethub.SET_ERROR").replace("&", "<EFBFBD>");
String PREFIX = plugin.getConfig().getString("global.PREFIX").replace("&", "<EFBFBD>");
player.sendMessage(PREFIX + SET_ERROR);
return true;
}
}
s = YamlConfiguration.loadConfiguration(hub);
s.set("hub.world", player.getLocation().getWorld().getName());
s.set("hub.x", player.getLocation().getX());
s.set("hub.y", player.getLocation().getY());
s.set("hub.z", player.getLocation().getZ());
s.set("hub.yaw", player.getLocation().getYaw());
s.set("hub.pitch", player.getLocation().getPitch());
try{
s.save(hub);
}catch (Exception e){
String SET_ERROR = plugin.getConfig().getString("sethub.SET_ERROR").replace("&", "<EFBFBD>");
player.sendMessage(ChatColor.RED + SET_ERROR);
return true;
}
String HUB_SUCCESS = plugin.getConfig().getString("sethub.HUB_SUCCESS_1").replace("%world%", player.getLocation().getWorld().getName()).replace("&", "<EFBFBD>");
String PREFIX = plugin.getConfig().getString("global.PREFIX").replace("&", "<EFBFBD>");
player.sendMessage(PREFIX + HUB_SUCCESS);
}else{
String NO_PERMISSIONS = plugin.getConfig().getString("sethub.NO_PERMISSIONS").replace("&", "<EFBFBD>");
String PREFIX = plugin.getConfig().getString("global.PREFIX").replace("&", "<EFBFBD>");
player.sendMessage(PREFIX + ChatColor.RED + NO_PERMISSIONS);
}
}
return false;
}
}