Advertisement
Guest User

Untitled

a guest
Jul 30th, 2017
1,061
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.42 KB | None | 0 0
  1. # ChatTags
  2. # Made by N3kas
  3.  
  4. # Build Version: 1.0.0
  5. # Release date: 2017.08.0?
  6.  
  7. # ** Commands and permissions
  8. # /tags - Open tags menu; permission: tags.open
  9. # /tags clear - Clear currently equipped tag; permission: tags.clear
  10. # /tags reload - Reload configuration; permission: tags.reload
  11. # /tags list - List all tags; permission: tags.list
  12. # /tags create <name> <tag> <page> <prefix/suffix> - Create a tag; permission: tags.create
  13.  
  14. inventory:
  15.  # Inventory size (9-18-27-36-45-54)
  16.   size: 45
  17.   # Inventory name
  18.   name: "&eTags Selector &7(%page%/%maxpages%)"
  19.   maxpages: 1
  20.   # Should tags that aren't unlocked be displayed in inventory?
  21.   display-locked-tags: true
  22.  
  23. # Global variables, that can be used anywhere
  24. variables:
  25.  # %store%
  26.   store: "buy.myserver.com"
  27.  
  28. # Base items, these have a specific purpose.
  29. # Items:
  30. # * next-page - go to the next page
  31. # * previous-page - go to the previous page
  32. # * remove-tag - remove current tag
  33.  
  34. # Variables: %name%, %current-tag%
  35.  
  36. # You also can add any item that you want with any name
  37. # Names cannot repeat!
  38. plugin-items:
  39.   previous-page:
  40.     item:
  41.       type: ARROW
  42.       id: 0
  43.       force-glow: false
  44.     name: " &8« &7Previous page"
  45.     lore:
  46.      - '&7Click to go back one page.'
  47.     slot: 36
  48.   next-page:
  49.     item:
  50.       type: ARROW
  51.       id: 0
  52.       force-glow: false
  53.     name: "&7Next page &8»"
  54.     lore:
  55.      - '&7Click to go to the next page.'
  56.     slot: 44
  57.   remove-tag:
  58.     item:
  59.       type: BUCKET
  60.       id: 0
  61.       force-glow: false
  62.     name: " &7» &eClear your tags"
  63.     lore:
  64.      - '&7Click here to remove equipped tags.'
  65.     slot: 18
  66.   information:
  67.     item:
  68.       type: SKULL_ITEM
  69.       id: 3
  70.       owner: '%name%'
  71.       force-glow: false
  72.     name: "&7What are &eTags"
  73.     lore:
  74.      - '&7Tags are short exclusive catchy phares'
  75.       - '&7that are added before your name in chat.'
  76.       - '&7These can let you be distinguished in'
  77.       - '&7public chat from everyone else.'
  78.       - ''
  79.       - '&eUnlock tags at &c%store%'
  80.     slot: 40
  81.  
  82. # Placeholder items
  83. # These items serve no purpose other than decoration.
  84. placeholders:
  85.   item:
  86.     type: STAINED_GLASS_PANE
  87.     id: 15
  88.     force-glow: false
  89.   name: " "
  90.   lore: []
  91.   slots:
  92.     - 0
  93.     - 1
  94.     - 2
  95.     - 3
  96.     - 4
  97.     - 5
  98.     - 6
  99.     - 7
  100.     - 8
  101.     - 9
  102.     - 17
  103.     - 26
  104.     - 27
  105.     - 35
  106.     - 37
  107.     - 38
  108.     - 39
  109.     - 41
  110.     - 42
  111.     - 43
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement