Advertisement
LuckyLucario99

GapZap Skript by LuckyLucario99

Oct 1st, 2015
402
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. options:
  2. GZ : &6[&bGapZap&6]
  3. D : &cDisabled!
  4. E : &cEnabled!
  5. NS : &c/gapzap <enable/disable/toggle>
  6.  
  7. command /gapzap [<text>]:
  8. usage: /gapzap <enable/disable/toggle>
  9. permission: gapzap.admin
  10. trigger:
  11. if arg 1 is not set:
  12. message "{@GZ} {@NS}"
  13. else if arg 1 is "enable":
  14. set {gapzap} to true
  15. broadcast "{@GZ} {@E}"
  16. else if arg 1 is "disable":
  17. set {gapzap} to false
  18. broadcast "{@GZ} {@D}"
  19. else if arg 1 is "toggle":
  20. if {gapzap} is true:
  21. set {gapzap} to false
  22. broadcast "{@GZ} {@D}"
  23. stop
  24. if {gapzap} is false:
  25. set {gapzap} to true
  26. broadcast "{@GZ} {@E}"
  27. stop
  28. else:
  29. message "{@GZ} {@NS}"
  30.  
  31. on damage:
  32. if {gapzap} is true:
  33. remove regeneration from victim
  34.  
  35.  
  36. # Skript made by LuckyLucario99
  37. # Gamemode Idea by DrDiablon
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement