Skip to content

Vanity Plates - Configuration

All of the configuration files for Vanity Plates are located in the <game_directory>/config/vanity_plates directory.

Configuration files:

  • server.toml - Server side configuration options for Vanity Plates.
  • gui.toml - GUI configuration options for Vanity Plates.
server.toml
#Vanity Plates Server Config
[vanity_plates]
prefixPriority = 1000
[[vanity_plates.availablePlates]]
label = "Demo"
requiredPermission = "demo.plate"
displayItem = "minecraft:paper"
prefix = "[Demo]"

The priority of the prefix when displayed in chat.

  • Type: Integer
  • Default: 1000
  • Range: Greater than -2147483648

A list of available vanity plates that users can assign to themselves.

Each entry should be a config object with the following fields:

  • displayItem: The item to display in the GUI (string, e.g., ‘minecraft:paper’)
  • label: The label to display in the GUI (string)
  • requiredPermission: The permission required to use this plate (string)
  • prefix: The prefix to display in chat (string)
  • customModelData: Optional custom model data for the display item (integer, optional)
gui.toml
#GUI Configuration
[gui]
#GUI Text
[gui.text]
displayTitle = "Vanity Plates"
clearPrefix = "Clear Prefix"
exit = "Exit"
previousPage = "Previous Page"
nextPage = "Next Page"
pageIndicator = "Page %current%/%length%"
#GUI Display Items
[gui.displayItems]
frameItemId = "minecraft:gray_stained_glass_pane"
prevNavigationItemId = "minecraft:arrow"
nextNavigationItemId = "minecraft:arrow"
clearItemId = "minecraft:name_tag"
pageItemId = "minecraft:book"
exitItemId = "minecraft:barrier"
#GUI Colors
[gui.colors]
titleColor = "GOLD"
navigationItemColor = "AQUA"
clearItemColor = "RED"
pageItemColor = "GOLD"
exitItemColor = "RED"
#GUI Back button Configuration
[gui.backButton]
enabled = false
itemId = "minecraft:recovery_compass"
label = "Back to Previous Menu"
color = "RED"
command = "gui open example-main %player%"
#GUI Permissions
[gui.permissions]
clearPrefixUiButtonPermission = ""

Allows configuration of the text displayed in the Vanity Plates GUI.

The title of the Vanity Plates GUI.

  • Type: String
  • Default: "Vanity Plates"

The text for the ‘Clear Prefix’ button in the GUI.

  • Type: String
  • Default: "Clear Prefix"

The text for the ‘Exit’ button in the GUI.

  • Type: String
  • Default: "Exit"

The text for the ‘Previous Page’ button in the GUI.

  • Type: String
  • Default: "Previous Page"

The text for the ‘Next Page’ button in the GUI.

  • Type: String
  • Default: "Next Page"

The text for the page indicator in the GUI. Use %current% and %length% as placeholders for the current page and total pages.

  • Type: String
  • Default: "Page %current%/%length%"

Allows configuration of the items used in the Vanity Plates GUI.

The item ID for the frame item in the GUI.

  • Type: String
  • Default: "minecraft:gray_stained_glass_pane"

The item ID for the ‘Previous Page’ button in the GUI.

  • Type: String
  • Default: "minecraft:arrow"

The item ID for the ‘Next Page’ button in the GUI.

  • Type: String
  • Default: "minecraft:arrow"

The item ID for the ‘Clear Prefix’ button in the GUI.

  • Type: String
  • Default: "minecraft:name_tag"

The item ID for the page indicator in the GUI.

  • Type: String
  • Default: "minecraft:book"

The item ID for the ‘Exit’ button in the GUI.

  • Type: String
  • Default: "minecraft:barrier"

Allows configuration of the colors used in the Vanity Plates GUI.

Allowed Values for Colors:

  • BLACK
  • DARK_BLUE
  • DARK_GREEN
  • DARK_AQUA
  • DARK_RED
  • DARK_PURPLE
  • GOLD
  • GRAY
  • DARK_GRAY
  • BLUE
  • GREEN
  • AQUA
  • RED
  • LIGHT_PURPLE
  • YELLOW
  • WHITE

The color of the GUI title.

  • Default: "GOLD"

The color of the navigation items in the GUI.

  • Default: "AQUA"

The color of the ‘Clear Prefix’ button in the GUI.

  • Default: "RED"

The color of the page indicator in the GUI.

  • Default: "GOLD"

The color of the ‘Exit’ button in the GUI.

  • Default: "RED"

Configuration for the back button in the Vanity Plates GUI.

Whether the back button is enabled in the GUI.

  • Type: Boolean
  • Default: false

The item ID for the back button in the GUI.

  • Type: String
  • Default: "minecraft:recovery_compass"

The label for the back button in the GUI.

  • Type: String
  • Default: "Back to Previous Menu"

The color of the back button in the GUI.

  • Default: "RED"

The command to execute when the back button is pressed in the GUI.

  • Type: String
  • Default: "gui open example-main %player%"

Permissions related to the Vanity Plates GUI.

The permission required to see the ‘Clear Prefix’ button in the GUI.

  • Type: String
  • Default: "" (no permission required)