Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.38 KB | None | 0 0
  1. #
  2. # Multiples Donors | Vinixs
  3. #
  4.  
  5. command /flappingwings:
  6. permission: rank.vip
  7. permission message: &cYou need &a&lVIP
  8. trigger:
  9. drawWings style 17, particle1 "flame", speed 0, XYZ 0, 0, 0, particle2 "redstone", particle3 "redstone", center player, id "%player%", rainbowMode true, flapSpeed 2, flapRange 30, angle 120, height 0, space 0.2, visibleRange 30, tps 0, second 3
  10. send "&aSuccess:"
  11. send "&7Enabled Flapping Wings!"
  12.  
  13. command /clearpart [<player>]:
  14. permission: rank.vip
  15. permission message: &cYou need &a&lVIP
  16. trigger:
  17. if arg 1 is not set:
  18. stopEffect "%player%"
  19. send "&aCleared your particles"
  20. else:
  21. stopEffect "%arg-1%"
  22. send "&aCleared %arg-1%'s particles"
  23. send "&aYour Particles have been cleared by &c%player%" to arg 1
  24.  
  25. command /circle:
  26. permission: rank.vip
  27. permission message: &cYou need &a&lVIP
  28. trigger:
  29. drawComplexCircle particle "redstone", center player, id "%player%", rainbowMode true, randomRotation true, radius 1.5, density 20, start 0, visibleRange 30
  30. send "&aSuccess:"
  31. send "&7Enabled Circle Particle"
  32.  
  33. command /nyan:
  34. permission: rank.vip
  35. permission message: &cYou need &a&lVIP
  36. trigger:
  37. drawNyanCat center player, id "%player%", visibleRange 30
  38. send "&aSuccess:"
  39. send "&7Enabled Nyan Particle"
  40.  
  41. command /multiples:
  42. permission: rank.vip
  43. permission message: &cYou need &a&lVIP
  44. trigger:
  45. drawText "Multiples", particle redstone, RGB 0, 1, 200, center player, id "%player%", rainbowMode true, autoFace false, invert false, fontName "Arial", fontStyle plain, fontSize 10, scale 7, visibleRange 32, RotationXYZ 0, 0, 0, displacementXYZ 0, 3, 0, pulseDelay 0
  46. send "&aSuccess:"
  47. send "&7Enabled Multiples Particle"
  48.  
  49. command /text [<text>]:
  50. permission: rank.vip
  51. permission message: No Permission
  52. trigger:
  53. if arg 1 is set:
  54. if length of "%arg-1%" <= 16:
  55. drawText "%arg-1%", particle redstone, RGB 0, 1, 200, center player, id "%player%", rainbowMode true, autoFace false, invert false, fontName "Arial", fontStyle plain, fontSize 10, scale 7, visibleRange 32, RotationXYZ 0, 0, 0, displacementXYZ 0, 3, 0, pulseDelay 0
  56. else:
  57. send "&7That text is too long!"
  58. else:
  59. send "&cError:"
  60. send "&7Usage: /text <text>"
  61.  
  62. command /disco:
  63. permission: rank.vip
  64. permission message: No Permission
  65. trigger:
  66. drawDisco style 1, particle redstone, RGB 255, 0, 0, particle2 redstone, RGB2 0, 244, 0, center location of player, id "%player%", rainbowMode false, maxLines 7, lineLength 5, sphereRadius 1, sphereDensity 50, lineDensity 40, visibleRange 32, displacementXYZ 0, 5, 0, pulseDelay 2
  67. send "&aSuccess"
  68. send "&7Enabled Cylinder Particle."
  69.  
  70. command /halo:
  71. permission: rank.vip
  72. permission message: No Permission
  73. trigger:
  74. drawHalo particle "redstone", RGB 0, 0, 0, center player, id "%player%", rainbowMode true, solid true, density 10, visibleRange 32
  75. send "&aSuccess"
  76. send "&7Enable Halo Particle."
  77.  
  78. command /donorgui:
  79. trigger:
  80. open chest with 6 rows named "&c&lDonor Shop" to player
  81. if player has permission "rank.vip":
  82. format slot 11 of player with blaze powder named "&bFlapping Wings" with lore "&7&l&m-----------------||&aClick to enable.||&7&l&m-----------------" to run [execute player command "/flappingwings"]
  83. format slot 13 of player with diamond named "&dNyan Particle" with lore "&7&l&m-----------------||&aClick to enable.||&7&l&m-----------------" to run [execute player command "/nyan"]
  84. format slot 15 of player with glowstone dust named "&cMultiples Text" with lore "&7&l&m-----------------||&aClick to enable.||&7||&a&oEdit this with /text <text>||&7&l&m-----------------" to run [execute player command "/multiples"]
  85. format slot 19 of player with redstone named "&f&lHalo" with lore "&7&l&m-----------------||&aClick to enable.||&7&l&m-----------------" to run [execute player command "/halo"]
  86. format slot 45 of player with barrier named "&c&lClear Particles" with lore "&7||&7||&7" to run [execute player command "/clearpart"]
  87. else:
  88. format slot 11 of player with blaze powder named "&bFlapping Wings" with lore "&7&l&m-----------------||&cRequires &a&lVIP.||&7&l&m-----------------" to run [execute player command "/buyfwings"]
  89. format slot 13 of player with cake named "&dNyan Particle" with lore "&7&l&m-----------------||&cRequires &a&lVIP||&7&l&m-----------------" to run [execute player command "/nyan"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement