Advertisement
Guest User

Minecraft Boss Script v1

a guest
Aug 17th, 2019
2,359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.53 KB | None | 0 0
  1. command /boss [<text>] [<text>]:
  2. permission: boss.use
  3. trigger:
  4. if arg-1 is not set:
  5. send "&a&lBoss"
  6. send ""
  7. send "&a/boss - prints this message"
  8. send "&a/boss list - shows all the bosses that you can spawn"
  9. send "&a/boss spawn <boss> - spawns an availible boss"
  10. send "&a/boss setspawn - sets a spawnpoint for all the boss"
  11. send "&eYou can configure it in boss.sk"
  12. if arg-1 is set:
  13. if arg-1 is "list":
  14. send "&a&lBosses:"
  15. send ""
  16. send "&e-&5Daze (Witch Boss)"
  17. if arg-1 is set:
  18. if arg-1 is "spawn":
  19. if arg-2 is not set:
  20. make player execute command "/boss list"
  21. if arg-2 is set:
  22. if arg-2 is "Daze":
  23. spawn a witch at {Bosses.location}
  24. send "&cBoss has been summoned!"
  25. set name of last spawned witch to "&5&lDaze"
  26. set max health of last spawned witch to 3000
  27. set health of last spawned witch to 3000
  28. if arg-1 is set:
  29. if arg-1 is "setspawn":
  30. set {Bosses.location} to location of player
  31. send "&aSuccessfuly set the location!"
  32.  
  33. #+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
  34. #Boss Design & Drops
  35. #+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
  36.  
  37. on damage:
  38. if victim is a witch:
  39. if victim's name is "&5&lDaze":
  40. push victim up with force 2
  41. chance of 5%:
  42. apply slowness 1 to attacker for 0.5 seconds
  43. chance of 5%:
  44. spawn a spider at victim's location
  45. apply speed 5 to last spawned spider for 5 seconds
  46. apply strength 2 to last spawned spider for 3 seconds
  47. chance of 1%:
  48. apply instant damage 1 to attacker for 0.1 seconds
  49. chance of 10%:
  50. spawn a bat at victim's location
  51. chance of 1%:
  52. apply regeneration 2 to victim for 3.5 seconds
  53. broadcast "&5&lDaze&c is now regenerating!"
  54. chance of 1%:
  55. apply speed 2 to victim for 5 seconds
  56. broadcast "&5&lDaze&c has speed now!"
  57. chance of 1%:
  58. spawn a zombie at victim's location
  59. chance of 1%:
  60. spawn a sheep at victim's location
  61. chance of 1%:
  62. spawn a skeleton at victim's location
  63. chance of 1%:
  64. spawn a wither skeleton at victim's location
  65. chance of 0.1%:
  66. spawn a ravager at victim's location
  67. chance of 0.1%:
  68. spawn a vindicator at victim's location
  69. chance of 73.8%:
  70. add 1 to {Kill_Chances.counter}
  71.  
  72. on death:
  73. if victim is a witch:
  74. if victim's name is "&5&lDaze":
  75. drop air
  76. give attacker a sunflower named "&6Boss Coin"
  77. spawn 2 ravager at {Bosses.location}
  78. spawn 4 vindicators at {Bosses.location}
  79. broadcast ""
  80. broadcast "&3Boss &5Daze &3has been defeated by &b&l%attacker%"
  81. broadcast ""
  82. loop 10 times:
  83. create a fake explosion at {Bosses.location}
  84. wait 0.25 seconds
  85.  
  86. #Skript Made By A Discord User Named "! BlastofCain#5368"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement