✏️
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

Was this helpful?

  1. HOW TO

Prevent Same Player Showing in 2 Handler

handler_example_1:
    type: PLAYER_LIST
    text: '{player_name}'
    grouping:
        groupName: 'GROUP NAME'
        priority: 0
handler_example_2:
    type: PLAYER_LIST
    text: '{player_name}'
    grouping:
        groupName: 'GROUP NAME'
        priority: 1
handler_example_etc:
    type: PLAYER_LIST
    text: '{player_name}'
    grouping:
        groupName: 'GROUP NAME'
        priority: 2

Explanation

This will prevent a player shown in 2 handlers (example a player shown on the staff list but also shown on the global list). You must set the groupName same for all handlers you want to prevent the duplication.

If the player shown on the wrong tablist, you can change the priority. Higher priority means the player will be placed into that handler first.

PreviousCreate Staff/VIP HandlerNextSort Player By Name and Etc

Last updated 4 years ago

Was this helpful?