Guest User

Untitled

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