CREAMPAN0408

Untitled

Feb 16th, 2019
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. #TagGUI Skript - VipFTW Thur/Mar/30
  2.  
  3. options:
  4. NoPermission: &e&lTag&6&LGui &8- &cYou don't have permission.
  5. example: &e&lExample
  6. example2: &e&lExample2
  7. example3: &e&lExample3
  8. NoTagPermission: &e&lTag&6&LGui &8- &cYou don’t have permission to use this tag.
  9.  
  10. command /taggui [<text>]:
  11. aliases: tagguis
  12. trigger:
  13. if arg-1 is not set:
  14. message ""
  15. message "&e<&8&m----------&6&m------&8&m----------&e>"
  16. message ""
  17. message "&e&lTags&6&lGUI"
  18. message ""
  19. message "&6> &7/tag &8-&e View Our Tags"
  20. message ""
  21. message ""
  22. message "&e<&8&m----------&6&m------&8&m----------&e>"
  23.  
  24.  
  25. command /tag:
  26. permission: nick.useeee
  27. permission message: {@NoPermission}
  28. aliases: tags
  29. trigger:
  30. open chest with 3 rows named "&eTag &6Gui" to player
  31. format slot 0 of player with red stained glass named "&e&lExample" to run [make player execute command "/tagexample1"]
  32. format slot 1 of player with red stained glass named "&e&lExample2" to run [make player execute command "/tagexample2"]
  33. format slot 2 of player with red stained glass named "&e&lExample3" to run [make player execute command "/tagexample3"]
  34. format slot 22 of player with hopper named "&e&lRemove &6&lTags" to run [make player execute command "/tagremove"]
  35. if player has permission "example.use":
  36. format slot 0 of player with green stained glass named "&e&lExample" to run [make player execute command "/tagexample1"]
  37. if player has permission "example2.use":
  38. format slot 1 of player with green stained glass named "&e&lExample2" to run [make player execute command "/tagexample2"]
  39. if player has permission "example3.use":
  40. format slot 2 of player with green stained glass named "&e&lExample3" to run [make player execute command "/tagexample3"]
  41.  
  42. command /tagexample1:
  43. permission: example.use
  44. permission message: {@NoTagPermission}
  45. trigger:
  46. execute console command "/manuaddv %player% suffix &e&l{@example}"
  47. execute console command "/pex user %player% suffix &e&l{@example}"
  48. send "&e&lTag&6&lGui &8- &7You are now using the &e&lExample &7Tag"
  49.  
  50. command /tagexample2:
  51. permission: example2.use
  52. permission message: {@NoTagPermission}
  53. trigger:
  54. execute console command "/manuaddv %player% suffix &e&l{@example2}"
  55. execute console command "/pex user %player% suffix &e&l{@example2}"
  56. send "&e&lTag&6&lGui &8- &7You are now using the &e&lExampleTwo &7Tag"
  57.  
  58. command /tagexample3:
  59. permission: example3.use
  60. permission message: {@NoTagPermission}
  61. trigger:
  62. execute console command "/manuaddv %player% suffix &e&l{@example3}"
  63. execute console command "/pex user %player% suffix &e&l{@example3}"
  64. send "&e&lTag&6&lGui &8- &7You are now using the &e&lExampleThree &7Tag"
  65.  
  66. command /tagremove:
  67. trigger:
  68. execute console command "/manuaddv %player% suffix &7"
  69. execute console command "/pex user %player% suffix &7"
  70. send "&e&lTag&6&lGui &8- &7You have removed your tag"
Add Comment
Please, Sign In to add comment