jan_kk

KITY

Jan 30th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 KB | None | 0 0
  1. options:
  2. delay_gracz: 2
  3. delay_vip: 3
  4. delay_elite: 4
  5. command /kit [<text>]:
  6. trigger:
  7. if arg 1 is "gracz":
  8. if {oczekiwanie.gracz::%player%} is set:
  9. send "&4Musisz poczekac jeszcze %{oczekiwanie.gracz::%player%}% sekund!"
  10. stop
  11. give 1 stone sword named "&4K" with lore "&4KK||&4KK||&4KK" to player
  12. give 1 stone pickaxe named "&4K" with lore "&4KK||&4KK||&4KK" to player
  13. give 1 stone spade named "&4K" with lore "&4KK||&4KK||&4KK" to player
  14. give 1 stone axe named "&4K" with lore "&4KK||&4KK||&4KK" to player
  15. give 1 298 named "&4K" with lore "&4KK||&4KK||&4KK" to player
  16. give 1 299 named "&4K" with lore "&4KK||&4KK||&4KK" to player
  17. give 1 300 named "&4K" with lore "&4KK||&4KK||&4KK" to player
  18. give 1 301 named "&4K" with lore "&4KK||&4KK||&4KK" to player
  19. give 64 320 named "&4K" with lore "&4KK||&4KK||&4KK" to player
  20. give 32 torch named "&4K" with lore "&4KK||&4KK||&4KK" to player
  21. set {oczekiwanie.gracz::%player%} to {@delay_gracz}
  22. send "&2Wziales Kit Gracz!"
  23. stop
  24. if arg 1 is "vip":
  25. if player has permission "kit.vip":
  26. if {oczekiwanie.vip::%player%} is set:
  27. send "&4Musisz poczekac jeszcze %{oczekiwanie.vip::%player%}% sekund!"
  28. stop
  29. give 1 iron sword named "&6V" with lore "&6VV||&6VV||&6VV" to player
  30. give 1 iron pickaxe named "&6V" with lore "&6VV||&6VV||&6VV" to player
  31. give 1 iron spade named "&6V" with lore "&6VV||&6VV||&6VV" to player
  32. give 1 iron axe named "&6V" with lore "&6VV||&6VV||&6VV" to player
  33. give 1 diamond helmet named "&6V" with lore "&6VV||&6VV||&6VV" to player
  34. give 1 diamond chestplate named "&6V" with lore "&6VV||&6VV||&6VV" to player
  35. give 1 iron leggings named "&6V" with lore "&6VV||&6VV||&6VV" to player
  36. give 1 iron boots named "&6V" with lore "&6VV||&6VV||&6VV" to player
  37. give 3 322:1 named "&6V" with lore "&6VV||&6VV||&6VV" to player
  38. send "&2Wziales Kit Vip!"
  39. set {oczekiwanie.vip::%player%} to {@delay_vip}
  40. stop
  41. if arg 1 is "elite":
  42. if {oczekiwanie.elite::%player%} is set:
  43. send "&4Musisz poczekac jeszcze %{oczekiwanie.elite::%player%}% sekund!"
  44. stop
  45. give 1 diamond sword named "&bE" with lore "&bEE||&bEE||&bEE" to player
  46. give 1 diamond pickaxe named "&bE" with lore "&bEE||&bEE||&bEE" to player
  47. give 1 diamond spade named "&bE" with lore "&bEE||&bEE||&bEE" to player
  48. give 1 diamond axe named "&bE" with lore "&bEE||&bEE||&bEE" to player
  49. give 1 diamond helmet named "&bE" with lore "&bEE||&bEE||&bEE" to player
  50. give 1 diamond chestplate named "&bE" with lore "&bEE||&bEE||&bEE" to player
  51. give 1 diamond leggings named "&bE" with lore "&bEE||&bEE||&bEE" to player
  52. give 1 diamond boots named "&bE" with lore "&bEE||&bEE||&bEE" to player
  53. give 10 322:1 named "&bE" with lore "&bEE||&bEE||&bEE" to player
  54. set {oczekiwanie.elite::%player%} to {@delay_elite}
  55. send "&2Wziales Kit Elite!"
  56. stop
  57. every 1 second:
  58. loop {oczekiwanie.gracz::*}:
  59. if {oczekiwanie.gracz::%loop-index%} is 0:
  60. clear {oczekiwanie.gracz::%loop-index%}
  61. stop
  62. remove 1 from {oczekiwanie.gracz::%loop-index%}
  63. every 1 second:
  64. loop {oczekiwanie.vip::*}:
  65. if {oczekiwanie.vip::%loop-index%} is 0:
  66. clear {oczekiwanie.vip::%loop-index%}
  67. stop
  68. remove 1 from {oczekiwanie.vip::%loop-index%}
  69. every 1 second:
  70. loop {oczekiwanie.elite::*}:
  71. if {oczekiwanie.elite::%loop-index%} is 0:
  72. clear {oczekiwanie.elite::%loop-index%}
  73. stop
  74. remove 1 from {oczekiwanie.elite::%loop-index%}
  75. command /kitclear:
  76. trigger:
  77. if player has permission "kit.admin":
  78. clear {oczekiwanie.gracz::%player%}
  79. clear {oczekiwanie.vip::%player%}
  80. clear {oczekiwanie.elite::%player%}
  81. send "&2Wyczyszczono"
  82. stop
  83. send "&4Nie masz uprawnien!"
  84. stop
Advertisement
Add Comment
Please, Sign In to add comment