Advertisement
Guest User

config

a guest
Jun 7th, 2013
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. #Tax amount (decimal) - Eg, P1 buys $50 worth of stuff from P2. Therefore, P1 loses $50, P2 gains $(1-0.05)*50, and tax-account gains $(0.05)*50.
  2. tax: 0.05
  3. #The fake player who money from taxing people goes to
  4. tax-account: javierAizpuru
  5.  
  6. #Should we log transactions/creations to Bukkit\Plugins\QuickShop\qs.log?
  7. log-actions: true
  8.  
  9.  
  10. #Advanced. This chooses which economy to hook into. If it fails, it will fall back to trying vault. Spelling must be exact. Case insensitive.
  11. # Vault - Will hook into anything vault can hook into (Vault is required for this to work)
  12. # Satoshis
  13. # Want yours added? Contact me (Netherfoam) on dev.bukkit.org
  14. economy: Vault
  15.  
  16. database:
  17. mysql: true
  18. host: localhost
  19. port: 3306
  20. database: tiendas
  21. user: root
  22. password: 201027
  23.  
  24. shop:
  25. #Cost to make a stall
  26. cost: 1000
  27. #Should we refund when their shops are deleted/removed/broken?
  28. refund: false
  29.  
  30. #Is there a fee for changing prices on a shop (Help deter endless undercutting)
  31. price-change-requires-fee: true
  32. #If price changes require a fee, how much is the fee
  33. fee-for-price-change: 500
  34.  
  35. #Should we try and lock their shops from other players, so people can't steal from them?
  36. lock: true
  37. #Should we require players be sneaking to create and use shops?
  38. sneak-only: false
  39. #Should we automatically create the sign for the chest?
  40. auto-sign: true
  41. #If a player owns an unlimited shop, should they receive the cash from it or not?
  42. #If you buy from YOUR unlimited shop, you will NEVER be charged $$, regardless of this setting
  43. pay-unlimited-shop-owners: true
  44. #Should we place display items on the chests?
  45. display-items: false
  46. #Should we place item frames on chests?
  47. frame-items: true
  48. #When someone uses /qs find <item>, how far should we search in blocks?
  49. #This command lets users shop quickly without wasting time searching
  50. #Settings > 100 WILL cause lag. Don't do it, or don't cry when your server lags.
  51. find-distance: 45
  52.  
  53. #List of items to disallow selling of. Anyone with quickshop.bypass.<itemID> can bypass it
  54. blacklist:
  55. - 7 #Bedrock
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement