Advertisement
Guest User

Untitled

a guest
Oct 16th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.43 KB | None | 0 0
  1. command /kits:
  2. trigger:
  3. open chest with 3 rows named "&eSkygames &8» &7Kits" to player
  4. wait 1 tick
  5. format slot 0 of player with gray stained glass pane named " " to close
  6. format slot 1 of player with gray stained glass pane named " " to close
  7. format slot 2 of player with gray stained glass pane named " " to close
  8. format slot 3 of player with gray stained glass pane named " " to close
  9. format slot 4 of player with gray stained glass pane named " " to close
  10. format slot 5 of player with gray stained glass pane named " " to close
  11. format slot 6 of player with gray stained glass pane named " " to close
  12. format slot 7 of player with gray stained glass pane named " " to close
  13. format slot 8 of player with gray stained glass pane named " " to close
  14. format slot 9 of player with gray stained glass pane named " " to close
  15. format slot 10 of player with chest named "&7Kit &8» &aSpieler" to close then run [execute player command "/kit Spieler"]
  16. format slot 11 of player with gray stained glass pane named " " to close
  17. format slot 12 of player with chest named "&7Kit &8» &6Gold" to close then run [execute player command "/Kit Gold"]
  18. format slot 13 of player with gray stained glass pane named " " to close
  19. format slot 14 of player with chest named "&7Kit &8» &5Mythic" to close then run [execute player command "/Kit Mythic"]
  20. format slot 15 of player with gray stained glass pane named " " to close
  21. format slot 16 of player with chest named "&7Kit &8» &eSpezial" to close then run [execute player command "/Kit Spezial"]
  22. format slot 17 of player with gray stained glass pane named " " to close
  23. format slot 18 of player with gray stained glass pane named " " to close
  24. format slot 19 of player with gray stained glass pane named " " to close
  25. format slot 20 of player with gray stained glass pane named " " to close
  26. format slot 21 of player with gray stained glass pane named " " to close
  27. format slot 22 of player with gray stained glass pane named " " to close
  28. format slot 23 of player with gray stained glass pane named " " to close
  29. format slot 24 of player with gray stained glass pane named " " to close
  30. format slot 25 of player with gray stained glass pane named " " to close
  31. format slot 26 of player with gray stained glass pane named " " to close
  32.  
  33.  
  34. command /kit [<Text>]:
  35. trigger:
  36. if arg 1 is set:
  37. if arg 1 is "spieler":
  38. give player diamond helmet of protection 4, unbreaking 3
  39. give player diamond chestplate of protection 4, unbreaking 3
  40. give player diamond leggings of protection 4, unbreaking 3
  41. give player diamond boots of protection 4, unbreaking 3
  42. give player 1 diamond sword of sharpness 4, unbreaking 3
  43. give player 1 fishing rod
  44. give player 32 splash potion of healing 2
  45. if arg 1 is "Gold":
  46. if player has permission "kit.gold":
  47. give player diamond helmet of protection 4, unbreaking 3
  48. give player diamond chestplate of protection 4, unbreaking 3
  49. give player diamond leggings of protection 4, unbreaking 3
  50. give player diamond boots of protection 4, unbreaking 3
  51. give player 1 diamond sword of sharpness 4, unbreaking 3
  52. give player 1 fishing rod
  53. give player 64 splash potion of healing 2
  54. else:
  55. send "&7Du besnötigst den Rang Gold für dieses Kit" to player
  56. if arg 1 is "Mythic":
  57. if player has permission "kit.Mythic"
  58. give player diamond helmet of protection 4, unbreaking 3
  59. give player diamond chestplate of protection 4, unbreaking 3
  60. give player diamond leggings of protection 4, unbreaking 3
  61. give player diamond boots of protection 4, unbreaking 3
  62. give player 1 diamond sword of sharpness 5, unbreaking 3
  63. give player 1 fishing rod
  64. give player 128 splash potion of healing 2
  65. else:
  66. send "&7Du besnötigst den Rang Mythic für dieses Kit" to player
  67. if arg 1 is "Spezial":
  68. if player has permission "kit.spezial":
  69. give player diamond helmet of protection 4, unbreaking 3
  70. give player diamond chestplate of protection 4, unbreaking 3
  71. give player diamond leggings of protection 4, unbreaking 3
  72. give player diamond boots of protection 4, unbreaking 3
  73. give player 1 diamond sword of sharpness 4, unbreaking 3, fire aspect 1
  74. give player 1 fishing rod
  75. give player 1 stick of knockback 2
  76. give player 256 splash potion of healing 2
  77. else:
  78. send "&7Du besnötigst den Rang Spezial für dieses Kit" to player
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement