Advertisement
Guest User

Untitled

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