Advertisement
TheJavaHacker

TagsGUI Default Config.yml

Jul 26th, 2018
1,083
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.45 KB | None | 0 0
  1. # -----------------------------------------------------------------------------------#
  2. # TagsGUI originally by AthenaDev, updated by TheJavaHacker                          #
  3. #                                                                                    #
  4. # Configuration Guidelines:                                                          #
  5. # - %tag% may be used to represent a tag.                                            #
  6. # - %page% may be used to represent a current page. (COMING SOON)                    #
  7. # - %max_pages% may be used to represent the maximum amount of pages. (COMING SOON)  #
  8. # - Pages start at 0! Page 1 would be 0 in the "page" key under a tag.               #
  9. #                                                                                    #
  10. # -----------------------------------------------------------------------------------#
  11.  
  12. # Prefix for all messages (see language.yml)
  13. prefix: '&6&lTagsGUI &8»&7'
  14.  
  15. # Inventory Title
  16. title: '&6&lTags &f(&7%page%&f/&7%maxpages%&f)'
  17.  
  18. # Maximum amount of pages
  19. maxPages: 2
  20.  
  21. # Tags Configuration
  22. # "type" MUST be 'prefix' or 'suffix'
  23. tags:
  24.   tag1:
  25.     page: 0
  26.     itemId: '377:0'
  27.     name: '&4&lSavage'
  28.     layout: '&8[&4Savage&8] '
  29.     slot: 20
  30.     permission: 'tags.savage'
  31.     type: 'prefix'
  32.     lore:
  33.      - '&c&oA tag for only the most savage people!'
  34.       - '&7Click here to activate the &4SAVAGE &7prefix!'
  35.     noPermissionId: '160:14'
  36.     noPermissionLore:
  37.      - '&c&oYou do not have permission to use this tag!'
  38.       - '&7&oBuy it on our store! mycoolstore.com'
  39.   tag2:
  40.     page: 1
  41.     itemId: '264:0'
  42.     name: '&2&lMoney'
  43.     layout: ' &8[&2&l$$&8]'
  44.     slot: 20
  45.     permission: 'tags.money'
  46.     type: 'suffix'
  47.     lore:
  48.      - '&a&oA small loan of a million dollars..'
  49.       - '&7Click here to activate the &2MONEY &7suffix!'
  50.     noPermissionId: '160:14'
  51.     noPermissionLore:
  52.      - '&c&oYou do not have permission to use this tag!'
  53.       - '&7&oBuy it on our store! mycoolstore.com'
  54.  
  55. # Sounds - Modify only the versions you're going to use.
  56. # 1.7/1.8 Sounds
  57. one_point_eight:
  58.   sound_select_tag: 'NOTE_PLING'
  59.   sound_no_permission: 'VILLAGER_NO'
  60.   sound_already_selected: 'VILLAGER_NO'
  61.   sound_remove_tags: 'CHEST_CLOSE'
  62.   sound_open: 'CHEST_OPEN'
  63.  
  64. # 1.9/1.10/1.11 Sounds
  65. one_point_nine:
  66.   sound_select_tag: 'BLOCK_NOTE_PLING'
  67.   sound_no_permission: 'ENTITY_VILLAGER_NO'
  68.   sound_already_selected: 'ENTITY_VILLAGER_NO'
  69.   sound_remove_tags: 'BLOCK_CHEST_CLOSE'
  70.   sound_open: 'BLOCK_CHEST_OPEN'
  71.  
  72. # If this is set to false, make sure there is a valid border_animation_name specified.
  73. # Setting it to false will make the border set to the first animation frame.
  74. border_animation: true
  75.  
  76. # The name of the animation in the animation.yml
  77. border_animation_name: 'default'
  78.  
  79. # The speed in seconds the border changes
  80. border_speed: 0.2
  81.  
  82. # Slots that will not be used as a tag slot. This means that these slots will be used for the border animation
  83. # Split them by ', ' --> 4, 24, 12 etc.
  84. # Make sure not to enter the slot numbers of the remove tag item, information item, or anything else like that.
  85. animation_slots: '0, 1, 2, 3, 4, 5, 6, 7, 8, 17, 26, 35, 44, 50, 48, 47, 51, 36, 27, 18, 9, 53'
  86.  
  87. # These items have a specific function in the GUI.
  88. # (i.e remove_tag will remove the tags the player is using)
  89. # These items are not required. Set slot to -1 if it does not need to be used
  90. # Do not rename the sections! (i.e remove_tag, information, etc..)
  91. defaultItems:
  92.    remove_tag:
  93.       id: '46'
  94.       name: '&c&lRemove Tags'
  95.       description:
  96.         - '&7Click here to &cremove &7your current tag(s)!'
  97.       slot: '45, 53'
  98.    information:
  99.       id: '421'
  100.       name: '&6&lInformation'
  101.       description:
  102.         - '&6&m----------------------------------'
  103.          - '&7Want more tags? Visit our store!'
  104.          - '&7https://mycoolexamplestore.com'
  105.          - ''
  106.          - '&7Suffix using: &c%SUFFIX%'
  107.          - '&7Prefix using: &c%PREFIX%'
  108.          - '&6&m----------------------------------'
  109.       slot: '49'
  110.    next_page:
  111.       id: '35:5'
  112.       name: '&a&lNext Page'
  113.       description:
  114.         - '&7&oClick to go to the &a&onext page&7&o.'
  115.       slot: '52'
  116.    previous_page:
  117.       id: '35:14'
  118.       name: '&c&lPrevious Page'
  119.       description:
  120.         - '&7&oClick to go to the &c&oprevious page&7&o.'
  121.       slot: '46'
  122.  
  123. #Choose if remove tag button should remove Prefix, or Suffix.
  124. remove_tag:
  125.   restorePrefix: true
  126.   restoreSuffix: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement