Advertisement
Guest User

Promotions Solution

a guest
Mar 4th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.00 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. HumanBM {
  10. Humanblademaster {
  11. rank = '100' # Must be unique to the ladder.
  12. reject = 'Tyrant, Elf, Beast, Tideborn, HumanWarrior' # Seperate groups with a comma.
  13. swords = '1'
  14. }
  15. Humanblademaster1 {
  16. rank = '99' # Must be unique to the ladder.
  17. swords = '2'
  18. }
  19. Humanblademaster2 {
  20. rank = '98' # Must be unique to the ladder.
  21. swords = '4'
  22. }
  23. }
  24. HumanW {
  25. HumanWarrior {
  26. rank = '100' # Must be unique to the ladder.
  27. reject = 'Tyrant, Elf, Beast, Tideborn, Humanblademaster' # Seperate groups with a comma.
  28. power = '1'
  29. }
  30. HumanWarrior1 {
  31. rank = '99' # Must be unique to the ladder.
  32. power = '2'
  33. }
  34. HumanWarrior2 {
  35. rank = '98' # Must be unique to the ladder.
  36. power = '4'
  37. }
  38. }
  39. ElfA {
  40. ElfArcher {
  41. rank = '100' # Must be unique to the ladder.
  42. reject = 'Tyrant, Human, Beast, Tideborn, ElfCleric' # Seperate groups with a comma.
  43. archery = '1'
  44. }
  45. ElfArcher1 {
  46. rank = '99' # Must be unique to the ladder.
  47. archery = '2'
  48. }
  49. ElfArcher2 {
  50. rank = '98' # Must be unique to the ladder.
  51. archery = '4'
  52. }
  53. }
  54. ElfC {
  55. ElfCleric {
  56. rank = '100' # Must be unique to the ladder.
  57. reject = 'Tyrant, Human, Beast, Tideborn, ElfArcher' # Seperate groups with a comma.
  58. archery = '1'
  59. }
  60. ElfCleric1 {
  61. rank = '99' # Must be unique to the ladder.
  62. archery = '2'
  63. }
  64. ElfCleric2 {
  65. rank = '98' # Must be unique to the ladder.
  66. archery = '4'
  67. }
  68. }
  69. TyrantB {
  70. TyrantBarbarian {
  71. rank = '100' # Must be unique to the ladder.
  72. reject = 'Elf, Human, Beast, Tideborn, TyrantShaman' # Seperate groups with a comma.
  73. power = '1'
  74. }
  75. TyrantBarbarian1 {
  76. rank = '99' # Must be unique to the ladder.
  77. power = '2'
  78. }
  79. TyrantBarbarian2 {
  80. rank = '98' # Must be unique to the ladder.
  81. power = '4'
  82. }
  83. }
  84. TyrantS {
  85. TyrantShaman {
  86. rank = '100' # Must be unique to the ladder.
  87. reject = 'Elf, Human, Beast, Tideborn, TyrantBarbarian' # Seperate groups with a comma.
  88. power = '1'
  89. }
  90. TyrantShaman1 {
  91. rank = '99' # Must be unique to the ladder.
  92. power = '2'
  93. }
  94. TyrantShaman2 {
  95. rank = '98' # Must be unique to the ladder.
  96. power = '4'
  97. }
  98. }
  99. TidebornA {
  100. TidebornAssassin {
  101. rank = '100' # Must be unique to the ladder.
  102. reject = 'Elf, Human, Beast, Tyrant, TidebornPsychic' # Seperate groups with a comma.
  103. power = '1'
  104. }
  105. TidebornAssassin1 {
  106. rank = '99' # Must be unique to the ladder.
  107. power = '2'
  108. }
  109. TidebornAssassin2 {
  110. rank = '98' # Must be unique to the ladder.
  111. power = '4'
  112. }
  113. }
  114. TidebornP {
  115. TidebornPsychic {
  116. rank = '100' # Must be unique to the ladder.
  117. reject = 'Elf, Human, Beast, Tyrant, TidebornAssassin' # Seperate groups with a comma.
  118. power = '1'
  119. }
  120. TidebornPsychic1 {
  121. rank = '99' # Must be unique to the ladder.
  122. power = '2'
  123. }
  124. TidebornPsychic2 {
  125. rank = '98' # Must be unique to the ladder.
  126. power = '4'
  127. }
  128. }
  129. BeastU {
  130. BeastUntamed {
  131. rank = '100' # Must be unique to the ladder.
  132. reject = 'Elf, Human, Tideborn, Tyrant, BeastWarlock' # Seperate groups with a comma.
  133. power = '1'
  134. }
  135. BeastUntamed1 {
  136. rank = '99' # Must be unique to the ladder.
  137. power = '2'
  138. }
  139. BeastUntamed2 {
  140. rank = '98' # Must be unique to the ladder.
  141. power = '4'
  142. }
  143. }
  144. BeastW {
  145. BeastWarlock {
  146. rank = '100' # Must be unique to the ladder.
  147. reject = 'Elf, Human, Tideborn, Tyrant, BeastUntamed' # Seperate groups with a comma.
  148. power = '1'
  149. }
  150. BeastWarlock1 {
  151. rank = '99' # Must be unique to the ladder.
  152. power = '2'
  153. }
  154. BeastWarlock2 {
  155. rank = '98' # Must be unique to the ladder.
  156. power = '4'
  157. }
  158. }
  159. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement