Advertisement
Guest User

Untitled

a guest
Aug 4th, 2013
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.05 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 {
  10. I {
  11. rank = '100' # Must be unique to the ladder.
  12. require = 'Guest' # Seperate groups with a comma.
  13. power = '100'
  14. }
  15. II {
  16. rank = '90' # Must be unique to the ladder.
  17. require = 'I,Guest' # Seperate groups with a comma.
  18. power = '200'
  19. }
  20. III {
  21. rank = '80' # Must be unique to the ladder.
  22. require = 'II,Guest' # Seperate groups with a comma.
  23. power = '300'
  24. }
  25. IV {
  26. rank = '70' # Must be unique to the ladder.
  27. require = 'III,Guest' # Seperate groups with a comma.
  28. power = '400'
  29. }
  30. V {
  31. rank = '60' # Must be unique to the ladder.
  32. require = 'IV,Guest' # Seperate groups with a comma.
  33. power = '500'
  34. }
  35. VI {
  36. rank = '50' # Must be unique to the ladder.
  37. require = 'V,Guest' # Seperate groups with a comma.
  38. power = '600'
  39. }
  40. VII {
  41. rank = '40' # Must be unique to the ladder.
  42. require = 'VI,Guest' # Seperate groups with a comma.
  43. power = '700'
  44. }
  45. VIII {
  46. rank = '30' # Must be unique to the ladder.
  47. require = 'VII,Guest' # Seperate groups with a comma.
  48. power = '800'
  49. }
  50. IX {
  51. rank = '20' # Must be unique to the ladder.
  52. require = 'VIII,Guest' # Seperate groups with a comma.
  53. power = '900'
  54. }
  55. X {
  56. rank = '10' # Must be unique to the ladder.
  57. require = 'IX,Guest' # Seperate groups with a comma.
  58. power = '1000'
  59. }
  60. mage {
  61. MageI {
  62. rank = '99' # Must be unique to the ladder.
  63. require = 'Mage' # Seperate groups with a comma.
  64. mining = '25'
  65. excavation = '25'
  66. repair = '10'
  67. herbalism = '10'
  68. }
  69. MageII {
  70. rank = '89' # Must be unique to the ladder.
  71. require = 'MageI' # Seperate groups with a comma.
  72. mining = '50'
  73. excavation = '50'
  74. repair = '20'
  75. herbalism = '20'
  76. }
  77. MageIII {
  78. rank = '79' # Must be unique to the ladder.
  79. require = 'MageII' # Seperate groups with a comma.
  80. mining = '100'
  81. excavation = '100'
  82. repair = '50'
  83. herbalism = '50'
  84. }
  85. MageIV {
  86. rank = '69' # Must be unique to the ladder.
  87. require = 'MageIII' # Seperate groups with a comma.
  88. excavation = '200'
  89. mining = '200'
  90. repair = '100'
  91. herbalism = '100'
  92. }
  93. MageV {
  94. rank = '59' # Must be unique to the ladder.
  95. require = 'MageIV' # Seperate groups with a comma.
  96. excavation = '300'
  97. mining = '300'
  98. repair = '200'
  99. herbalism = '150'
  100. }
  101. MageVI {
  102. rank = '49' # Must be unique to the ladder.
  103. require = 'MageV' # Seperate groups with a comma.
  104. excavation = '400'
  105. mining = '400'
  106. repair = '250'
  107. herbalism = '200'
  108. }
  109. MageVII {
  110. rank = '39' # Must be unique to the ladder.
  111. require = 'MageVI' # Seperate groups with a comma.
  112. excavation = '400'
  113. mining = '500'
  114. repair = '300'
  115. herbalism = '250'
  116. }
  117. MageVIII {
  118. rank = '29' # Must be unique to the ladder.
  119. require = 'MageVII' # Seperate groups with a comma.
  120. excavation = '600'
  121. mining = '600'
  122. repair = '400'
  123. herbalism = '300'
  124. }
  125. MageIX {
  126. rank = '19' # Must be unique to the ladder.
  127. require = 'MageVIII' # Seperate groups with a comma.
  128. excavation = '750'
  129. mining = '750'
  130. repair = '500'
  131. herbalism = '400'
  132. }
  133. MageX {
  134. rank = '9' # Must be unique to the ladder.
  135. require = 'MageIX' # Seperate groups with a comma.
  136. excavation = '1000'
  137. mining = '1000'
  138. repair = '600'
  139. herbalism = '500'
  140. }
  141. warrior {
  142. WarriorI {
  143. rank = '98' # Must be unique to the ladder.
  144. require = 'Warrior' # Seperate groups with a comma.
  145. swords = '25'
  146. unarmed = '10'
  147. axes = '10'
  148. }
  149. WarriorII {
  150. rank = '88' # Must be unique to the ladder.
  151. require = 'WarriorI' # Seperate groups with a comma.
  152. swords = '50'
  153. unarmed = '20'
  154. axes = '20'
  155. }
  156. WarriorIII {
  157. rank = '78' # Must be unique to the ladder.
  158. require = 'WarriorII' # Seperate groups with a comma.
  159. swords = '100'
  160. unarmed = '50'
  161. axes = '50'
  162. }
  163. WarriorIV {
  164. rank = '68' # Must be unique to the ladder.
  165. require = 'WarriorIII' # Seperate groups with a comma.
  166. swords = '200'
  167. unarmed = '100'
  168. axes = '100'
  169. }
  170. WarriorV {
  171. rank = '58' # Must be unique to the ladder.
  172. require = 'WarriorIV' # Seperate groups with a comma.
  173. swords = '300'
  174. unarmed = '150'
  175. axes = '150'
  176. taming = '10'
  177. }
  178. WarriorVI {
  179. rank = '48' # Must be unique to the ladder.
  180. require = 'WarriorV' # Seperate groups with a comma.
  181. swords = '400'
  182. unarmed = '200'
  183. axes = '200'
  184. taming = '50'
  185. }
  186. WarriorVII {
  187. rank = '38' # Must be unique to the ladder.
  188. require = 'WarriorVI' # Seperate groups with a comma.
  189. swords = '500'
  190. unarmed = '250'
  191. axes = '250'
  192. taming = '100'
  193. }
  194. WarriorVIII {
  195. rank = '28' # Must be unique to the ladder.
  196. require = 'WarriorVII' # Seperate groups with a comma.
  197. swords = '600'
  198. unarmed = '300'
  199. axes = '300'
  200. taming = '150'
  201. }
  202. WarriorIX {
  203. rank = '18' # Must be unique to the ladder.
  204. require = 'WarriorVIII' # Seperate groups with a comma.
  205. swords = '750'
  206. unarmed = '400'
  207. axes = '400'
  208. taming = '200'
  209. }
  210. WarriorX {
  211. rank = '8' # Must be unique to the ladder.
  212. require = 'WarriorIX' # Seperate groups with a comma.
  213. swords = '1000'
  214. unarmed = '750'
  215. axes = '750'
  216. taming = '250'
  217. }
  218. thief {
  219. ThiefI {
  220. rank = '97' # Must be unique to the ladder.
  221. require = 'Thief' # Seperate groups with a comma.
  222. archery = '25'
  223. woodcutting = '10'
  224. acrobatics = '10'
  225. }
  226. ThiefII {
  227. rank = '87' # Must be unique to the ladder.
  228. require = 'ThiefI' # Seperate groups with a comma.
  229. archery = '50'
  230. woodcutting = '20'
  231. acrobatics = '20'
  232. }
  233. ThiefIII {
  234. rank = '77' # Must be unique to the ladder.
  235. require = 'ThiefII' # Seperate groups with a comma.
  236. archery = '100'
  237. woodcutting = '50'
  238. acrobatics = '50'
  239. }
  240. ThiefIV {
  241. rank = '67' # Must be unique to the ladder.
  242. require = 'ThiefIII' # Seperate groups with a comma.
  243. archery = '200'
  244. woodcutting = '100'
  245. acrobatics = '100'
  246. }
  247. ThiefV {
  248. rank = '57' # Must be unique to the ladder.
  249. require = 'ThiefIV' # Seperate groups with a comma.
  250. archery = '300'
  251. woodcutting = '150'
  252. acrobatics = '150'
  253. fishing = '10'
  254. }
  255. ThiefVI {
  256. rank = '47' # Must be unique to the ladder.
  257. require = 'ThiefV' # Seperate groups with a comma.
  258. archery = '400'
  259. woodcutting = '200'
  260. acrobatics = '200'
  261. fishing = '50'
  262. }
  263. ThiefVII {
  264. rank = '37' # Must be unique to the ladder.
  265. require = 'ThiefVI' # Seperate groups with a comma.
  266. archery = '500'
  267. woodcutting = '250'
  268. acrobatics = '250'
  269. fishing = '100'
  270. }
  271. ThiefVIII {
  272. rank = '27' # Must be unique to the ladder.
  273. require = 'ThiefVII' # Seperate groups with a comma.
  274. archery = '600'
  275. woodcutting = '300'
  276. acrobatics = '300'
  277. fishing = '150'
  278. }
  279. ThiefIX {
  280. rank = '17' # Must be unique to the ladder.
  281. require = 'ThiefVIII' # Seperate groups with a comma.
  282. archery = '750'
  283. woodcutting = '400'
  284. acrobatics = '400'
  285. fishing = '200'
  286. }
  287. ThiefX {
  288. rank = '7' # Must be unique to the ladder.
  289. require = 'ThiefIX' # Seperate groups with a comma.
  290. archery = '1000'
  291. woodcutting = '750'
  292. acrobatics = '750'
  293. fishing = '250'
  294. }
  295. member {
  296. Member {
  297. rank = '6' # Must be unique to the ladder.
  298. require = 'ThiefX,WarriorX,MageX' # Seperate groups with a comma.
  299. power = '3000'
  300. }
  301. }
  302. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement