✏️
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
  • Introduction
  • How to use it
  • Personalized Placeholder
  • Global Placeholder

Was this helpful?

  1. FAKE PLAYER

Fake Player Placeholder

Introduction

Fake Player is not a real player, so, any placeholder shown on your tablist, it will overridden by your placeholder, to prevent this, you can add placeholder into Fake Player.

How to use it

Personalized Placeholder

This allows you to add placeholder for specific fake player.

Usage: /fp edit <fakePlayerName> addplaceholder statistic_deaths 0 Placeholder Usage: {statistic_deaths} Placeholder Result: 0

Global Placeholder

This allows you to customize placeholder for every fake player. This can be done from config.yml

fake-player:
   enable: true
   # default placeholder for all fake players
   default-placeholder:
   #  FAKE PLAYER PLACEHOLDER
   #  built-in placeholder:
   #  {fakeplayer_name} - Shows the name of fake player
   #  {fakeplayer_uuid} - Shows the fake player UUID
      statistic_deaths: 0
      # usage: {statistic_deaths}
      custom_placeholder: 'nothing'
      # usage: {custom_placeholder}
      player_name: '{fakeplayer_name}'
      player_displayname: '{fakeplayer_name}'
      player_uuid: '{fakeplayer_uuid}'
      player_listname: '{fakeplayer_name}'
   server-list:
      player-count: true
      player-list: true
PreviousManaging Fake PlayerNextWhere to put Handler?

Last updated 4 years ago

Was this helpful?