Advertisement
Guest User

Untitled

a guest
Mar 31st, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. # UHC Scenario
  2. # "Squid Diamonds" Troll Gamemode
  3. # Skript by /u/PenguinDJ
  4.  
  5. options:
  6. P: &f[&cR&6a&ei&an&bb&co&6w&e'&as &cU&6H&eC&f]&7
  7.  
  8. command /squiddiamonds <text>:
  9. description: Squiddiamonds Enable:Disable:Toggle
  10. usage: &7/squiddiamonds <enable:disable:toggle>
  11. aliases: /sd
  12. permission: skript.op
  13. trigger:
  14. if arg 1 is not set:
  15. send " " to player
  16. send "{@P} &9Squid Diamonds &7Help Menu" to player
  17. send " " to player
  18. send " &9Description:" to player
  19. send " &8»&7 On mine of diamond ore, a squid will spawn. The squid has a 50 percent chance to drop a diamond and a 50 percent chance to explode." to player
  20. send " &9Commands:" to player
  21. send " &8»&7&l /squiddiamonds help &8»&7&o Show this menu" to player
  22. send " &8»&7&l /squiddiamonds <enable:disable:toggle> &8»&7&o Toggle the scenario" to player
  23. send " &9Aliases:" to player
  24. send " &8»&7 Possible Aliases &8»&7 /squiddiamonds, /sd" to player
  25. send " &9Credit:" to player
  26. send " &8»&7 Skript by &9/u/PenguinDJ" to player
  27. send " " to player
  28. if arg 1 is "enable":
  29. set {sd} to true
  30. broadcast "{@P} Squid Diamonds has been &aenabled&7."
  31. if arg 1 is "disable":
  32. set {sd} to false
  33. broadcast "{@P} Squid Diamonds has been &cdisabled&7."
  34. if arg 1 is "toggle":
  35. if {sd} is true:
  36. set {sd} to false
  37. broadcast "{@P} Squid Diamonds has been &cdisabled&7."
  38. if {sd} is false:
  39. set {sd} to true
  40. broadcast "{@P} Squid Diamonds has been &eenabled&7."
  41. if arg 1 is "help":
  42. send " " to player
  43. send "{@P} &9Squid Diamonds &7Help Menu" to player
  44. send " " to player
  45. send " &9Description:" to player
  46. send " &8»&7 On mine of diamond ore, a squid will spawn. The squid has a 50 percent chance to drop a diamond and a 50 percent chance to explode." to player
  47. send " &9Commands:" to player
  48. send " &8»&7&l /squiddiamonds help &8»&7&o Show this menu" to player
  49. send " &8»&7&l /squiddiamonds <enable:disable:toggle> &8»&7&o Toggle the scenario" to player
  50. send " &9Aliases:" to player
  51. send " &8»&7 Possible Aliases &8»&7 /squiddiamonds, /sd" to player
  52. send " &9Credit:" to player
  53. send " &8»&7 Skript by &9/u/PenguinDJ" to player
  54. send " " to player
  55.  
  56. on mine of diamond ore:
  57. if {sd} is true:
  58. spawn 1 squid
  59.  
  60. on death of squid:
  61. if {sd} is true:
  62. chance of 50%:
  63. clear drops
  64. drop 1 diamond at squid
  65. chance of 10%:
  66. create an explosion of force 2 at squid
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement