Lorenzo0111's Plugins
Discord
Lorenzo0111's Plugins
Lorenzo0111's Plugins
  • Home
  • RocketJoin
    • Starting
    • Configure
    • Conditions
      • Permission
      • First Join
    • Join Commands
    • Bungeecord
  • RocketPlaceholders
    • Starting
    • Configure
      • Custom Conditions
        • JavaScript Condition
        • Money Condition
        • Item Condition
        • Permission Condition
        • Group Condition
      • Custom Permissions
    • MySQL
      • MySQL F.A.Q
    • API
    • Dev Builds
  • MultiLang
    • Starting
    • Configuration
    • Translating
    • Messages
    • Gui
    • RealTime
Powered by GitBook
On this page
  • Creating a MultiPermission Placeholder
  • Creating a Public Placeholder

Was this helpful?

Edit on GitHub
Export as PDF
  1. RocketPlaceholders
  2. Configure

Custom Permissions

PreviousGroup ConditionNextMySQL

Last updated 2 months ago

Was this helpful?

This section has been deprecated. Please see .

Creating a MultiPermission Placeholder

With RocketPlaceholders you can create a custom placeholder based on permissions.

  0:
    placeholder: "example"
    text: "This is an example"
    permissions:
      1:
        permission: "example.example"
        text: "Example"

All players with the example.example permission can view the Example text, other people can view the This is an example text

You can create unillimted permissions with this system.

The priority is based on the order, example:

 0:
    placeholder: "example"
    text: "This is an example"
    permissions:
      1:
        permission: "example.example"
        text: "Example"      
      2:
        permission: "example.2"
        text: "Example 2"

If a player has the example.example and the example.2 permissions the text will be Example because it is on the top.

Creating a Public Placeholder

Public Placeholders can be viewed by everyone with the same text.

You can create it just removing the permissions section:

  0:
    placeholder: "example"
    text: "This is an example"

Viewed text: This is an example

custom conditions