Advertisement
LukaMC59

Untitled

Nov 8th, 2017
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. on rightclick:
  2. player is wearing {leathercar}
  3. player is holding clock
  4. loop 2 times:
  5. thrust player upwards at speed 0
  6. thrust player in horizontal direction of player at speed 0.4
  7. show smoke at location of the player
  8.  
  9. on leftclick:
  10. player is wearing {leathercar}
  11. make player execute command "/disguise minecart"
  12.  
  13. on sneak toggle:
  14. player is wearing {leathercar}
  15. make player execute command "/undisguise"
  16.  
  17. on sprint toggle:
  18. player is wearing {leathercar}
  19. cancel event
  20.  
  21. on jump:
  22. player is wearing {leathercar}
  23. cancel event
  24.  
  25. on damage:
  26. victim is a player
  27. attacker is a player
  28. attacker is wearing {leathercar}
  29. cancel event
  30.  
  31. command /leathercar:
  32. permission: car.leather
  33. trigger:
  34. set {leathercar} to leather chestplate named "&6Leather Car"
  35. give {leathercar} to the player
  36.  
  37. on rightclick:
  38. player is wearing {ironplane}
  39. player is holding clock
  40. loop 3 times:
  41. thrust player upwards at speed 0
  42. thrust player forwards at speed 0.2
  43. show smoke at location of the player
  44. show mob spawner flames at location of player
  45.  
  46. on sprint toggle:
  47. player is wearing {ironplane}
  48. cancel event
  49.  
  50. # on jump:
  51. # player is wearing {ironplane}
  52. # cancel event
  53.  
  54. command /ironplane:
  55. permission: plane.iron
  56. trigger:
  57. set {ironplane} to iron chestplate named "&7Iron Plane"
  58. give {ironplane} to the player
  59.  
  60. on rightclick:
  61. player is wearing {chainhelicopter}
  62. player is holding clock
  63. loop 3 times:
  64. thrust player upwards at speed 0.3
  65.  
  66. on leftclick:
  67. player is wearing {chainhelicopter}
  68. player is holding clock:
  69. loop 3 times:
  70. thrust player forwards at speed 0.15
  71.  
  72. command /chainhelicopter:
  73. permission: helicopter.chain
  74. trigger:
  75. set {chainhelicopter} to chain chestplate named "&8Chain Helicopter"
  76. give {chainhelicopter} to the player
  77.  
  78. command /diamondrocket:
  79. permission: plane.diamond
  80. trigger:
  81. set {plane} to diamond named "&6Plane"
  82. give {plane} to player
  83.  
  84. on rightclick:
  85. player is holding {plane}
  86. if {cd.%player%} is 1:
  87. set {sb.%player%} to 1
  88. wait 1 tick
  89. shoot snowball from player at speed 4
  90. wait 1 tick
  91. set {sb.%player%} to 2
  92. set {cd.%player%} to 2
  93. wait 3 seconds
  94. set {cd.%player%} to 1
  95.  
  96. on join:
  97. set {cd.%player%} to 1
  98. set {sb.%player%} to 2
  99.  
  100. on shoot:
  101. projectile is snowball
  102. if {sb.%shooter%} is 1:
  103. make shooter ride projectile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement