Guest User

Untitled

a guest
Feb 8th, 2014
668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 KB | None | 0 0
  1. # Nightmare Mode
  2. # Scenario and Skript by ShutUpBrick
  3.  
  4. #====================
  5.  
  6. # Commands
  7.  
  8. #====================
  9.  
  10. # /nmmode <enable / disable>
  11. # Enables or disables the Nightmare Mode scenario.
  12.  
  13. command /nmmode <text>:
  14. description: Enables or disables Nightmare Mode.
  15. usage: /nmmode <enable / disable>
  16. permission: skript.nightmaremode.toggle
  17. trigger:
  18. if arg 1 is "enable":
  19. set {NMMode} to true
  20. broadcast "&7Nightmare Mode has been enabled..."
  21.  
  22. if arg 1 is "disable":
  23. set {NMMode} to false
  24. broadcast "&7Nightmare Mode has been disabled..."
  25.  
  26. #====================
  27.  
  28. # Skript: Creepers
  29.  
  30. #====================
  31.  
  32. # Creeper speed boost
  33.  
  34. on spawn of creeper:
  35. {NMMode} is true
  36. apply speed 2 to the creeper for 999 days
  37.  
  38. # Larvae burst out on creeper explosion
  39.  
  40. on explode:
  41. {NMMode} is true
  42. entity is creeper
  43. spawn 5 silverfish at the creeper
  44.  
  45.  
  46. # A silverfish larva has a chance to live even if creeper is murdered
  47.  
  48. on death of creeper:
  49. {NMMode} is true
  50. damage was caused by attack, projectile, or fall:
  51. chance of 50%:
  52. spawn a silverfish at the creeper
  53.  
  54. #====================
  55.  
  56. # Skript: Zombies
  57.  
  58. #====================
  59.  
  60. # Zombies come equipped with extra strength
  61.  
  62. on spawn of zombie:
  63. {NMMode} is true
  64. apply strength 2 to the zombie for 999 days
  65.  
  66. # Zombies take damage from fire half as often, surviving longer in the sunlight
  67.  
  68. on damage of zombie:
  69. {NMMode} is true
  70. damage was caused by burning:
  71. chance of 50%:
  72. cancel the event
  73.  
  74. # The skeleton will pop out. It is speedy and attacks with melee. (Invisible sword)
  75.  
  76. on death of zombie:
  77. {NMMode} is true
  78. spawn a skeleton at the zombie
  79. equip the skeleton with a stone sword
  80. apply speed 1 to the skeleton for 999 days
  81.  
  82. #====================
  83.  
  84. # Skript: Skeletons
  85.  
  86. #====================
  87.  
  88. # Skeletons infect players with a weak poison upon shooting them
  89.  
  90. on damage of player:
  91. {NMMode} is true
  92. damage was caused by projectile
  93. attacker is skeleton:
  94. apply poison 1 to the victim for 3 seconds
  95.  
  96. #====================
  97.  
  98. # Skript: Spiders
  99.  
  100. #====================
  101.  
  102. # Spiders move incredibly quickly
  103.  
  104. on spawn of spider:
  105. {NMMode} is true
  106. apply speed 4 to the spider for 999 days
  107.  
  108. # Spiders burst into "silk" (cobwebs) and "blood" (redstone) upon dying.
  109.  
  110. on death of spider:
  111. {NMMode} is true
  112. set the block west of the spider to cobweb
  113. set the block east of the spider to cobweb
  114. set the block north of the spider to cobweb
  115. set the block south of the spider to cobweb
  116. drop 1 redstone dust west of the spider
  117. drop 1 redstone dust east of the spider
  118. drop 1 redstone dust north of the spider
  119. drop 1 redstone dust south of the spider
  120. drop 1 redstone dust northwest of the spider
  121. drop 1 redstone dust southwest of the spider
  122. drop 1 redstone dust northeast of the spider
  123. drop 1 redstone dust southeast of the spider
  124.  
  125. #====================
  126.  
  127. # Skript: Witch
  128.  
  129. #====================
  130.  
  131. # Witches are horrifyingly fast.
  132.  
  133. on spawn of witch:
  134. {NMMode} is true
  135. apply speed 5 to the witch for 999 days
  136.  
  137. #====================
  138.  
  139. # Skript: Enderman
  140.  
  141. #====================
  142.  
  143. # These are the deadliest mobs by far if players decide to attack them.
  144.  
  145. # Endermen are Nether-mutated, and light players on fire upon hitting them.
  146.  
  147. on damage of player:
  148. {NMMode} is true
  149. attacker is enderman:
  150. ignite the victim for 3 seconds
  151.  
  152. # Endermen have a small chance to spawn a blaze friend as backup when attacked.
  153.  
  154. on damage of enderman:
  155. {NMMode} is true
  156. attacker is player:
  157. chance of 10%:
  158. spawn a blaze at the victim
Advertisement
Add Comment
Please, Sign In to add comment