Advertisement
Guest User

Untitled

a guest
Apr 27th, 2013
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.84 KB | None | 0 0
  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: 2
  80. # Custom player layout
  81. - playerLayoutEnabled: false
  82. - playerLayout: [@][playername][health]:[drawhealth][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: {default}
  87.  
  88. # Add here your slots
  89. slots:
  90. - &2Biome&aCraft
  91. - &6Online&f [@][currentplayers]/[maxplayers]
  92. - &bYour Stats
  93. - &b----------------
  94. - &bName:
  95. - [@][playername]
  96. - &bHealth:
  97. - &b[@][health]:[drawhealth]
  98. - &bCoordinates:
  99. - [@][posx]/[posy]/[posz]
  100. - 11
  101. - 12
  102. - 13
  103. - 14
  104. - 15
  105. - 16
  106. - 17
  107. - 18
  108. - 19
  109. - 20
  110. - 21
  111. - 22
  112. - 23
  113. - 24
  114. - 25
  115. - 26
  116. - 27
  117. - 28
  118. - 29
  119. - 30
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement