FlupMC

Untitled

Jul 31st, 2017
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.73 KB | None | 0 0
  1. #
  2. #
  3. #SVÆRD
  4. #
  5. #
  6.  
  7. on inventory click:
  8. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Sharpness II":
  9. if clicked item is sword:
  10. enchant clicked item with sharpness 2
  11. set cursor item to air
  12. cancel event
  13.  
  14.  
  15.  
  16. Command /EnchantSharness2:
  17. Permission: *
  18. Trigger:
  19. give player enchanted book named "&eEnchanted book" with lore "&7Sharpness II"
  20.  
  21.  
  22.  
  23. on inventory click:
  24. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Sharpness III":
  25. if clicked item is sword:
  26. enchant clicked item with sharpness 3
  27. set cursor item to air
  28. cancel event
  29.  
  30.  
  31.  
  32. Command /EnchantSharness3:
  33. Permission: *
  34. Trigger:
  35. give player enchanted book named "&eEnchanted book" with lore "&7Sharpness III"
  36.  
  37.  
  38.  
  39. on inventory click:
  40. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Sharpness IV":
  41. if clicked item is sword:
  42. enchant clicked item with sharpness 4
  43. set cursor item to air
  44. cancel event
  45.  
  46.  
  47.  
  48. Command /EnchantSharness4:
  49. Permission: *
  50. Trigger:
  51. give player enchanted book named "&eEnchanted book" with lore "&7Sharpness IV"
  52.  
  53.  
  54.  
  55. on inventory click:
  56. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Fireaspect I":
  57. if clicked item is sword:
  58. enchant clicked item with fire aspect 1
  59. set cursor item to air
  60. cancel event
  61.  
  62.  
  63.  
  64. Command /EnchantFireaspect:
  65. Permission: *
  66. Trigger:
  67. give player enchanted book named "&eEnchanted book" with lore "&7Fireaspect I"
  68.  
  69.  
  70.  
  71.  
  72. on inventory click:
  73. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Knockback I":
  74. if clicked item is sword:
  75. enchant clicked item with knockback 1
  76. set cursor item to air
  77. cancel event
  78.  
  79.  
  80.  
  81. Command /EnchantKnockBack:
  82. Permission: *
  83. Trigger:
  84. give player enchanted book named "&eEnchanted book" with lore "&7Knockback I"
  85.  
  86.  
  87. #
  88. #BUE
  89. #
  90.  
  91.  
  92.  
  93. on inventory click:
  94. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Power I":
  95. if clicked item is bow:
  96. enchant clicked item with Power 1
  97. set cursor item to air
  98. cancel event
  99.  
  100.  
  101.  
  102. Command /EnchantPower1:
  103. Permission: *
  104. Trigger:
  105. give player enchanted book named "&eEnchanted book" with lore "&7Power I"
  106.  
  107.  
  108.  
  109. on inventory click:
  110. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Power II":
  111. if clicked item is bow:
  112. enchant clicked item with Power 2
  113. set cursor item to air
  114. cancel event
  115.  
  116.  
  117.  
  118. Command /EnchantPower2:
  119. Permission: *
  120. Trigger:
  121. give player enchanted book named "&eEnchanted book" with lore "&7Power II"
  122.  
  123.  
  124.  
  125.  
  126.  
  127. on inventory click:
  128. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Power III":
  129. if clicked item is bow:
  130. enchant clicked item with Power 3
  131. set cursor item to air
  132. cancel event
  133.  
  134.  
  135.  
  136. Command /EnchantPower3:
  137. Permission: *
  138. Trigger:
  139. give player enchanted book named "&eEnchanted book" with lore "&7Power III"
  140.  
  141.  
  142.  
  143. on inventory click:
  144. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Flame I":
  145. if clicked item is bow:
  146. enchant clicked item with Flame 1
  147. set cursor item to air
  148. cancel event
  149.  
  150.  
  151.  
  152. Command /EnchantFlame1:
  153. Permission: *
  154. Trigger:
  155. give player enchanted book named "&eEnchanted book" with lore "&7Flame I"
  156.  
  157.  
  158.  
  159.  
  160.  
  161. #
  162. #GEAR
  163. #
  164.  
  165.  
  166. on inventory click:
  167. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Protection I":
  168. if clicked item is chestplate, leggings, helmet or boots:
  169. enchant clicked item with Protection 1
  170. set cursor item to air
  171. cancel event
  172.  
  173.  
  174.  
  175. Command /EnchantProtection1:
  176. Permission: *
  177. Trigger:
  178. give player enchanted book named "&eEnchanted book" with lore "&7Protection I"
  179.  
  180.  
  181.  
  182.  
  183.  
  184. on inventory click:
  185. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Protection II":
  186. if clicked item is chestplate, leggings, helmet or boots:
  187. enchant clicked item with Protection 2
  188. set cursor item to air
  189. cancel event
  190.  
  191.  
  192.  
  193. Command /EnchantProtection2:
  194. Permission: *
  195. Trigger:
  196. give player enchanted book named "&eEnchanted book" with lore "&7Protection II"
  197.  
  198.  
  199.  
  200. on inventory click:
  201. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Protection III":
  202. if clicked item is chestplate, leggings, helmet or boots:
  203. enchant clicked item with Protection 3
  204. set cursor item to air
  205. cancel event
  206.  
  207.  
  208. Command /EnchantProtection3:
  209. Permission: *
  210. Trigger:
  211. give player enchanted book named "&eEnchanted book" with lore "&7Protection III"
  212.  
  213. #UNBREAKING
  214.  
  215.  
  216.  
  217.  
  218.  
  219. on inventory click:
  220. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Unbreaking I":
  221. if clicked item is chestplate, bow ,sword, leggings, helmet or boots:
  222. enchant clicked item with Unbreaking 1
  223. set cursor item to air
  224. cancel event
  225.  
  226.  
  227. Command /EnchantUnbreaking1:
  228. Permission: *
  229. Trigger:
  230. give player enchanted book named "&eEnchanted book" with lore "&7Unbreaking I"
  231.  
  232.  
  233.  
  234.  
  235. on inventory click:
  236. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Unbreaking II":
  237. if clicked item is chestplate, bow ,sword, leggings, helmet or boots:
  238. enchant clicked item with Unbreaking 2
  239. set cursor item to air
  240. cancel event
  241.  
  242.  
  243. Command /EnchantUnbreaking2:
  244. Permission: *
  245. Trigger:
  246. give player enchanted book named "&eEnchanted book" with lore "&7Unbreaking II"
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253. on inventory click:
  254. if cursor item is enchanted book named "&eEnchanted book" with lore "&7Unbreaking III":
  255. if clicked item is chestplate, bow ,sword, leggings, helmet or boots:
  256. enchant clicked item with Unbreaking 3
  257. set cursor item to air
  258. cancel event
  259.  
  260.  
  261. Command /EnchantUnbreaking3:
  262. Permission: *
  263. Trigger:
  264. give player enchanted book named "&eEnchanted book" with lore "&7Unbreaking III"
Advertisement
Add Comment
Please, Sign In to add comment