Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. #=
  2. # Global Shop
  3. # - This file controls the global overlord shop.
  4. #=
  5. # Owner: The owner of the shop, if its not unlimited the amounts get deposited/withdrawn from them.
  6. # Creator: The person who created the shop, they manage/control it just like the owner.
  7. # Position: The location of the shop, x,y,z positions.
  8. # Unlimited: Is the cashflow unlimited? If this is false, money gets deducted on sales from the owner.
  9. #=
  10. owner=Unknown
  11. creator=Unknown
  12. position=0,0,0,
  13. unlimited=true
  14.  
  15. #=
  16. # Items
  17. # - Setup:
  18. # [id]=[buy];[per_bundle],[sell];[per_bundle],stock
  19. # - Example:
  20. # 1=100;64,1;64,1000
  21. #
  22. # To disable purchase / selling of an item, set the amount of that column to "0":
  23. # - Example:
  24. # 1=0,1;64,0
  25. #
  26. # This will allow smooth stone to be sold for 1 Coin per stack/bundle (64 Blocks)
  27. # but will not be able to be purchased.
  28. #=
  29.  
  30. # Smooth Stone can be bought at 100 Coin (64 in a bundle), sold for 1 Coin per bundle of 64 Blocks, and has a starting stock of 1,000
  31. #1=100;64,1;64,1000
  32.  
  33. # Grass can be bought for 10 Coin, cannot be sold, has a stock of 1,000.
  34. #2=10,0,1000
  35.  
  36. dirt=64;10,64;3,128
  37. cobblestone=64;10,64;5,128
  38. sand=64;10,64;5,128
  39. gravel=64;10,64;5,128
  40. gold-ore=20;1,10;1,128
  41. iron-ore=64;75,64;50,128
  42. coal-ore=64;50,64;30,128
  43. log=64;35,64;20,128
  44. gray-cloth=64;30,64;20,128
  45. mossy-cobblestone=64;30,64;15,64
  46. cactus=64;30,64;20,128
  47. reed=64;40,64;25,128
  48. pumpkin=45;1,15;1,10
  49. red-mossy-cobblestone=64;30,64;20,128
  50. coal=64;50,64;30,128
  51. diamond=200;1,100;1,2
  52. feather=64;30,64;20,0
  53. wheat=64;30,64;20,0
  54. flint=64;25,64;15,128
  55. redstone=10;1,5;1,10
  56. leather=64;35,64;20,64
  57. clay-balls=64;65,64;15,0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement