To make staff mode more configurable Staff++ has the option to add custom staff modules.
These staff modules can be used when a player enters staff mode.
Custom modules can be configured underneath the custom-modules section of the staff-mode .
There are 2 types of custom modules: Command modules & Plain Modules.
Command module
# Name of the module, can be anything you want as long as it's a valid yaml keyExampleCommandModule:# Indicates if this module should be enabledenabled:true# Type of command module: COMMAND_STATIC;COMMAND_DYNAMIC;COMMAND_CONSOLEtype:COMMAND_STATIC# The inventory slot where this item should be placed while in staff-modeslot:30# The material of the itemitem:DIAMONDname:"&4Ban all god kids"lore:"&4line1, &6line2, &3line3"# The command to execute when this item is usedcommand:"ban Shortninja &4For coding 2hard!!11!1!one!"
Type
Description
COMMAND_STATIC
Execute the configured command as the player who clicked the item.
This command takes only %clicker% as placeholder. No target must be provided.
COMMAND_DYNAMIC
Execute the configured command as the staff member who clicked the item.
Use this if you are writing a command module that targets a player.
The command will target the player the staff member is pointing at.
You can use the following placeholders: "%clicker%" & "%clicked%".
Clicker is the name of the staff member, clicked is the name of the target player. If the staff member is not targeting a player, nothing will happen.
COMMAND_CONSOLE
Execute the configured command as the console. This can either target a player or not. The command will target the player the staff member is pointing at. You can use the following placeholders: "%clicker%" & "%clicked%".
"Clicker" is the name of the staff member, "clicked" is the name of the target player
Plain Module
Plain modules just add a regular item inside the staff's inventory.
Make sure to define "TYPE: ITEM"
# Name of the module, can be anything you want as long as it's a valid yaml keyExamplePlainModule:# Indicates if this module should be enabledenabled:true# Type always ITEM for plain modules.type:ITEM# The inventory slot where this item should be placed while in staff-modeslot:34# The material of the itemitem:STICKname:"&7Knock out stick"lore:"&8Knock em out!!"# Optional enchantment # The enchantment for the item format is name:level # for names of enchantments reference https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/enchantments/Enchantment.htmlenchantment:"knockback:2"
Input
Modules can have an input prompt popup before they get executed. The input can then be used as a placeholder in the command.
CustomBanModule:enabled:truetype:COMMAND_DYNAMICslot:30item:DIAMONDname:'&4Ban target player, provide reason in chat'lore:'&4Ban a player after providing reason'command:ban %clicked% %input%require-input:trueinput-prompt:Please provide a reason for banning %clicked%.
Confirmation
Modules can have a confirmation GUI or Chat pop up before the action is executed.
This is useful to prevent accidents from happening, especially for modules that execute severe actions.
You can combine confirmation with input as shown in the example below. Confirmation can of course also be used standalone without the input option.
CustomBanModule:enabled:truetype:COMMAND_DYNAMICslot:30item:DIAMONDname:'&4Ban target player, provide reason in chat'lore:'&4Ban a player after providing reason'command:ban %clicked% %input%require-input:trueinput-prompt:Please provide a reason for banning %clicked%.confirmation:CHATconfirmation-message:Are you sure you want to ban %clicked% for reason "%input%".
Example configuration
staff-mode:custom-modules:ExampleStaticCommand:enabled:truetype:COMMAND_STATICslot:30item:DIAMONDname:"&4Ban all god kids"lore:"&4line1, &6line2, &3line3"command:"ban Shortninja &4For coding 2hard!!11!1!one!"ExampleDynamicCommand:enabled:truetype:COMMAND_DYNAMICslot:31item:QUARTZname:"&4Ban this kid"lore:"&cyou damn lazy staff"command:"ban %clicked% &6for shitposting too much with %clicker%"ExampleConsoleCommand:enabled:truetype:COMMAND_CONSOLEslot:33item:OBSIDIANname:"&bDisable staff mode"lore:"&7you're so lazy"command:"staff %clicker% disable"ExamplePlainItem:enabled:truetype:ITEMslot:34item:WOOD_AXEname:"&7WorldEdit Wand"lore:"&8don't grief shitlord!!"ExampleEchantment:enabled:truetype:ITEMslot:34item:STICKname:"&7Knock out stick"lore:"&8Knock em out!!"enchantment:"knockback:2"