Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2015
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. options:
  2. #- Prefixes -#
  3. UHC: &f[&bUltra Hardcore&f]&r
  4. Error: &f[&bCommand Error&f]&r
  5. Killboard: &f[&bKillboard&f]&r
  6. CXP: &f[&bClearXP&f]&r
  7. Butcher: &f[&bMegaButcher&f]&r
  8. Cleareffects: &f[&bEffects&f]&r
  9.  
  10. #- Permission -#
  11. Permission: skript.host
  12. PermissionDeny: &7You do not have the correct permission. &8Permission: &f[&bskript.admincommands&f]
  13.  
  14.  
  15. command /killboard <text>:
  16. description: /killboard <on|off> - Enable/Disable the Killboard
  17. usage: /killboard <on|off>
  18. permission: {@Permission}
  19. permission message: {@PermissionDeny}
  20. executable by: players and console
  21. trigger:
  22. if arg 1 is "on":
  23. command "/scoreboard objectives add kills playerKillCount &c&lFatal&4&lUHC &6Kills"
  24. command "/scoreboard objectives setdisplay sidebar kills"
  25. broadcast "{@Killboard} &fKillboard &7enabled!"
  26. if arg 1 is "off":
  27. command "/scoreboard objectives remove kills"
  28. broadcast "{@Killboard} &fKillboard &7disabled!"
  29.  
  30.  
  31. on death of player:
  32.  
  33. command "/scoreboard players reset %victim%"
  34.  
  35. if attacker is player:
  36.  
  37. stop
  38.  
  39. else:
  40.  
  41. command "/scoreboard players add &6PvE kills 1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement