Compare commits
3 Commits
main
...
dynmap_lin
Author | SHA1 | Date |
---|---|---|
Etzelia | 1880a61b2d | |
Etzelia | 39cf5cbb7a | |
Etzelia | b8e5e6e11b |
|
@ -16,8 +16,11 @@ Additions
|
|||
``**bold**`` |br|
|
||||
``~~strikethrough~~``
|
||||
|
||||
* `Dynmap Link Command`_ - Allows a user to get a link to dynmap pointing to their current location
|
||||
|
||||
.. _Checkup Command: https://git.etztech.xyz/24CarrotCraft/QoL/pulls/33
|
||||
.. _Discord Syntax: https://git.etztech.xyz/24CarrotCraft/QoL/pulls/36
|
||||
.. _Dynmap Link Command: https://git.etztech.xyz/24CarrotCraft/QoL/pulls/40
|
||||
|
||||
Bug Fixes
|
||||
---------
|
||||
|
|
|
@ -43,4 +43,4 @@ Alias ``/names`` and ``/name``
|
|||
|
||||
``/checkup <start|next|stop>`` 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.
|
||||
|
|
|
@ -40,6 +40,8 @@ Permissions
|
|||
|
||||
``qol.karattrophy`` - Ability to use the Karat Trophy command
|
||||
|
||||
``qol.dynmaplink`` - Ability to use the Dynmap Link command
|
||||
|
||||
``qol.deathmute`` - Ability to use the Death Mute command
|
||||
|
||||
``qol.griefalert`` - Receive GriefAlert alerts
|
||||
|
|
|
@ -107,6 +107,8 @@ public class QoL extends JavaPlugin {
|
|||
this.getCommand("karattrophy").setExecutor(karatTrophyCommand);
|
||||
CheckupCommand checkupCommand = new CheckupCommand(this);
|
||||
this.getCommand("checkup").setExecutor(checkupCommand);
|
||||
DynmapLinkCommand dynmapLinkCommand = new DynmapLinkCommand(this);
|
||||
this.getCommand("dynmaplink").setExecutor(dynmapLinkCommand);
|
||||
|
||||
if (getConfig().getStringList("list").size() > 0) {
|
||||
ListCommand listCommand = new ListCommand(this);
|
||||
|
|
|
@ -0,0 +1,58 @@
|
|||
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.bukkit.Location;
|
||||
import org.bukkit.command.Command;
|
||||
import org.bukkit.command.CommandExecutor;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.entity.Player;
|
||||
import xyz.etztech.qol.EtzTechUtil;
|
||||
import xyz.etztech.qol.Lang;
|
||||
import xyz.etztech.qol.QoL;
|
||||
|
||||
public class DynmapLinkCommand implements CommandExecutor {
|
||||
|
||||
QoL plugin;
|
||||
|
||||
public DynmapLinkCommand(QoL plugin) {
|
||||
this.plugin = plugin;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onCommand(CommandSender commandSender, Command command, String s, String[] args) {
|
||||
if (!( commandSender instanceof Player)) {
|
||||
EtzTechUtil.sms(commandSender, Lang.NO_CONSOLE.getDef());
|
||||
return true;
|
||||
}
|
||||
|
||||
Player player = (Player) commandSender;
|
||||
|
||||
String base = plugin.getConfig().getString("dynmap.defaults.url", "");
|
||||
String defaultMap = plugin.getConfig().getString("dynmap.defaults.map", "surface");
|
||||
String defaultZoom = String.valueOf(plugin.getConfig().getInt("dynmap.defaults.zoom", 5));
|
||||
|
||||
TextComponent message;
|
||||
if (base.trim().length() > 0) {
|
||||
String world = player.getWorld().getName();
|
||||
Location location = player.getLocation();
|
||||
String x = String.valueOf(location.getX());
|
||||
String y = String.valueOf(location.getY());
|
||||
String z = String.valueOf(location.getZ());
|
||||
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("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("This command is currently disabled or the server has no Dynmap!");
|
||||
message.setColor(ChatColor.RED);
|
||||
}
|
||||
player.spigot().sendMessage(message);
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
@ -93,3 +93,11 @@ disable-fire:
|
|||
# Overrides view distance per world, format is [World Name]: [View Distance]
|
||||
view-distances:
|
||||
world: 2
|
||||
|
||||
# Dynmap link
|
||||
# Leave url blank to disable
|
||||
dynmap:
|
||||
url: ""
|
||||
defaults:
|
||||
map: "surface"
|
||||
zoom: 5
|
||||
|
|
|
@ -45,6 +45,9 @@ commands:
|
|||
aliases: [trophy]
|
||||
checkup:
|
||||
description: Checkup command
|
||||
dynmaplink:
|
||||
description: Dynmap Link command
|
||||
aliases: [dlink]
|
||||
permissions:
|
||||
qol.admin:
|
||||
description: Ability to reload the plugin
|
||||
|
@ -85,6 +88,9 @@ permissions:
|
|||
qol.checkup:
|
||||
description: Ability to use the Checkup Command
|
||||
default: op
|
||||
qol.dynmaplink:
|
||||
description: Ability to use the Dynmap Link Command
|
||||
default: op
|
||||
qol.auditable:
|
||||
description: Audits command usage
|
||||
default: op
|
||||
|
|
Loading…
Reference in New Issue