Advertisement
LukaMC59

Untitled

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