diff options
author | ingle <inglettronald@gmail.com> | 2022-09-23 22:24:48 -0500 |
---|---|---|
committer | ingle <inglettronald@gmail.com> | 2022-09-23 22:25:15 -0500 |
commit | 3cd5f5f32cd60c15e1c68862d28885f733473dad (patch) | |
tree | b58f43d7a27cfab3246b7b32a84ff1b8518dd3b9 /src/main/kotlin/dulkirmod/command/HelpCommand.kt | |
parent | 982f4e721ea20eaef3056050ad0b6a5058d24354 (diff) | |
download | DulkirMod-3cd5f5f32cd60c15e1c68862d28885f733473dad.tar.gz DulkirMod-3cd5f5f32cd60c15e1c68862d28885f733473dad.tar.bz2 DulkirMod-3cd5f5f32cd60c15e1c68862d28885f733473dad.zip |
Some things work now
Diffstat (limited to 'src/main/kotlin/dulkirmod/command/HelpCommand.kt')
-rw-r--r-- | src/main/kotlin/dulkirmod/command/HelpCommand.kt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/main/kotlin/dulkirmod/command/HelpCommand.kt b/src/main/kotlin/dulkirmod/command/HelpCommand.kt new file mode 100644 index 0000000..804cb5c --- /dev/null +++ b/src/main/kotlin/dulkirmod/command/HelpCommand.kt @@ -0,0 +1,28 @@ +package dulkirmod.command + +import net.minecraft.client.Minecraft +import net.minecraft.command.CommandException +import net.minecraft.command.ICommandSender +import net.minecraft.util.ChatComponentText +import net.minecraft.util.EnumChatFormatting + +class HelpCommand : ClientCommandBase("dulkirhelp") { + @Throws(CommandException::class) + override fun processCommand(sender: ICommandSender, args: Array<String>) { + Minecraft.getMinecraft().thePlayer.addChatMessage( + ChatComponentText( + EnumChatFormatting.GOLD.toString() + "" + EnumChatFormatting.BOLD + " HI THIS IS DULKIRMOD!" + ) + ) + Minecraft.getMinecraft().thePlayer.addChatMessage( + ChatComponentText( + EnumChatFormatting.GRAY.toString() + "/enchantrune - toggles enchant rune visibility." + ) + ) + Minecraft.getMinecraft().thePlayer.addChatMessage( + ChatComponentText( + EnumChatFormatting.GRAY.toString() + "/fairy - toggles healer fairy visibility." + ) + ) + } +}
\ No newline at end of file |