Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # UHC Scenario
- # "Squid Diamonds" Troll Gamemode
- # Skript by /u/PenguinDJ
- options:
- P: &f[&cR&6a&ei&an&bb&co&6w&e'&as &cU&6H&eC&f]&7
- command /squiddiamonds <text>:
- description: Squiddiamonds Enable:Disable:Toggle
- usage: &7/squiddiamonds <enable:disable:toggle>
- aliases: /sd
- permission: skript.op
- trigger:
- if arg 1 is not set:
- send " " to player
- send "{@P} &9Squid Diamonds &7Help Menu" to player
- send " " to player
- send " &9Description:" to player
- 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
- send " &9Commands:" to player
- send " &8»&7&l /squiddiamonds help &8»&7&o Show this menu" to player
- send " &8»&7&l /squiddiamonds <enable:disable:toggle> &8»&7&o Toggle the scenario" to player
- send " &9Aliases:" to player
- send " &8»&7 Possible Aliases &8»&7 /squiddiamonds, /sd" to player
- send " &9Credit:" to player
- send " &8»&7 Skript by &9/u/PenguinDJ" to player
- send " " to player
- if arg 1 is "enable":
- set {sd} to true
- broadcast "{@P} Squid Diamonds has been &aenabled&7."
- if arg 1 is "disable":
- set {sd} to false
- broadcast "{@P} Squid Diamonds has been &cdisabled&7."
- if arg 1 is "toggle":
- if {sd} is true:
- set {sd} to false
- broadcast "{@P} Squid Diamonds has been &cdisabled&7."
- if {sd} is false:
- set {sd} to true
- broadcast "{@P} Squid Diamonds has been &eenabled&7."
- if arg 1 is "help":
- send " " to player
- send "{@P} &9Squid Diamonds &7Help Menu" to player
- send " " to player
- send " &9Description:" to player
- 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
- send " &9Commands:" to player
- send " &8»&7&l /squiddiamonds help &8»&7&o Show this menu" to player
- send " &8»&7&l /squiddiamonds <enable:disable:toggle> &8»&7&o Toggle the scenario" to player
- send " &9Aliases:" to player
- send " &8»&7 Possible Aliases &8»&7 /squiddiamonds, /sd" to player
- send " &9Credit:" to player
- send " &8»&7 Skript by &9/u/PenguinDJ" to player
- send " " to player
- on mine of diamond ore:
- if {sd} is true:
- spawn 1 squid
- on death of squid:
- if {sd} is true:
- chance of 50%:
- clear drops
- drop 1 diamond at squid
- chance of 10%:
- create an explosion of force 2 at squid
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement