Advertisement
lcatania

Untitled

Jan 19th, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.62 KB | None | 0 0
  1. ## Configuration for BeastTokens by MrAxe
  2.  
  3. ## Configuration of /token shop
  4. ##   '1': - Slot number/space in /token shop. DO NOT have same number twice!
  5. ##       Item: DIAMOND_SWORD - Item that is shown in the inventory slot, you can use number for item name.
  6. ##       Data: 0 - Used for colored wool/glass/god apples (ex: 322:1). Normal items should have Data = 0.
  7. ##       Amount: 1 - Amount of item that is shown in /token shop (ex: a stack of diamonds = 64).
  8. ##       Price: 100 - Number of tokens needed to buy the item
  9. ##       DisplayName: '&b&lSuper Sword' - Name for item shown. Use ' ' to have it be the normal in-game name (ex: Diamond Sword)
  10. ##       Lore: '&cBest sword ever!' - Lore of the item shown. Use ' ' to have nothing.
  11. ##       Glow: true or false - To make item glow.
  12. ##       Commands: - Commands sent upon buying of an item. Can be multiple lines/commands, just follow format.
  13. ##           - 'give {player} 276 1 name:&b&lSuper_Sword'
  14. ##       rCommands: - Random Commands sent upon buying of an item. Can be multiple lines/commands, just follow format.
  15. ##           - 'give {player} 276 1 name:&b&lSuper_Sword'
  16. ##           - 'give {player} 300 1'
  17. ##       pCommands: - Player Commands will run command like a player to run command as OP add ;OP to end of your command.
  18. ##           - 'give {player} 276 1 name:&b&lSuper_Sword'
  19. ##           - 'give {player} 300 1;OP'
  20. ##       This above example and the command sent were created with the use of the plugin Essentials in mind.
  21. ##       You can use any type of commands from any plugins, you just have to adjust the config accordingly and follow
  22. ##       the proper format!
  23. Shop:
  24. ## Number of slots in /token shop
  25. ## HUGE NOTE: Number of slots must be a multiple of 9 (9/18/27/36/45/54)
  26. ## Additionally, YOU MUST have an item defined in "Shop" for each slot number in "NumberOfSlots".
  27. ## Otherwise, you will receive an error upon using /token shop <ShopName>!
  28.     NumberofSlots: 27
  29. ## This Title will display name of Inventory
  30.     Title: '&4&lEpic &b&lShop'
  31. ## This item will replace all empty Slots.
  32. ## If u don t want item  put Item: Air
  33.     NoItem:
  34.      Item: STAINED_GLASS_PANE
  35.      Data: 14
  36.      Glow: true
  37.      DisplayName: ''
  38.      Lore:
  39.      - ''
  40. ## Item in Shop
  41.     Items:
  42.      '11':
  43.        Item: Experience_Bottle
  44.        Data: 0
  45.        Glow: false
  46.        Amount: 1
  47.        DisplayName: ''
  48.        Price: 10
  49.        Lore:
  50.          - ''
  51.        Commands:
  52.         - 'give {player} Experience_Bottle 10'
  53.          - ''
  54.        rCommands:
  55.         - ''
  56.      '13':
  57.        Item: Emerald
  58.        Data: 0
  59.        Glow: false
  60.        Amount: 1
  61.        DisplayName: ''
  62.        Price: 3
  63.        Lore:
  64.          - ''
  65.        Commands:
  66.         - 'give {player} Emerald 1'
  67.          - ''
  68.        rCommands:
  69.         - ''
  70.      '15':
  71.        Item: Wither_Skeleton_Skull
  72.        Data: 0
  73.        Glow: false
  74.        Amount: 1
  75.        DisplayName: ''
  76.        Price: 3
  77.        Lore:
  78.          - ''
  79.        Commands:
  80.         - 'give {player} Wither_Skeleton_Skull 1'
  81.          - ''
  82.        rCommands:
  83.         - ''
  84.      '17':
  85.        Item: Potato
  86.        Data: 0
  87.        Glow: false
  88.        Amount: 1
  89.        DisplayName: ''
  90.        Price: 3
  91.        Lore:
  92.          - ''
  93.        Commands:
  94.         - 'give {player} Wither_Skeleton_Skull 1'
  95.          - ''
  96.        rCommands:
  97.         - ''
  98. ## Random command Example
  99.        rCommands:
  100.         - ''
  101.          - ''
  102.          - ''
  103. ## Run Command as player
  104.        pCommands:
  105.         - ''
  106. ## For 1.8.x or lower version use spawner numbers id  in Data:
  107.        Data: 0
  108. ## For 1.9.x or bigger version use EggType: Skeleton
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement