Advertisement
woutwoot

IFS config file

Apr 15th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.22 KB | None | 0 0
  1. #ItemFrameShops config file. Information about a setting can be found above the setting using a comment like this.
  2. #More information can be found at: http://www.spigotmc.org/resources/itemframeshops.4667/
  3. #If you have a problem, please use this page: http://wwx.be/itemframeshops/problem.php
  4. #If you are going to set up prices, this page might come in handy: http://wwx.be/itemframeshops/
  5. #Thank you for buying my plugin, I hope you enjoy using it!
  6. plugin:
  7.  # Change this to change how the plugin messages look in chat.
  8.   tag: '&4[IFS]: &e'
  9.   # Set this to true to enable logging. The plugin will create a logs.txt in the plugin folder.
  10.   logging: true
  11.   # Can enable or disable update checks.
  12.   checkForUpdate: true
  13.   # Automatically save shops every 15 minutes?
  14.   autoSave: true
  15.   # Experimental setting.
  16.   # Set this to true to sync prices with existing shops when you create new ones.
  17.   synchronizeShops: false
  18.   # Set to true if you want the shop menu to stay open when a "button" was clicked.
  19.   keepShopMenuOpen: false
  20. prices:
  21.  # All newly created shop prices will be multiplied by this number.
  22.   priceMultiplier: 1.0
  23.   # Buy price * this number = Sell price
  24.   sellFactor: 0.8
  25.   # The default price shops will use when they can not load or calculate a price.
  26.   defaultPrice: 20.0
  27.   # The next two settings are for discounts.
  28.   # Value is in percent, must be between 1 and 99
  29.   discountPercent32: 2
  30.   discountPercent64: 4
  31.   # Set this to true to show large numbers as 100k or 20M, ...
  32.   convertLargeNumbers: false
  33. inventory:
  34.   misc:
  35.    # Use this to change the shop title. This will use extra server bandwidth!
  36.     # Colors are not supported for 1.8.x
  37.     shopMenuTitle: default
  38.     # Set this to false if you don't want to allow selling stacks for unstackable items.
  39.     show3264forUnstackable: true
  40.     # Set to true if you do not want to show an item when a feature is disabled.
  41.     hideDisabledItem: false
  42.     # Set to true if you do not want to show the preview item.
  43.     hidePreviewItem: false
  44.     # Set to true if you want the buy/sell buttons to be the same item as the item being sold.
  45.     useItemAsIcon: false
  46.     # Set to true to disable the sell all button.
  47.     disableSellAll: false
  48.     # Set to true to disable the fill inventory button.
  49.     disableBuyAll: false
  50.     # Change the item that is being used for buy/sell buttons.
  51.     # A list of materials can be found here: http://wwx.be/itemframeshops/materials.php Use the "Bukkit Material"
  52.     shopIconsMaterial: GOLD_INGOT
  53.     # Change the item that is being used for "disabled" icons.
  54.     # A list of materials can be found here: http://wwx.be/itemframeshops/materials.php Use the "Bukkit Material"
  55.     disabledIconMaterial: BARRIER
  56.   # Change names and lores for buy icons. Use ; for a new line.
  57.   buy:
  58.     nameBuy1: Buy 1
  59.     nameBuy32: Buy 32
  60.     nameBuy64: Buy 64
  61.     nameBuyAll: Fill inventory
  62.     loreBuy1: 'Buy just 1 from this shop;&6Price: {price}'
  63.     loreBuy32: 'Buy half a stack from this shop;&6Price: {price}'
  64.     loreBuy64: 'Buy a stack from this shop;&6Price: {price}'
  65.     loreBuyAll: 'Fill your inventory;&6Total price: {price}'
  66.     loreDiscount32: 'Buy half a stack from this shop;&6Price: {price};&a- {discount}%
  67.       discount;&6Total: {total}'
  68.     loreDiscount64: 'Buy a stack from this shop;&6Price: {price};&a- {discount}% discount;&6Total:
  69.       {total}'
  70.   # Change names and lores for sell icons. Use ; for a new line.
  71.   sell:
  72.     nameSell1: Sell 1
  73.     nameSell32: Sell 32
  74.     nameSell64: Sell 64
  75.     nameSellAll: Sell All
  76.     loreSell1: 'Sell just 1 to this shop;&6Price: {price}'
  77.     loreSell32: 'Sell half a stack to this shop;&6Price: {price}'
  78.     loreSell64: 'Sell a stack to this shop;&6Price: {price}'
  79.     loreSellAll: 'Sell all to this shop;&6Price: {price}'
  80.   # Change names and lores for disabled icons. Use ; for a new line.
  81.   disabled:
  82.     nameDisabled: '&4DISABLED'
  83.     loreDisabled: This feature is disabled for this shop.
  84.   # Do not change these numbers!
  85.   # They are used by the plugin for the /ifs layout command.
  86.   layout:
  87.     sell1slot: 8
  88.     sell32slot: 7
  89.     sell64slot: 6
  90.     sellAllSlot: 14
  91.     buy1slot: 0
  92.     buy32slot: 1
  93.     buy64slot: 2
  94.     buyAllSlot: 12
  95.     previewSlot: 4
  96.     inventorySize: 18
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement