Advertisement
Guest User

Untitled

a guest
Jan 12th, 2014
1,014
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. command /skyhigh-enable:
  2. description: Enabled the skyhigh scenario.
  3. usage: /skyhigh-enable
  4. permission: skript.skyhigh.enable
  5. trigger:
  6. set {SkyHigh} to "true"
  7. broadcast "&9[SkyHigh] &bHope you like heights..."
  8.  
  9. command /skyhigh-disable:
  10. description: Disabled the skyhigh scenario.
  11. usage: /skyhigh-disable
  12. permission: skript.skyhigh.disable
  13. trigger:
  14. set {SkyHigh} to "false"
  15. broadcast "&9[SkyHigh] &bThe ground is safe, for now..."
  16.  
  17. command /skyhigh:
  18. description: Gives an explanation of the scenario.
  19. usage: /skyhigh
  20. trigger:
  21. message "&b-----------------------------------------------------" to command sender
  22. message " " to command sender
  23. message "&9[Skyhigh] &b- After 45 minutes, any player below Y-101 will begin to take half a heart of damage every 30 seconds." to command sender
  24. message " " to command sender
  25. message "&bYou must use this 45 minutes wisely to make preparations for surviving the remainder of the game in the sky." to command sender
  26. message " " to command sender
  27. message "&bHint: Cobblestone and snow generators are going to be very important." to command sender
  28. message " " to command sender
  29. message "&bBe sure your tower is near enough to 0,0 to reach the sky meetup in reasonable time and have encounters with other teams." to command sender
  30. message " " to command sender
  31. message "&bYou will be forced to head to meetup by means of ground travel if necessary, another reason why having a way to generate blocks and build bridges is important." to command sender
  32. message " " to command sender
  33. message "&b-----------------------------------------------------" to command sender
  34.  
  35.  
  36. every 30 seconds:
  37. loop all players:
  38. {SkyHigh} is "true"
  39. loop-player is in "world":
  40. loop-player's y-coordinate is between 0 and 100
  41. damage the loop-player by 0.5 hearts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement