✏️
PlayerListDeluxe
  • Introduction
  • Troubleshoot
  • Configuration
    • Understanding the Config Element
    • Tablist Handlers
    • Sorting Feature
    • Migrating from PlayerListPlus
  • FAKE PLAYER
    • Managing Fake Player
    • Fake Player Placeholder
  • HOW TO
    • Where to put Handler?
    • How to add/remove column
    • Create Staff/VIP Handler
    • Prevent Same Player Showing in 2 Handler
    • Sort Player By Name and Etc
    • List of Player that in Same or in A World
    • Condition Tutorial
  • PLACEHOLDER
    • Using Placeholder From PlaceholderAPI
    • Custom Placeholders
  • API
    • Creating Complex Placeholder
    • Creating Parameterized Placeholder
    • Creating Simple Placeholder
    • Managing your own Tablist
    • Events
    • Skin Toolkit
Powered by GitBook
On this page
  • Explanation
  • Explanation

Was this helpful?

  1. HOW TO

Create Staff/VIP Handler

your_handler_name:
    type: PLAYER_LIST
    text: '{player_name}'
    ping: '{player_ping}'
    skin: '{player_name}'
    condition: '{player_has_permission_server.staff}'

Explanation

This handler will list all players with permission server.staff . You can change it to anything you want by replacing the placeholder inside condition to {player_has_permission_<PERMISSION NODE>} .

Replace your_handler_name with your own handler name

your_handler_name:
    type: PLAYER_LIST
    text: '{player_name}'
    condition: "'rank1,rank2,rank3,rank4,etc...'.includes('{vault_rank}')"

Explanation

This handler will list all players with specific rank (listed on the condition).

PreviousHow to add/remove columnNextPrevent Same Player Showing in 2 Handler

Last updated 4 years ago

Was this helpful?