Update colors to JSON message format

Signed-off-by: Etzelia <etzelia@hotmail.com>
dynmap_link
Etzelia 2019-10-04 16:43:17 -05:00
parent 39cf5cbb7a
commit 1880a61b2d
No known key found for this signature in database
GPG Key ID: 708511AE7ABC5314
2 changed files with 6 additions and 9 deletions

View File

@ -43,4 +43,4 @@ Alias ``/names`` and ``/name``
``/checkup <start|next|stop>`` Start a checkup, teleporting to all online players.
``/dynmaplink [<map>] [<zoom>]`` Start a checkup, teleporting to all online players.
``/dynmaplink [<map>] [<zoom>]`` Get a link to Dynmap with your current location. Optionally choose the map (flat, surface, etc.) and zoom level.

View File

@ -1,22 +1,17 @@
package xyz.etztech.qol.commands;
import net.md_5.bungee.api.ChatColor;
import net.md_5.bungee.api.chat.ClickEvent;
import net.md_5.bungee.api.chat.TextComponent;
import org.apache.commons.lang.StringUtils;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.Location;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.dynmap.DynmapAPI;
import xyz.etztech.qol.EtzTechUtil;
import xyz.etztech.qol.Lang;
import xyz.etztech.qol.QoL;
import java.util.*;
public class DynmapLinkCommand implements CommandExecutor {
QoL plugin;
@ -48,10 +43,12 @@ public class DynmapLinkCommand implements CommandExecutor {
String map = args.length > 0 ? args[0] : defaultMap;
String zoom = args.length > 1 ? args[1] : defaultZoom;
String url = String.format("%s?worldname=%s&mapname=%s&zoom=%s&x=%s&y=%s&z=%s", base, world, map, zoom, x, y, z);
message = new TextComponent(ChatColor.YELLOW + "Click here to see your location on Dynmap.");
message = new TextComponent("Click here to see your location on Dynmap.");
message.setColor(ChatColor.YELLOW);
message.setClickEvent(new ClickEvent(ClickEvent.Action.OPEN_URL, url));
} else {
message = new TextComponent(ChatColor.RED + "This command is currently disabled or the server has no Dynmap!");
message = new TextComponent("This command is currently disabled or the server has no Dynmap!");
message.setColor(ChatColor.RED);
}
player.spigot().sendMessage(message);