ArmorStandGUI
A custom GUI to configure and summon new armor stands!
A custom GUI to configure and summon new armor stands!
ArmorStandGUI is a brand new plugin that allows you to create new armor stands through an easy to use GUI!
The plugin is currently quite small but there are some fancy new features on the way! Please read the entire resource page to know exactly what this plugin offers!
If you have any suggestions, problems or found any bugs, feel free to PM me and I will help you asap!
COMPATABILITY
- This plugin currently only works on version 1.17.x and there won't be support for lower versions in the future.
FEATURES
- Summon armor stands through and easy to use GUI.
- Toggle: arms, baseplate, glow, gravity, invulnerability and size.
- Add all the armor in the game to the armor stand, including elytra's!
- Editable messages.
COMMANDS
- /armorstand or /as : Opens the main GUI from which you can access the create GUI.
- /asgui : A command which does things depending on the arguments.
- /asgui info : Shows some information about the plugin.
- /asgui reload : Reloads the plugin.
- /asgui version : Shows the version of the loaded plugin.
PERMISSIONS
- armorstandgui.commands.armorstand : Permission to use the /armorstand command, thus giving you access to the main GUI.
- armorstandgui.reload: Permission to reload the plugin using /asgui reload
CONFIGURATION FILES
- config.yml - The main (and currently only) config, contains all the strings of text the player will see. If you wish to change a message or a menu title, you can change it here!
Spoiler: config.yml
Code (YAML):
#===============================================================================#
# Config File of ArmorStandGUI
#===============================================================================#
#
# Plugin created by Mr. Gamez
# Spigot page link: https://www.spigotmc.org/resources/armorstandgui.97492/
#
# If you need any plugin support, feel free to message me on discord
# (MrGamez#0896) or on Spigot (MrGam3z)
#
#===============================================================================#
#
# Information:
#
# - File generated by v${project.version}
# - If this isn't the version you are currently running, please delete this
# config file since it may have been updated. The plugin will automatically
# generate a new (updated) one. If you wish to reset this config file, you can do the same.
# - As you can see config.yml is currently empty, in one of the next updates
# It will have a use, so keep an eye out for that!
#
# - To edit the messages that get displayed, please go to messages.yml instead.
#
#===============================================================================#
# Config File of ArmorStandGUI
#===============================================================================#
#
# Plugin created by Mr. Gamez
# Spigot page link: https://www.spigotmc.org/resources/armorstandgui.97492/
#
# If you need any plugin support, feel free to message me on discord
# (MrGamez#0896) or on Spigot (MrGam3z)
#
#===============================================================================#
#
# Information:
#
# - File generated by v${project.version}
# - If this isn't the version you are currently running, please delete this
# config file since it may have been updated. The plugin will automatically
# generate a new (updated) one. If you wish to reset this config file, you can do the same.
# - As you can see config.yml is currently empty, in one of the next updates
# It will have a use, so keep an eye out for that!
#
# - To edit the messages that get displayed, please go to messages.yml instead.
#
#===============================================================================#
- messages.yml - In this file you can change the messages that get displayed in chat and also the titles of the different menus.
Spoiler: messages.yml
Code (YAML):
#===============================================================================#
# Message File of ArmorStandGUI
#===============================================================================#
#
# Plugin created by Mr. Gamez
# Spigot page link: https://www.spigotmc.org/resources/armorstandgui.97492/
#
# If you need any plugin support, feel free to message me on discord
# (MrGamez#0896) or on Spigot (MrGam3z)
#
#===============================================================================#
#
# Information:
#
# - File generated by v${project.version}
# - If this isn't the version you are currently running, please delete this
# config file since it may have been updated. The plugin will automatically
# generate a new (updated) one. If you wish to reset this config file, you can do the same.
#
# - Edit these strings if you want to edit the language or sentences used in this plugin.
# - IMPORTANT: Don't edit anything else outside the strings because the
# plugin will likely break if you do that.
# - Also, do not use double quotation marks (") inside of the string itself.
#
# - Color Codes are supported with the "&" character.
# - Use {prefix} to add a prefix anywhere in the message.
#
#===============================================================================#
message:
prefix : "&8[&3ArmorStand&bGUI&8]"
noPermission : "{prefix} &cYou don't have the permissions to do this."
noArguments : "{prefix} &cPlease provide one of the following arguments: {args}" # NOTE: {args} is not editable through this file, these get added internally.
invalidArguments : "{prefix} &cUnknown arguments, please use one of the following arguments: {args}"
#===============================================================================#
# Command Messages
#===============================================================================#
commands:
asgui:
reload : "{prefix} &aConfig has been reloaded"
version : "&aThe plugin is currently running on version &2v${project.version}" # NOTE: The second part of this message is not editable.
# info is not editable.
#===============================================================================#
# Menu Titles
#===============================================================================#
menuTitles:
main : "&1Armor Stand GUI"
create : "&3Create an Armor Stand"
armor : "&2Choose some Armor"
arms : "&2Add arms to the stand?"
basePlate : "&2Add a base plate to the stand?"
glow : "&2Add glow to the stand?"
gravity : "&2Apply gravity to the stand?"
invulnerable : "&2Make the stand invulnerable?"
size : "&2Choose the size of the stand"
#===============================================================================#
# Create Menu Messages
#===============================================================================#
createMenu:
create : "{prefix} &2Created Armor Stand"
cancel : "{prefix} &cCancelled Armor Stand Creation"
#===============================================================================#
# Armor Menu Messages
#===============================================================================#
armorMenu:
addArmor:
helmet : "{prefix} &2Added Helmet"
chestplate : "{prefix} &2Added Chestplate"
leggings : "{prefix} &2Added Leggings"
boots : "{prefix} &2Added Boots"
elytra : "{prefix} &2Added Elytra"
reset : "{prefix} &cRemoved Armor"
confirm : "{prefix} &2Saved Armor"
#===============================================================================#
# Arms Menu Messages
#===============================================================================#
armsMenu:
add : "{prefix} &2Added Arms"
remove : "{prefix} &cRemoved Arms"
#===============================================================================#
# BasePlate Menu Messages
#===============================================================================#
basePlateMenu:
add : "{prefix} &2Added Base Plate"
remove : "{prefix} &cRemoved Base Plate"
#===============================================================================#
# Glow Menu Messages
#===============================================================================#
glowMenu:
add : "{prefix} &2Added Glow"
remove : "{prefix} &cRemoved Glow"
#===============================================================================#
# Gravity Menu Messages
#===============================================================================#
gravityMenu:
add : "{prefix} &2Applied gravity to the armor stand"
remove : "{prefix} &cRemoved gravity from the armor stand"
#===============================================================================#
# Invulnerable Menu Messages
#===============================================================================#
invulnerableMenu:
add : "{prefix} &2Made the armor stand invulnerable"
remove : "{prefix} &cRemoved invulnerability from the armor stand"
#===============================================================================#
# Size Menu Messages
#===============================================================================#
sizeMenu:
small : "{prefix} &2Changed the size of the armor stand to small"
normal : "{prefix} &2Changed the size of the armor stand to normal"
# Message File of ArmorStandGUI
#===============================================================================#
#
# Plugin created by Mr. Gamez
# Spigot page link: https://www.spigotmc.org/resources/armorstandgui.97492/
#
# If you need any plugin support, feel free to message me on discord
# (MrGamez#0896) or on Spigot (MrGam3z)
#
#===============================================================================#
#
# Information:
#
# - File generated by v${project.version}
# - If this isn't the version you are currently running, please delete this
# config file since it may have been updated. The plugin will automatically
# generate a new (updated) one. If you wish to reset this config file, you can do the same.
#
# - Edit these strings if you want to edit the language or sentences used in this plugin.
# - IMPORTANT: Don't edit anything else outside the strings because the
# plugin will likely break if you do that.
# - Also, do not use double quotation marks (") inside of the string itself.
#
# - Color Codes are supported with the "&" character.
# - Use {prefix} to add a prefix anywhere in the message.
#
#===============================================================================#
message:
prefix : "&8[&3ArmorStand&bGUI&8]"
noPermission : "{prefix} &cYou don't have the permissions to do this."
noArguments : "{prefix} &cPlease provide one of the following arguments: {args}" # NOTE: {args} is not editable through this file, these get added internally.
invalidArguments : "{prefix} &cUnknown arguments, please use one of the following arguments: {args}"
#===============================================================================#
# Command Messages
#===============================================================================#
commands:
asgui:
reload : "{prefix} &aConfig has been reloaded"
version : "&aThe plugin is currently running on version &2v${project.version}" # NOTE: The second part of this message is not editable.
# info is not editable.
#===============================================================================#
# Menu Titles
#===============================================================================#
menuTitles:
main : "&1Armor Stand GUI"
create : "&3Create an Armor Stand"
armor : "&2Choose some Armor"
arms : "&2Add arms to the stand?"
basePlate : "&2Add a base plate to the stand?"
glow : "&2Add glow to the stand?"
gravity : "&2Apply gravity to the stand?"
invulnerable : "&2Make the stand invulnerable?"
size : "&2Choose the size of the stand"
#===============================================================================#
# Create Menu Messages
#===============================================================================#
createMenu:
create : "{prefix} &2Created Armor Stand"
cancel : "{prefix} &cCancelled Armor Stand Creation"
#===============================================================================#
# Armor Menu Messages
#===============================================================================#
armorMenu:
addArmor:
helmet : "{prefix} &2Added Helmet"
chestplate : "{prefix} &2Added Chestplate"
leggings : "{prefix} &2Added Leggings"
boots : "{prefix} &2Added Boots"
elytra : "{prefix} &2Added Elytra"
reset : "{prefix} &cRemoved Armor"
confirm : "{prefix} &2Saved Armor"
#===============================================================================#
# Arms Menu Messages
#===============================================================================#
armsMenu:
add : "{prefix} &2Added Arms"
remove : "{prefix} &cRemoved Arms"
#===============================================================================#
# BasePlate Menu Messages
#===============================================================================#
basePlateMenu:
add : "{prefix} &2Added Base Plate"
remove : "{prefix} &cRemoved Base Plate"
#===============================================================================#
# Glow Menu Messages
#===============================================================================#
glowMenu:
add : "{prefix} &2Added Glow"
remove : "{prefix} &cRemoved Glow"
#===============================================================================#
# Gravity Menu Messages
#===============================================================================#
gravityMenu:
add : "{prefix} &2Applied gravity to the armor stand"
remove : "{prefix} &cRemoved gravity from the armor stand"
#===============================================================================#
# Invulnerable Menu Messages
#===============================================================================#
invulnerableMenu:
add : "{prefix} &2Made the armor stand invulnerable"
remove : "{prefix} &cRemoved invulnerability from the armor stand"
#===============================================================================#
# Size Menu Messages
#===============================================================================#
sizeMenu:
small : "{prefix} &2Changed the size of the armor stand to small"
normal : "{prefix} &2Changed the size of the armor stand to normal"
PLANNED FEATURES
Following there will be some planned features. These features will eventually all be added to the plugin. But it doesn't necessarily mean they will be added in the next upcoming update!
Following there will be some planned features. These features will eventually all be added to the plugin. But it doesn't necessarily mean they will be added in the next upcoming update!
- Toggle: display name, equipment lock, invisibility.
- Set display name.
- Glow colors.
- Item in (off)hand.
- Editable default settings (through config.yml).
- Pose presets and edit pose.
- Editable, already existing armor stands.
- And more!
KNOWN BUGS
Please report any bugs you find in my PM or on discord! Also check if your bug is in the list below before reporting it.
Please report any bugs you find in my PM or on discord! Also check if your bug is in the list below before reporting it.
- Bottom leather chestplate in armor menu clickable whilst it shouldn't be.
- Bottom armor stand in size menu clickable whilst it shouldn't be.
If you have any suggestions, want to report a bug or have a question, feel free to PM me! I am always happy to help!
If you enjoy the plugin, feel free to leave a review!
Please do not use the review section to report bugs or add suggestions, my PM's are always open and you can always ask for help there!
If you enjoy the plugin, feel free to leave a review!
Please do not use the review section to report bugs or add suggestions, my PM's are always open and you can always ask for help there!
Quick facts
- Edition: Minecraft Java
- File type: .jar
- Minecraft version listed: 1.17
- How to install: Install the matching mod loader (Forge, Fabric or NeoForge) for your Minecraft version. → Download the .jar. → Put it in the .minecraft/mods folder and launch that loader profile.
- Where to get it: Opens on Spigot — not every file is mirrored on our own servers.
Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.
ArmorStandGUI is a free Minecraft Java mod. Compatible with Minecraft 1.17. Downloaded 138 times (via Spigot). Download it and open it directly in the game.