Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # - This skript is made by RemixNsG - #
- # - If you have any errors please contact me on the reddit via /u/RemixNsG - #
- # - Send me a PRIVATE message - #
- # - Please make title <Skript: Skyhigh - Errors> - #
- # - Put your errors in the text box and i will get back to you on the error - #
- # - Gamemode Made by /u/MrTeamRaven - #
- # - Plugin by Ellzman - #
- # - Plugin Link: https://www.dropbox.com/s/5alpe67m6m709b8/Skyhigh.jar - #
- # - Also if this skript doesnt work revert to the Well made Plugin. - #
- options:
- # All broadcast Prefixs
- Pre:&8[&bSkyhigh&8]
- # Chat Color
- CC: &c
- # Sounds
- WrongUsage: random.break
- DefaultSound: note.pling
- command /skyhigh-enable:
- usage: /skyhigh-enable
- trigger:
- if player has permission "skyhigh.enable":
- if {Skyhigh.Started} is not set:
- set {Skyhigh.Started} to true
- broadcast "{@Pre}{@CC} Skyhigh Enabled by: &l&f[%command sender%]... &l&bThe ground is not safe anymore."
- loop all players:
- execute console command "/playsound {@DefaultSound} %loop-player% ~ ~ ~ 1 1 1"
- else:
- message "{@Pre}{@CC} Already Enabled!"
- execute console command "/playsound {@WrongUsage} %command sender% ~ ~ ~ 1 1 1"
- else:
- message "{@CC}No Permission. Contact server administrators if you think this is a error."
- execute console command "/playsound {@WrongUsage} %command sender% ~ ~ ~ 1 1 1"
- command /skyhigh-disable:
- usage: /skyhigh-disable
- trigger:
- if player has permission "skyhigh.disable":
- if {Skyhigh.Started} is true:
- delete {Skyhigh.Started}
- broadcast "{@Pre}{@CC} Skyhigh Disabled by: &l&f[%command sender%]... &l&bThe ground is safe... for now"
- loop all players:
- execute console command "/playsound {@DefaultSound} %loop-player% ~ ~ ~ 1 1 1"
- else:
- message "{@Pre}{@CC} Already Disabled!"
- execute console command "/playsound {@WrongUsage} %command sender% ~ ~ ~ 1 1 1"
- else:
- message "{@CC}No Permission. Contact server administrators if you think this is a error."
- execute console command "/playsound {@WrongUsage} %command sender% ~ ~ ~ 1 1 1"
- every 30 seconds:
- if {Skyhigh.Started} is true:
- loop all players:
- if loop-player's y-coordinate is between 0 and 101:
- damage the loop-player by 0.5 hearts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement