Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.40 KB | None | 0 0
  1. # Adventurer, Champion, Hero, Recruit, Legend, God, Eeper
  2. command /kit:
  3. trigger:
  4. wait 3 ticks
  5. open chest with 5 row named "&3Kits" to player
  6. format slot 13 of player with 1 golden sword named "&aRecruit" with lore "&d&l>> &a&lClick to get Started! &d&l<<" to close then run "sksudo %player% kitrecruit"
  7. format slot 29 of player with 1 iron sword named "&aAdventurer" with lore "&d&l>> &a&lClick to become an Adventurer! &d&l<<" to close then run "sksudo %player% kitadventurer"
  8. format slot 30 of player with 1 diamond sword named "&aChampion" with lore "&d&l>> &a&lClick to become a Champion! &d&l<<" to close then run "sksudo %player% kitchampion"
  9. format slot 31 of player with 1 diamond chestplate named "&aHero" with lore "&d&l>> &a&lClick to join the Heros! &d&l<<" to close then run "sksudo %player% kithero"
  10. format slot 32 of player with 1 diamond helmet named "&aLegend" with lore "&d&l>> &a&lClick to become a Legend! &d&l<<" to close then run "sksudo %player% kitlegend"
  11. format slot 33 of player with 1 golden apple named "&aGod" with lore "&d&l>> &a&lClick to go join the Gods! &d&l<<" to close then run "sksudo %player% kitgod"
  12. format slot 34 of player with 1 golden apple named "&aEeper" with lore "&d&l>> &a&lWhats an Eeper? Now you can go find out! &d&l<<" to close then run "sksudo %player% kiteeper"
  13. format slot 44 of player with 1 book named "&aGod Kit" with lore "&d&l &a&lClick to go to the GKit section! &d&l<<" to close then run "sksudo %player% 'shadowgkit"
  14. loop integers from 0 to 3:
  15. set {_RandomColor} to "160:%random integer between 1 and 15%" parsed as item
  16. format slot loop-value of player with {_RandomColor} named " " to be unstealable
  17. loop integers from 5 to 12:
  18. set {_RandomColor} to "160:%random integer between 1 and 15%" parsed as item
  19. format slot loop-value of player with {_RandomColor} named " " to be unstealable
  20. loop integers from 14 to 21:
  21. set {_RandomColor} to "160:%random integer between 1 and 15%" parsed as item
  22. format slot loop-value of player with {_RandomColor} named " " to be unstealable
  23. loop integers from 23 to 28:
  24. set {_RandomColor} to "160:%random integer between 1 and 15%" parsed as item
  25. format slot loop-value of player with {_RandomColor} named " " to be unstealable
  26. loop integers from 35 to 43:
  27. set {_RandomColor} to "160:%random integer between 1 and 15%" parsed as item
  28. format slot loop-value of player with {_RandomColor} named " " to be unstealable
  29. while inventory name of player's current inventory is "&3Kits":
  30. wait 1 tick
  31. set {_RandomColor} to "160:%random integer between 1 and 15%" parsed as item
  32. format slot 4 of player with {_RandomColor} named "&3Member Kits" to be unstealable
  33. wait 1 tick
  34. set {_RandomColor} to "160:%random integer between 1 and 15%" parsed as item
  35. format slot 22 of player with {_RandomColor} named "&3Rank Kits" to be unstealable
  36.  
  37. command /gkit:
  38. trigger:
  39. wait 3 ticks
  40. open chest with 4 row named "&3God Kits" to player
  41. format slot 11 of player with 1 golden sword named "&aElf" with lore "&d&l>> &a&lPew Pew Elf GKit is here! &d&l<<" to close then run "sksudo %player% kitelf"
  42. format slot 12 of player with 1 golden sword named "&aOrk" with lore "&d&l>> &a&lBANG BANG! Smash those guys! &d&l<<" to close then run "sksudo %player% kitork"
  43. format slot 13 of player with 1 golden sword named "&aHuman" with lore "&d&l>> &a&lBe creative... be you! &d&l<<" to close then run "sksudo %player% kithuman"
  44. format slot 22 of player with 1 golden sword named "&aBase" with lore "&d&l>> &a&lBuild that one, annoying unraidable base! &d&l<<" to close then run "sksudo %player% kitbase"
  45. format slot 23 of player with 1 golden sword named "&aRaid" with lore "&d&l>> &a&lThis gear will let you raid and raid and.. well, raid! &d&l<<" to close then run "sksudo %player% kitraid"
  46. format slot 24 of player with 1 golden sword named "&aVday" with lore "&d&l>> &a&lLet there be... love<<" to close then run "sksudo %player% kitvday"
  47. loop integers from 0 to 10:
  48. set {_RandomColor} to "160:%random integer between 1 and 15%" parsed as item
  49. format slot loop-value of player with {_RandomColor} named " " to be unstealable
  50. loop integers from 14 to 21:
  51. set {_RandomColor} to "160:%random integer between 1 and 15%" parsed as item
  52. format slot loop-value of player with {_RandomColor} named " " to be unstealable
  53. loop integers from 25 to 35:
  54. set {_RandomColor} to "160:%random integer between 1 and 15%" parsed as item
  55. format slot loop-value of player with {_RandomColor} named " " to be unstealable
  56.  
  57. on command:
  58. command is "kitrecruit":
  59. player has permission "essentials.kits.recruit":
  60. make player execute command "/ekit recruit"
  61. send "&cEnjoy your recruit kit!" to player
  62. cancel event
  63. else:
  64. send "&4You do not have permission!" to player
  65. cancel event
  66. command is "kitadventurer":
  67. player has permission "essentials.kits.adventurer":
  68. make player execute command "/ekit adventurer"
  69. send "&cNow you may go on an adventure!" to player
  70. cancel event
  71. else:
  72. send "&4You do not have permission!" to player
  73. cancel event
  74. command is "kitchampion":
  75. player has permission "essentials.kits.champion":
  76. make player execute command "/ekit champion"
  77. send "&cNow you are a champion!" to player
  78. cancel event
  79. else:
  80. send "&4You do not have permission!" to player
  81. cancel event
  82. command is "kithero":
  83. player has permission "essentials.kits.hero":
  84. make player execute command "/ekit hero"
  85. send "&cNow you may become a hero!" to player
  86. cancel event
  87. else:
  88. send "&4You do not have permission!" to player
  89. cancel event
  90. command is "kitlegend":
  91. player has permission "essentials.kits.legend":
  92. make player execute command "/ekit legend"
  93. send "&cNow you may become a legend!" to player
  94. cancel event
  95. else:
  96. send "&4You do not have permission!" to player
  97. cancel event
  98. command is "kitgod":
  99. player has permission "essentials.kits.god":
  100. make player execute command "/ekit god"
  101. send "&cJoining the gods eh?" to player
  102. cancel event
  103. else:
  104. send "&4You do not have permission!" to player
  105. cancel event
  106. command is "kiteeper":
  107. player has permission "essentials.kits.eeper":
  108. make player execute command "/ekit eeper"
  109. send "&cYou have officially became the greatest player on the server!" to player
  110. cancel event
  111. else:
  112. send "&4You do not have permission!" to player
  113. cancel event
  114. command is "shop" or "buy" or "donate":
  115. make player execute command "/store"
  116. cancel event
  117. command is "kits":
  118. make player execute command "/kit"
  119. command is "warps":
  120. make player execute command "/warp"
  121. command is "godkits":
  122. make player execute command "/gkit"
  123. command is "kitelf":
  124. player has permission "essentials.kits.elf":
  125. make player execute command "/ekit elf"
  126. send "&cNow you have joined the Elfs!" to player
  127. cancel event
  128. else:
  129. send "&4You do not have permission!" to player
  130. cancel event
  131. command is "kitork":
  132. player has permission "essentials.kits.ork":
  133. make player execute command "/ekit ork"
  134. send "&cYour officially a feirce warrior!" to player
  135. cancel event
  136. else:
  137. send "&4You do not have permission!" to player
  138. cancel event
  139. command is "kithuman":
  140. player has permission "essentials.kits.human":
  141. make player execute command "/ekit human"
  142. send "&cYou have joined the fight for the human race!" to player
  143. cancel event
  144. else:
  145. send "&4You do not have permission!" to player
  146. cancel event
  147. command is "kitbase":
  148. player has permission "essentials.kits.base":
  149. make player execute command "/ekit base"
  150. send "&cNow go and build a base!" to player
  151. cancel event
  152. else:
  153. send "&4You do not have permission!" to player
  154. cancel event
  155. command is "kitraid":
  156. player has permission "essentials.kits.raid":
  157. make player execute command "/ekit raid"
  158. send "&cGo raid you a base!" to player
  159. cancel event
  160. else:
  161. send "&4You do not have permission!" to player
  162. cancel event
  163.  
  164. command is "kitvday":
  165. player has permission "essentials.kits.vday":
  166. make player execute command "/ekit vday"
  167. send "&cYour officially a lover!" to player
  168. cancel event
  169. else:
  170. send "&4You do not have permission!" to player
  171. cancel event
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement