Advertisement
Guest User

Fixed

a guest
Aug 27th, 2015
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.70 KB | None | 0 0
  1. ######################
  2. #+                  +#
  3. #   MENU SETTINGS    #
  4. #+                  +#
  5. ######################
  6.  
  7. menu-settings:
  8.   # name - appears as the title - REQUIRED
  9.   name: '&5&lF&f&lu&5&ln &f&lM&5&le&f&ln&5&lu'
  10.  
  11.   # rows - the number of rows of the chest - REQUIRED
  12.   rows: 3
  13.  
  14.   # command - OPTIONAL (you can remove this or set it to '')
  15.   # Bind multiple commands using ; (command: 'menu; m; me')
  16.   command: 'menu'
  17.  
  18.   # auto-refresh - OPTIONAL
  19.   # How frequently the menu will be refreshed, in seconds.
  20.   # Useful if you have variables in items' descriptions.
  21.   auto-refresh: 5
  22.  
  23.   # This command command will be execute when the menu is opened.
  24.   # Supports all the icon command types.
  25.   open-action: 'sound: note pling; tell: &eYou opened the example menu.'
  26.  
  27.   # open-with-item - OPTIONAL
  28.   # The menu will open only right-clicking with orange wool [35:1]
  29.   open-with-item:
  30.     id: wool:1
  31.     left-click: false
  32.     right-click: true
  33.  
  34.  
  35. ######################
  36. #+                  +#
  37. #       ITEMS        #
  38. #+                  +#
  39. ######################
  40.  
  41.  
  42. paintball:
  43.   COMMAND: 'pb join'
  44.   NAME: '&6&lP&4&la&6&li&4&ln&6&lt&4&lb&6&La&4&ll&6&ll&4&l!'
  45.   LORE:
  46.    - '&6Takes you to Paintball'
  47.     - '&5&lDo /pb leave when done!'
  48.   ID: 417
  49.   POSITION-X: 1
  50.   POSITION-Y: 1
  51.  
  52.  
  53. spleef:
  54.   COMMAND: 'spleef join spleef_arena'
  55.   NAME: '&aWool with additional data'
  56.   LORE:
  57.    - '&f&lS&b&lp&f&ll&b&le&f&le&b&lf'
  58.     - '&9 Do &f/spleef leave &9to leave :)'
  59.   ID: 277
  60.   POSITION-X: 2
  61.   POSITION-Y: 1
  62.  
  63.  
  64. parkour:
  65.   COMMAND: 'warp parkour'
  66.   NAME: '&f&lParkour'
  67.   LORE:
  68.    - '&3Parkour Island!'
  69.     - '&9 Have fun =D'
  70.   ID: 260
  71.   DATA-VALUE: 1
  72.   AMOUNT: 1
  73.   POSITION-X: 3
  74.   POSITION-Y: 1
  75.  
  76.  
  77. test-from-console:
  78.   COMMAND: 'console: say Hello {player}!'
  79.   NAME: '&cRuns command from the console.'
  80.   LORE:
  81.    - 'It broadcasts your name with the command /say.'
  82.   ID: command block
  83.   POSITION-X: 4
  84.   POSITION-Y: 1
  85.  
  86.  
  87. test-as-op:
  88.   COMMAND: 'op: say Hello world!'
  89.   NAME: '&cRuns command as OP.'
  90.   LORE:
  91.    - 'Be careful with this type of commands.'
  92.     - 'It will ignore nearly all the permissions.'
  93.   ID: command block
  94.   POSITION-X: 5
  95.   POSITION-Y: 1
  96.  
  97.  
  98. test-with-placeholder:
  99.   COMMAND: 'tell: &9Online players: &f{online}/{max_players}; tell: &9Your name: &f{player}; tell: &9The world you are in: &f{world}; tell: &9Money: &f{money}'
  100.   NAME: '&6This message contains some placeholders'
  101.   LORE:
  102.    - 'Placeholders will be replaced when the item'
  103.     - 'is clicked.'
  104.   ID: empty map
  105.   POSITION-X: 6
  106.   POSITION-Y: 1
  107.  
  108.  
  109. economy-give:
  110.   COMMAND: 'tell: &aYou have paid 50$ for this command!; give: gold_ingot'
  111.   NAME: '&eEconomy & Give command'
  112.   LORE:
  113.    - 'This command will be executed'
  114.     - 'only if you have at least 50$!'
  115.     - 'It gives you a gold ingot.'
  116.   ID: gold ingot
  117.   PRICE: 50
  118.   POSITION-X: 7
  119.   POSITION-Y: 1
  120.  
  121.  
  122. economy-take:
  123.   REQUIRED-ITEM: 'gold_ingot'
  124.   COMMAND: 'tell: &aYou have been paid 50$; givemoney: 50'
  125.   NAME: '&eEconomy & Required item'
  126.   LORE:
  127.    - 'This command is the opposite of the previous.'
  128.     - 'It will take you a gold ingot and give you $50.'
  129.   ID: gold ingot
  130.   POSITION-X: 8
  131.   POSITION-Y: 1
  132.  
  133.  
  134. will-not-close:
  135.   NAME: '&2Info'
  136.   LORE:
  137.    - '&7The menu will not close'
  138.     - '&7clicking on this item.'
  139.   ID: sign
  140.   KEEP-OPEN: true
  141.   POSITION-X: 9
  142.   POSITION-Y: 1
  143.  
  144.  
  145. a-talking-head:
  146.   COMMAND: 'tell: This is a simple message, without using commands!'
  147.   NAME: '&3Tells you something.'
  148.   LORE:
  149.    - '&7It tells you something without commands.'
  150.   ID: head
  151.   DATA-VALUE: 3
  152.   POSITION-X: 1
  153.   POSITION-Y: 2
  154.  
  155.  
  156. a-talking-head:
  157.   COMMAND: 'tell: This is a simple message, without using commands!'
  158.   NAME: '&3Tells you something.'
  159.   LORE:
  160.    - '&7It tells you something without commands.'
  161.   ID: head
  162.   DATA-VALUE: 3
  163.   POSITION-X: 1
  164.   POSITION-Y: 2
  165.  
  166.  
  167. test-multiple-command:
  168.   COMMAND: 'console: Say Did you know that...; console: say you can run multiple commands?;'
  169.   NAME: '&aMultiple commands'
  170.   LORE:
  171.    - 'Example of multiple commands.'
  172.   ID: golden apple
  173.   POSITION-X: 2
  174.   POSITION-Y: 2
  175.  
  176.  
  177. permission:
  178.   COMMAND: 'tell: &a[v] You have the correct permission!'
  179.   NAME: '&8Permission test'
  180.   LORE:
  181.    - 'To use this item, you need the'
  182.     - 'permission "chestcommands.test".'
  183.     - 'Otherwise, a configurable error'
  184.     - 'message will be displayed.'
  185.   ID: iron bar
  186.   POSITION-X: 3
  187.   POSITION-Y: 2
  188.   PERMISSION: chestcommands.test
  189.   PERMISSION-MESSAGE: 'You don''t have the correct permission!'
  190.  
  191.  
  192. menu-close-no-commands-no-lore:
  193.   NAME: '&6Close the menu'
  194.   ID: redstone lamp
  195.   LORE:
  196.    - 'Create an item without command,'
  197.     - 'the GUI will just close.'
  198.   POSITION-X: 9
  199.   POSITION-Y: 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement