Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.07 KB | None | 0 0
  1. #Plugin: ServerMarket
  2. #Author: Qifi (elving21)
  3. lang:
  4. prefix: "&f[&aServerMarket&f] "
  5. currency: "Coins"
  6. noperm: "You dont have required permission! &c(%perm%)"
  7. gui: "&cServer Market"
  8. gui_returned: "&cReturned Items"
  9. buynot: "&a%buyer% &fhas bought an item from you for &a%amount% %currency%&f. &a(%item_name%)"
  10. nomoney: "You dont have required amount of money (&a%money% %currency%&f) to buy a &a%item_name% &ffrom &a%seller%"
  11. remove: "You have removed an item from makret! You can get it inside your returned items!"
  12. doesnotexist: "This item has been already bought by someone or removed."
  13. nospace: "You dont have a free space in your inventory! :("
  14. get: "You have recieved an item from Returned Inventory!"
  15. next: "&cNext Page"
  16. previous: "&cPrevious Page"
  17. priceminmax: "The price has to be in between &a%min% &fand &a%max%"
  18. noitem: "You dont hold anyhting!"
  19. world: "ServerMarket is disabled in this world!"
  20. forbidenitem: "You cannot list this item!"
  21. opremove: "You have force removed an item from market, it has been sent back to owner!"
  22. reload: "Config has been reloaded."
  23. max_listing_limit: "You are allowed to have only &c%max% Listings &flisted at once!"
  24. returned:
  25. name: "&6Returned/Expired Items"
  26. lore: "&fYou can get your expired%nl%&for returned items here"
  27. info:
  28. name: "&cHow to create a Listing?"
  29. lore: "&fYou can create a listing%nl%&fby writing a &a/market add <cost> &fwhile%nl%&fholding a desired item."
  30. market:
  31. - ""
  32. - "&fPrice: &a%price% %currency%"
  33. - "&fSeller: &a%seller%"
  34. - "&a%h% &fHours &a%min% &fMinutes ago"
  35. book:
  36. name: "Market Report"
  37. author: "Server"
  38. inside:
  39. - '&0&lMarket Report:'
  40. - ''
  41. - '&0Item: &2%item_name%'
  42. - '&0Price: &c%price%'
  43. - '&0Return: &c%return%'
  44. - '&0Buyer: &c%buyer%'
  45. confirmitem:
  46. name: "&aConfirmation"
  47. lore:
  48. - "&fClick here to confirm a purchase."
  49. menu:
  50. - ' &a&l[&fServer Market &a&l]'
  51. - '/market &9- Opens up market.'
  52. - '/market add <price> &9- Adds an item to the market.'
  53. - '/market returned &9- Opens up returned inventory.'
  54. - '/market reload &9- Reload config.'
  55.  
  56. database:
  57. #Type can be: sql/mysql
  58. #if you choose mysql dont forget to p
  59. Type: sql
  60. Port: 3306
  61. Host: localhost
  62. Database: Your_Database
  63. Username: Your_Username
  64. Pass: Your_Password
  65.  
  66. settings:
  67. limits:
  68. #Minimum and maximum price users are allowed to list their items for
  69. #Would suggest to set to anything above zero.
  70. min: 1.0
  71. #set to 0.0 if you dont want to have any limit
  72. max: 5000000.0
  73. maxlistings:
  74. #Group name
  75. Admins:
  76. #Maximum number of listings to be allowed for a specific group
  77. max: 100
  78. Mod:
  79. max: 20
  80. #If group is not found this setting will be used
  81. default:
  82. max: 10
  83. #Income Tax value = how much a seller will get when someone buys his listing? 0.15 means he will get only 85% out of the sell price.
  84. #set to 0.0 to disable tax (default: 15%)
  85. tax: 0.15
  86. #When listing should expire? (in seconds) Default: 2 days
  87. expire: 172800
  88. #Do you want to give seller a book which contains all information about the sale, when they sell an item/s
  89. give_book_on_sell: true
  90. #Sign to open a market
  91. sign:
  92. #First line specifies what u will have to write in order to generate the rest of the sign
  93. #If you dont need all lines just leave them blank
  94. line1: '&a[ServerMarket]'
  95. line2: '&f&lOpen'
  96. line3: ''
  97. line4: ''
  98. #In which worlds Server Market should be disabled?
  99. disabledworlds:
  100. - "test"
  101. - "another_world"
  102. restricteditems:
  103. #If item id will be equal to something from that list it wont be allowed to be sold on the market
  104. ids:
  105. - 33
  106. - 92
  107. #If a name of an item will contain something from that list it wont be allowed to be sold on the market
  108. names:
  109. - "Custom Sword"
  110. - "&aColored Sword"
  111. #If a lore of an item will contain something from that list it wont be allowed to be sold on the market
  112. lore:
  113. - "Item cannot be sold on market"
  114. - "Special item"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement