Advertisement
firedemon88

Zombie Apocalypses skript

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