Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 0
  1. command /givecarbonizzare <player>:
  2. description: Give a Carbonizzare to someone
  3. usage: /givecarbonizzare [Player]
  4. permission: givecar.give
  5. executable by: players
  6. trigger:
  7. give a minecart named "&6Grotti Carbonizzare" to argument
  8.  
  9. command /giveadder <player>:
  10. description: Give an Adder to someone
  11. usage: /giveadder [Player]
  12. permission: givecar.give
  13. executable by: players
  14. trigger:
  15. give a minecart named "&6Truffade Adder" to argument
  16.  
  17. command /givephoenix <player>:
  18. description: Give a Phoenix to someone
  19. usage: /givephoenix [Player]
  20. permission: givecar.give
  21. executable by: players
  22. trigger:
  23. give a minecart named "&6Imponte Phoenix" to argument
  24.  
  25. command /givesurfer <player>:
  26. description: Give a Surfer to someone
  27. usage: /givesurfer [Player]
  28. permission: givecar.give
  29. executable by: players
  30. trigger:
  31. give a minecart named "&6BF Surfer" to argument
  32.  
  33. on rightclick with a minecart:
  34. player is riding a horse:
  35. cancel event
  36. player is holding a minecart named "&6Grotti Carbonizzare"
  37. cancel event
  38. remove a minecart named "&6Grotti Carbonizzare" from player
  39. spawn a horse above the targeted block
  40. tame spawned horse to player
  41. equip the spawned horse with a saddle
  42. set the maximum health of the spawned horse to 25
  43. apply speed 3 to the spawned horse for 9999999999999 seconds
  44. set name of spawned horse to "&6Grotti Carbonizzare"
  45. make player ride spawned horse
  46. stop
  47.  
  48. on rightclick with a minecart:
  49. player is riding a horse:
  50. cancel event
  51. player is holding a minecart named "&6Imponte Phoenix"
  52. cancel event
  53. remove a minecart named "&6Imponte Phoenix" from player
  54. spawn a horse above the targeted block
  55. tame spawned horse to player
  56. equip the spawned horse with a saddle
  57. set the maximum health of the spawned horse to 20
  58. apply speed 1 to the spawned horse
  59. set name of spawned horse to "&6Imponte Phoenix"
  60. make player ride spawned horse
  61. stop
  62.  
  63. on rightclick with a minecart:
  64. player is riding a horse:
  65. cancel event
  66. player is holding a minecart named "&6Truffade Adder"
  67. cancel event
  68. remove a minecart named "&6Truffade Adder" from player
  69. spawn a horse above the targeted block
  70. tame spawned horse to player
  71. equip the spawned horse with a saddle
  72. set the maximum health of the spawned horse to 50
  73. apply speed 7 to the spawned horse for 99999999999 seconds
  74. set name of spawned horse to "&6Truffade Adder"
  75. make player ride spawned horse
  76. stop
  77.  
  78. on rightclick with a minecart:
  79. player is riding a horse:
  80. cancel event
  81. player is holding a minecart named "&6BF Surfer"
  82. cancel event
  83. remove a minecart named "&6BF Surfer" from player
  84. spawn a horse above the targeted block
  85. tame spawned horse to player
  86. equip the spawned horse with a saddle
  87. set the maximum health of the spawned horse to 35
  88. apply slowness 2 to the spawned horse
  89. set name of spawned horse to "&6BF Surfer"
  90. make player ride spawned horse
  91. stop
  92.  
  93. on damage of a horse:
  94. attacker is riding a horse:
  95. cancel event
  96. the name of victim is "&6Truffade Adder"
  97. cancel event
  98. give attacker a minecart named "&6Truffade Adder"
  99. kill the victim
  100. stop
  101.  
  102. on damage of a horse:
  103. player is riding a horse:
  104. cancel event
  105. the name of victim is "&6Grotti Carbonizzare"
  106. cancel event
  107. give attacker a minecart named "&6Grotti Carbonizzare"
  108. kill the victim
  109. stop
  110.  
  111. on damage of a horse:
  112. player is riding a horse:
  113. cancel event
  114. the name of victim is "&6Imponte Phoenix"
  115. cancel event
  116. give attacker a minecart named "&6Imponte Phoenix"
  117. kill the victim
  118. stop
  119.  
  120. on damage of a horse:
  121. player is riding a horse:
  122. cancel event
  123. the name of victim is "&6BF Surfer"
  124. cancel event
  125. give attacker a minecart named "&6BF Surfer"
  126. kill the victim
  127. stop
  128.  
  129. on horse jump:
  130. cancel event
  131.  
  132. #-- Hier moet later een betere oplossing voor komen --#
  133. on item spawn of saddle:
  134. cancel event
  135.  
  136. on item spawn of leather:
  137. cancel event
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement