Advertisement
twogz

Untitled

Jul 19th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. on first join:
  2. set {level::%uuid of player%} to 0
  3. set {xp::%uuid of player%} to 0
  4. set {xpmax::%uuid of player%} to 50
  5. execute console command "/nte player %player% prefix &e%{level::%uuid of player%}% &7"
  6.  
  7. command /tabfix [<player>]:
  8. aliases: core:tabfix
  9. trigger:
  10. if player does not have permission "&ccore.admin":
  11. message "&cYou must have permission rank admin or higher to use this command!"
  12. else:
  13. if arg 1 is not set:
  14. message "&cUsage: /tabfix <player>"
  15. else:
  16. execute console command "/nte player %player% prefix &e%{level::%uuid of player%}% &7"
  17. set {level::%uuid of player%} to 0
  18. set {xp::%uuid of player%} to 0
  19. set {xpmax::%uuid of player%} to 50
  20.  
  21. command /shop:
  22. aliases: core:shop, market, core:market
  23. trigger:
  24. if player does not have permission "donor.shop":
  25. execute player command "/needrank"
  26. else:
  27. open chest with 5 rows named "Market" to player
  28. wait 0.6 ticks
  29. format slot 0 of player with nether star named "&6&lYour Balance" with lore "&fMoney &e%player's balance%" to be unstealable
  30.  
  31.  
  32. command /needrank:
  33. aliases: core:needrank
  34. trigger:
  35. message "&cYou must have permission rank vip or higher to use this command!"
  36. message "&cPurchase a rank by typing &b/buy &cin chat."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement