| Name | TabList |
| Syntax | tablist [add/remove/update] (name:<name>) (display:<display>) (uuid:<uuid>) (skin_blob:<blob>) (latency:<#>) (gamemode:creative/survival/adventure/spectator) (listed:true/false) |
| Short Description | Modifies values in the player's tablist. |
| Full Description | Adds, removes, or updates a player profile entry in the player's tab-list view.
Using 'add' will add a new entry to the client's player list. 'name' must be specified. 'display' if unspecified will be the same as the name. 'uuid' if unspecified will be randomly generated. 'skin_blob' if unspecified will be a default Minecraft skin. Skin blob should be in format "texture;signature" (separated by semicolon). 'latency' is a number representing the players ping, if unspecified will be 0. 0 renders as full ping, -1 renders an "X", 500 renders orange (3 bars), 1000 renders red (1 bar). 'gamemode' if unspecified will be creative. 'spectator' renders as faded and is pushed below all non-spectator entries. 'listed' determines whether the entry will show up in the tab list, defaults to 'true'. Using 'remove' will remove an entry from the tab list. 'uuid' must be specified. Using 'update' will update an existing entry in the tab list. 'uuid' must be specified. Only 'display', 'latency', 'gamemode', and 'listed' can be updated. Usage of display names that are not empty requires enabling Denizen/config.yml option "Allow restricted actions". Using this tool to add entries that look like real players (but aren't) is forbidden. |
| Related Tags | None
|
| Usage Example | |
| Usage Example | |
| Group | player |
| Source | https://github.com/DenizenScript/Denizen/blob/dev/plugin/src/main/java/com/denizenscript/denizen/scripts/commands/player/TablistCommand.java#L32 |