Advertisement
Guest User

World Player List

a guest
Apr 7th, 2013
2,993
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # |================ TabDeco Config ===================|
  2. # |                                                   |
  3. # | The symbol '#' marks a line as comment            |
  4. # | Use '&' for colors                                |
  5. # |---------------------------------------------------|
  6. # | You can't use words longer than 16 characters     |
  7. # | [@] = Marks a line as 'to be updated'             |
  8. # |---------------------------------------------------|
  9. # | Use tab for the configuration                     |
  10. # |---------------------------------------------------|
  11. # | 1 line = 1 slot                                   |
  12. # |------------------ Tab settings -------------------|
  13. # | [drawhealth] = Draws the health of                |
  14. # | the player graphically                            |
  15. # | [currentplayers] = Currently online players       |
  16. # | [maxplayers] = Max online players                 |
  17. # | [rint(x,y)] = Returns a random integer            |
  18. # | between the numbers x and y                       |
  19. # | [serverip] = Server IP                            |
  20. # | [rcolor] = Returns a random color                 |
  21. # | [player] = The Player looking at the menu         |
  22. # | [kills] = Shows how many players got killed by    |
  23. # | the player viewing the tab menu                   |
  24. # | [death] = Shows how many times the player viewing |
  25. # | the menu died                                     |
  26. # | [K/D] = Shows the K/D rate of the player          |
  27. # | [time] = Current time                             |
  28. # | [date] = Current date                             |
  29. # | [exp] = Returns the total exp of the player       |
  30. # | [level] = Returns the level of the player         |
  31. # | [health] = Shows the health of the player         |
  32. # | [food] = Returns the food level in numbers        |
  33. # | [drawfoodbar] = Draws the food level of the player|
  34. # | [air] = Returns how much air the player has left  |
  35. # | [lifetime] = Shows the time of the player on the  |
  36. # | server in hours, minutes and seconds              |
  37. # | [world] = Returns the world name of the world of  |
  38. # | the player                                        |
  39. # | [ipadress] = Shows the IP adress of the player    |
  40. # | [posx] = Player position x                        |
  41. # | [posy] = Player position y                        |
  42. # | [posz] = Player position z                        |
  43. # | [homex] = Home (Bed) position x                   |
  44. # | [homey] = Home (Bed) position y                   |
  45. # | [homez] = Home (Bed) position z                   |
  46. # | [gamemode] = Returns the gamemode of the player   |
  47. # | [entityid] = Returns the entity id of the player  |
  48. # |------------------ Player Layout ------------------|
  49. # | [playername] = Returns the name of the player     |
  50. # | (counts for every player, not only the player     |
  51. # | viewing the player list)                          |
  52. # | [nextslot] = Adds an additional slot for every    |
  53. # | player in the list. The text after this word      |
  54. # | will be displayed in a seperate slot. Can be      |
  55. # | repeated as many times as you want.               |
  56. # |------------------- List sorting ------------------|
  57. # | {default} = Default player list. No sorting       |
  58. # | {name} = Sorts the player list by player names    |
  59. # | {world} = Sorts the player list by world names    |
  60. # | {K/D} = Sorts the player list by highest KDR      |
  61. # | {health} = Sorts the player list by highest health|
  62. # | {level} = Sorts the player list by highest level  |
  63. # | {air} = Sorts the player list by most air         |
  64. # | {exp} = Sorts the player list by highest exp      |
  65. # | {entityid} = Sorts the player list by highest     |
  66. # | entity ID                                         |
  67. # | {kills} = Sorts the player list by most kills     |
  68. # | {death} = Sorts the player list by most deaths    |
  69. # | {hunger} = Sorts the player list by least hunger  |
  70. # | {lifetime} = Sorts the player list by longest     |
  71. # | time on server                                    |
  72. # |===================================================|
  73.  
  74. options:
  75.     - debugMode: false
  76. # The timer that updates the slots
  77.     - timerEnabled: true
  78. # The timer interval in seconds
  79.     - timerSpeed: 4
  80. # Custom player layout
  81.     - playerLayoutEnabled: true
  82.     - playerLayout: [@][playername][nextslot][@]&a┃&r [world][nextslot][@]&a┃&r [lifetime]
  83. # Makes the player list world specific
  84.     - checkForWorlds: false
  85. # Returns how the player list should be sorted
  86.     - listSorting: {world}
  87.  
  88. # Add here your slots
  89. slots:
  90.     - &aCurrent Time:
  91.     - [@]&c[time]
  92.     - &a
  93.     - &aTime Joined:
  94.     - &c[time]
  95.     - &b
  96.     - &aWorld:
  97.     - [@]&c[world]
  98.     - &b
  99.     - &aPlayer
  100.     - &aWorld
  101.     - &aTime on Server
  102.     - &c▔▔▔▔▔▔▔▔▔▔▔&1
  103.     - &c▔▔▔▔▔▔▔▔▔▔▔&2
  104.     - &c▔▔▔▔▔▔▔▔▔▔▔&3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement