From 1a6dc6ad26494c6769159a9b404ccfb837065bcf Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sun, 4 Jun 2023 11:58:31 +0200 Subject: Added /pt alias for /party transfer --- src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 ++ .../skyhanni/config/features/CommandsFeatures.java | 6 +++++ .../features/commands/PartyTransferCommand.kt | 26 ++++++++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 src/main/java/at/hannibal2/skyhanni/features/commands/PartyTransferCommand.kt (limited to 'src/main/java/at/hannibal2') diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 5455967be..e67ef054b 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -16,6 +16,7 @@ import at.hannibal2.skyhanni.features.chat.ChatFilter import at.hannibal2.skyhanni.features.chat.PlayerDeathMessages import at.hannibal2.skyhanni.features.chat.playerchat.PlayerChatFilter import at.hannibal2.skyhanni.features.chat.playerchat.PlayerChatModifier +import at.hannibal2.skyhanni.features.commands.PartyTransferCommand import at.hannibal2.skyhanni.features.commands.WikiCommand import at.hannibal2.skyhanni.features.damageindicator.DamageIndicatorManager import at.hannibal2.skyhanni.features.dungeon.* @@ -178,6 +179,7 @@ class SkyHanniMod { loadModule(RealTime()) loadModule(RngMeterInventory()) loadModule(WikiCommand()) + loadModule(PartyTransferCommand()) loadModule(SummoningMobManager()) loadModule(AreaMiniBossFeatures()) loadModule(MobHighlight()) diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java b/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java index 34c2d9dcd..9cd9c82bb 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java @@ -10,4 +10,10 @@ public class CommandsFeatures { @ConfigOption(name = "Fandom Wiki", desc = "Use Fandom wiki (§ehypixel-skyblock.fandom.com§7) instead of the Hypixel wiki (§ewiki.hypixel.net§7).") @ConfigEditorBoolean public boolean useFandomWiki = false; + + @Expose + @ConfigOption(name = "Party transfer", desc = "Allows §e/pt §7as alias for §e/party transfer§7.\n" + + "§7SkyBlock Command §e/tp §7to check the play time still works.") + @ConfigEditorBoolean + public boolean usePartyTransferAlias = true; } diff --git a/src/main/java/at/hannibal2/skyhanni/features/commands/PartyTransferCommand.kt b/src/main/java/at/hannibal2/skyhanni/features/commands/PartyTransferCommand.kt new file mode 100644 index 000000000..485a3569f --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/features/commands/PartyTransferCommand.kt @@ -0,0 +1,26 @@ +package at.hannibal2.skyhanni.features.commands + +import at.hannibal2.skyhanni.SkyHanniMod +import at.hannibal2.skyhanni.events.PacketEvent +import at.hannibal2.skyhanni.utils.LorenzUtils +import at.hannibal2.skyhanni.utils.StringUtils.matchMatcher +import net.minecraft.network.play.client.C01PacketChatMessage +import net.minecraftforge.fml.common.eventhandler.SubscribeEvent + +class PartyTransferCommand { + @SubscribeEvent + fun onSendPacket(event: PacketEvent.SendEvent) { + if (!SkyHanniMod.feature.commands.usePartyTransferAlias) return + + val packet = event.packet + if (packet is C01PacketChatMessage) { + val pattern = "/pt (?.*)".toPattern() + pattern.matchMatcher(packet.message.lowercase()) { + event.isCanceled = true + val args = group("args") + LorenzUtils.sendCommandToServer("party transfer $args") + } + } + } + +} \ No newline at end of file -- cgit