Advertisement
zedarean

rank ladder

Mar 21st, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. # -- Possible Skill Types --
  2.  
  3. # power, acrobatics, archery, axes, excavation, fishing, herbalism, mining, repair, swords, taming, unarmed, woodcutting
  4. # http://dev.bukkit.org/server-mods/mcmmo-auto-promote/
  5.  
  6. # -- Group Settings --
  7.  
  8. ladders {
  9. default { # This is the default ladder.
  10. }
  11. Humans {
  12. Vagrant {
  13. rank = '5' # Must be unique to the ladder.
  14. }
  15. Page {
  16. rank = '4' # Must be unique to the ladder.
  17. power = '320'
  18. }
  19. Squire {
  20. rank = '3' # Must be unique to the ladder.
  21. power = '960'
  22. }
  23. Knight {
  24. rank = '2' # Must be unique to the ladder.
  25. power = '1920'
  26. }
  27. Paladin {
  28. rank = '1' # Must be unique to the ladder.
  29. power = '3200'
  30. }
  31. }
  32. Elves {
  33. DaisyPicker {
  34. rank = '5' # Must be unique to the ladder.
  35. }
  36. Scout {
  37. rank = '4' # Must be unique to the ladder.
  38. power = '320'
  39. }
  40. Bowman {
  41. rank = '3' # Must be unique to the ladder.
  42. power = '960'
  43. }
  44. HighElf {
  45. rank = '2' # Must be unique to the ladder.
  46. power = '1920'
  47. }
  48. ElfKing {
  49. rank = '1' # Must be unique to the ladder.
  50. power = '3200'
  51. }
  52. }
  53. Dwarves {
  54. DirtyBeard {
  55. rank = '5' # Must be unique to the ladder.
  56. }
  57. IronBreaker {
  58. rank = '4' # Must be unique to the ladder.
  59. power = '320'
  60. }
  61. GemCutter {
  62. rank = '3' # Must be unique to the ladder.
  63. power = '960'
  64. }
  65. TreasureHoarder {
  66. rank = '2' # Must be unique to the ladder.
  67. power = '1920'
  68. }
  69. ThaneLongBeard {
  70. rank = '1' # Must be unique to the ladder.
  71. power = '3200'
  72. }
  73. }
  74. Orcs {
  75. Small-fry {
  76. rank = '5' # Must be unique to the ladder.
  77. }
  78. Grunt {
  79. rank = '4' # Must be unique to the ladder.
  80. power = '320'
  81. }
  82. Brawler {
  83. rank = '3' # Must be unique to the ladder.
  84. power = '960'
  85. }
  86. Warrior {
  87. rank = '2' # Must be unique to the ladder.
  88. power = '1920'
  89. }
  90. Warlord {
  91. rank = '1' # Must be unique to the ladder.
  92. power = '3200'
  93. }
  94. }
  95. Mages {
  96. Bookworm {
  97. rank = '5' # Must be unique to the ladder.
  98. }
  99. Apprentice {
  100. rank = '4' # Must be unique to the ladder.
  101. power = '320'
  102. }
  103. Scholar {
  104. rank = '3' # Must be unique to the ladder.
  105. power = '960'
  106. }
  107. Wizard {
  108. rank = '2' # Must be unique to the ladder.
  109. power = '1920'
  110. }
  111. ArchMage {
  112. rank = '1' # Must be unique to the ladder.
  113. power = '3200'
  114. }
  115. }
  116. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement