Advertisement
firedemon88

Zombie Apocalypses skript

Jul 23rd, 2014
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.83 KB | None | 0 0
  1. command /za <text>:
  2. trigger:
  3. if arg 1 is "enable" or "on" or "true":
  4. set {za} to true
  5. broadcast "&c[Mutated Z] &4Zombie Mutation has begun."
  6. if arg 1 is "disable" or "off" or "false":
  7. set {za} to false
  8. broadcast "&c[Mutated Z] &4The plague has been contained."
  9.  
  10.  
  11. on spawn of spider:
  12. {za} is true
  13. cancel the event
  14. spawn 4 zombies
  15.  
  16.  
  17. on spawn of skeleton:
  18. {za} is true
  19. cancel the event
  20. spawn 4 zombies
  21.  
  22.  
  23. on spawn of enderman:
  24. {za} is true
  25. cancel the event
  26. spawn 8 zombies
  27.  
  28.  
  29. on spawn of cave spider:
  30. {za} is true
  31. cancel the event
  32. spawn 4 zombies
  33.  
  34.  
  35. on spawn of creeper:
  36. {za} is true
  37. cancel the event
  38. spawn 4 zombies
  39.  
  40.  
  41. on spawn of zombie:
  42. {za} is true
  43. cancel the event
  44. spawn 4 zombies
  45.  
  46.  
  47. on death of zombie:
  48. {za} is true
  49. chance of 4%:
  50. drop 1 diamond
  51. chance of 20%:
  52. drop 1 gold ingot
  53. chance of 50%:
  54. drop 1 iron ingot
  55. chance of 75%:
  56. drop 1 string
  57. chance of 85%:
  58. drop 1 melon
  59. chance of 90%:
  60. drop 1 fermented spider eye
  61. chance of 2%:
  62. drop 1 iron block
  63. chance of .5%:
  64. drop 1 gold block
  65. chance of .001%:
  66. drop 1 diamond block
  67. chance of 32%:
  68. drop 1 obsidian
  69. chance of 16%:
  70. drop 2 golden carrots
  71.  
  72. on death of zombie:
  73. damage was caused by projectile, or fall, or attack:
  74. chance of 3%:
  75. apply speed 2 to the player for 3 minutes
  76. chance of 2%:
  77. apply resistance 1 to the player for 3 minutes
  78. chance of 1%:
  79. apply strength 1 to the player for 3 minutes
  80.  
  81. #___________________________________________
  82. #MAKE ZOMBIES REPELENT TO DAYLIGHT
  83. #___________________________________________
  84.  
  85.  
  86. on damage of zombie:
  87. {za} is true
  88. damage was caused by burning:
  89. chance of 100%:
  90. cancel the event
  91. apply strength 2 to the victim for 10 minutes
  92. apply speed 4 to the victim for 10 minutes
  93. apply health boost 5 to the victim for 10 minutes
  94.  
  95.  
  96. on damage of player:
  97. {za} is true
  98. damage was caused by attack
  99. attacker is zombie:
  100. ignite the victim
  101.  
  102.  
  103. #_____________________________________________________
  104. #MAKE NETHER MOBS NOT SPAWN AND PISS OFF ZOMBIE PIGMEN
  105.  
  106. #_____________________________________________________
  107.  
  108. on spawn of zombie pigman:
  109. {za} is true
  110. damage the zombie pigman by 1/2 heart
  111. apply strength 1 to the zombie pigman for 999 days
  112. apply speed 3 to the zombie pigman for 999 days
  113. chance of 50%:
  114. equip zombie pigman with diamond chestplate
  115. equip zombie pigman with diamond sword
  116. chance of 75:
  117. equip zombie pigman with iron boots
  118. equip zombie pigman with iron sword
  119. equip zombie pigman with iron helmet
  120. chance of 15%:
  121. equip zombie pigman with diamond helmet
  122. equip zombie pigman with diamond chestplate
  123. equip zombie pigman with diamond leggings
  124. equip zombie pigman with diamond boots
  125. equip zombie pigman with iron sword of sharpness 2
  126. chance of .001%:
  127. equip zombie pigman with diamond helmet of protection 4
  128. equip zombie pigman with diamond chestplate of protection 4
  129. equip zombie pigman with diamond leggings of protection 4
  130. equip zombie pigman with diamond boots of protection 4
  131. equip zombie pigman with diamond sword of knockback 5
  132.  
  133.  
  134.  
  135.  
  136. on spawn of wither skeleton:
  137. {za} is true
  138. cancel the event
  139. spawn 4 zombie pigmen
  140.  
  141.  
  142.  
  143. on spawn of blaze:
  144. {za} is true
  145. cancel the event
  146. spawn 4 zombie pigmen
  147.  
  148.  
  149. on death of zombie pigman:
  150. {za} is true
  151. chance of 80%:
  152. drop 1 gold ingot
  153. chance of 75%:
  154. drop 1 gunpowder
  155. chance of 60%:
  156. drop 1 spider eye
  157. chance of 35%:
  158. drop 1 glistering melon
  159. chance of 50%:
  160. drop 1 nether wart
  161. chance of 30%:
  162. drop 1 blaze rod
  163. chance of 15%:
  164. drop 1 brewing stand
  165. chance of 8%:
  166. drop 1 speed potion
  167. chance of 7%:
  168. drop 1 fire resistance potion
  169. chance of 6%:
  170. execute console command "effect player DAMAGE_RESISTANCE 180"
  171. chance of 5%:
  172. drop 1 strength potion
  173. chance of 3%:
  174. drop 1 healing potion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement