Pack: Quick Commands - teakivy/teaks-tweaks GitHub Wiki

Pack: Quick Commands (quick-commands)

Quick Commands adds various commands to enhance the gameplay experience.

Command Description
/gms Runs /gamemode survival.
/gmc Runs /gamemode creative.
/gma Runs /gamemode adventure.
/gmsp Runs /gamemode spectator.
/message Imitates Minecraft's default /message command
/reply Quickly reply to whoever last sent you a message.
/feed Sets the player's hunger level and saturation to 20.
/heal Sets the player's health to max.
/fly Toggles flight for the player.
/enderchest Opens the player's Ender Chest.
/craftingtable Opens a virtual Crafting Table for the player.

Showcase

Gamemode

quick-commands-gamemode

Reply

quick-commands-reply

Feed

quick-commands-feed

Heal

quick-commands-heal

Fly

quick-commands-fly

Ender Chest

quick-commands-enderchest

Crafting Table

quick-commands-craftingtable

Config

The config for this pack can be found in the config.yml file for the plugin.

# Quick Commands
# Quickly switch game modes, reply, and more with simple commands.
quick-commands:
  enabled: false
  # Game mode switcher commands
  #
  # Commands:
  # /gmc (Permission: teakstweaks.command.gmc)
  # /gms (Permission: teakstweaks.command.gms)
  # /gma (Permission: teakstweaks.command.gma)
  # /gmsp (Permission: teakstweaks.command.gmsp)
  gamemode: true
  # Reply commands (/r, /reply)
  # This overrides minecraft's default message system
  #
  # Commands:
  # /reply <message> (Permission: teakstweaks.command.reply)
  reply: true
  # Feed command
  # Sets the player's food level and saturation to full
  #
  # Commands:
  # /feed [player] (Permission: teakstweaks.command.feed)
  feed: true
  # Heal command
  # Sets the player's health to full
  #
  # Commands:
  # /heal [player] (Permission: teakstweaks.command.heal)
  heal: true
  # Fly command
  # Toggles the player's ability to fly
  #
  # Commands:
  # /fly [player] (Permission: teakstweaks.command.fly)
  fly: true
  # Ender Chest command
  # Opens the player's enderchest
  #
  # Commands:
  # /enderchest (Permission: teakstweaks.command.enderchest)
  enderchest: true
  # Crafting Table command
  # Opens the crafting table
  #
  # Commands:
  # /craftingtable (Permission: teakstweaks.command.craftingtable)
  craftingtable: true

Options

enabled

  • Type - boolean
  • Default - false
  • Description - Controls whether the pack is enabled.

gamemode

  • Type - boolean
  • Default - true
  • Description - Controls whether gamemode commands (/gms, /gmc, /gma, and /gmsp) are enabled.

reply

  • Type - boolean
  • Default - true
  • Description - Controls whether the /reply command is enabled.

feed

  • Type - boolean
  • Default - true
  • Description - Controls whether the /feed command is enabled.

heal

  • Type - boolean
  • Default - true
  • Description - Controls whether the /heal command is enabled.

fly

  • Type - boolean
  • Default - true
  • Description - Controls whether the /fly command is enabled.

enderchest

  • Type - boolean
  • Default - true
  • Description - Controls whether the /enderchest command is enabled.

craftingtable

  • Type - boolean
  • Default - true
  • Description - Controls whether the /craftingtable command is enabled.

Linked Commands

Permissions

teakstweaks.command.gms

  • Default - op
  • Description - Controls whether the player can use the /gms command.

teakstweaks.command.gmc

  • Default - op
  • Description - Controls whether the player can use the /gmc command.

teakstweaks.command.gma

  • Default - op
  • Description - Controls whether the player can use the /gma command.

teakstweaks.command.gmsp

  • Default - op
  • Description - Controls whether the player can use the /gmsp command.

teakstweaks.command.reply

  • Default - true
  • Description - Controls whether the player can use the /reply command.

teakstweaks.command.feed

  • Default - op
  • Description - Controls whether the player can use the /feed command.

teakstweaks.command.heal

  • Default - op
  • Description - Controls whether the player can use the /heal command.

teakstweaks.command.fly

  • Default - op
  • Description - Controls whether the player can use the /fly command.

teakstweaks.command.enderchest

  • Default - true
  • Description - Controls whether the player can use the /enderchest command.

teakstweaks.command.craftingtable

  • Default - true
  • Description - Controls whether the player can use the /craftingtable command.

Messages

"quick_commands.name": "Quick Commands",
"quick_commands.description": "Quickly switch game modes, and reply to messages.",
"quick_commands.message.command_description": "Send a private message to a player.",
"quick_commands.message.whisper_to_you": "<gray><italic><player> whispers to you: <message>",
"quick_commands.message.whisper_to_player": "<gray><italic>You whisper to <player>: <message>",
"quick_commands.reply.command_description": "Reply to the last person who messaged you.",
"quick_commands.reply.error.no_reply": "<red>You have no one to reply to!",
"quick_commands.gmc.command_description": "Change your gamemode to creative.",
"quick_commands.gms.command_description": "Change your gamemode to survival.",
"quick_commands.gmsp.command_description": "Change your gamemode to spectator.",
"quick_commands.gma.command_description": "Change your gamemode to adventure.",
"quick_commands.feed.command_description": "Feed yourself.",
"quick_commands.heal.command_description": "Heal yourself.",
"quick_commands.fly.command_description": "Toggle flight.",
"quick_commands.enderchest.command_description": "Open your Ender Chest.",
"quick_commands.craftingtable.command_description": "Open a Crafting Table.",

quick_commands.name

  • Default - Quick Commands

quick_commands.description

  • Default - Quickly switch game modes, and reply to messages.

quick_commands.message.command_description

  • Default - Send a private message to a player.

quick_commands.message.whisper_to_you

  • Default - <gray><italic><player> whispers to you: <message>
  • Placeholders
    • player - The player who sent the message.
    • message - The message.

quick_commands.message.whisper_to_player

  • Default - <gray><italic>You whisper to <player>: <message>
  • Placeholders
    • player - The player who sent the message.
    • message - The message.

quick_commands.reply.command_description

  • Default - Reply to the last person who messaged you.

quick_commands.reply.error.no_reply

  • Default - <red>You have no one to reply to!

quick_commands.gmc.command_description

  • Default - Change your gamemode to creative.

quick_commands.gms.command_description

  • Default - Change your gamemode to survival.

quick_commands.gmsp.command_description

  • Default - Change your gamemode to spectator.

quick_commands.gma.command_description

  • Default - Change your gamemode to adventure.

quick_commands.feed.command_description

  • Default - Feed yourself.

quick_commands.heal.command_description

  • Default - Heal yourself.

quick_commands.fly.command_description

  • Default - Toggle flight.

quick_commands.enderchest.command_description

  • Default - Open your Ender Chest.

quick_commands.craftingtable.command_description

  • Default - Open a Crafting Table.
⚠️ **GitHub.com Fallback** ⚠️