Advertisement
maozou

config

Dec 20th, 2018
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.50 KB | None | 0 0
  1. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  2. # Shopkeepers Config
  3. # Wiki: https://github.com/Shopkeepers/Shopkeepers-Wiki/wiki/Configuration
  4. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  5.  
  6. # The initial debugging state of the plugin.
  7. debug: false
  8.  
  9. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  10. # Shopkeeper Data
  11. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  12.  
  13. # The file encoding to use for the save file. If empty, your system's default
  14. # encoding will be used. If you have issues with the save file, such as special
  15. # characters not being saved correctly, try setting this option to 'UTF-8'.
  16. file-encoding: "UTF-8"
  17. # Whether the save file shall get written every time a shopkeeper was edited.
  18. # If disabled, saving will occur at 5 minute intervals and on plugin shutdown.
  19. # If you have a large server with many players and/or many shopkeepers, it
  20. # might be a good idea to disable this for performance reasons.
  21. save-instantly: true
  22. # Whether trades involving head items with custom textures get saved. Some
  23. # bukkit / spigot versions had issues with saving custom head items in the
  24. # past, which would result in corrupted save data.
  25. skip-custom-head-saving: true
  26.  
  27. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  28. # Plugin Compatibility
  29. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  30.  
  31. # Whether the plugin shall periodically verify that all shopkeepers that should
  32. # currently be spawned are actually present. This should only be enabled if you
  33. # have problems with shopkeepers disappearing.
  34. enable-spawn-verifier: false
  35. # If enabled, Shopkeepers tries to bypass other plugins which deny mob spawning
  36. # (ex. land protection plugins).
  37. bypass-spawn-blocking: true
  38. # If enabled, Shopkeepers tries to bypass other plugins which deny interaction
  39. # with the shopkeepers.
  40. bypass-shop-interaction-blocking: false
  41.  
  42. # If enabled, players will only be able to place shopkeepers where they have
  43. # permission from WorldGuard to build or where the 'allow-shop' flag is set.
  44. enable-world-guard-restrictions: false
  45. # If enabled (additionally to the enable-world-guard-restrictions setting),
  46. # players will only be able to place shopkeepers in regions where the
  47. # 'allow-shop' flag is set, but nowhere else. However, players will still require
  48. # chest access for shop setup to work. And in case they can't place chests in
  49. # the affected region, shop chests need to be pre-setup by someone else and the
  50. # require-chest-recently-placed setting needs to be disabled.
  51. require-world-guard-allow-shop-flag: false
  52. # If enabled, players will only be able to place shopkeepers in places that
  53. # have been designated as commercial areas by Towny.
  54. enable-towny-restrictions: false
  55.  
  56. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  57. # Shop Creation (and removal)
  58. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  59.  
  60. # The item type used to create player shops.
  61. shop-creation-item: MONSTER_EGG
  62. # The data value of the shop-creation item. -1 to ignore.
  63. shop-creation-item-data: 0
  64. # The display name of the shop-creation item. Empty to ignore.
  65. shop-creation-item-name: ""
  66. # The item lore of the shop-creation item. Empty to ignore.
  67. shop-creation-item-lore: []
  68. # The required spawn-egg mob type of the shop-creation item (if the item is a
  69. # spawn-egg). Empty to ignore, or invalid (ex. whitespace ' ') to only accept
  70. # empty spawn eggs (without any mob type assigned).
  71. shop-creation-item-spawn-egg-entity-type: "VILLAGER"
  72. # Whether to prevent normal usage of the shop-creation item. Players with the
  73. # bypass permission (usually admins) can bypass this.
  74. prevent-shop-creation-item-regular-usage: false
  75. # Whether clicking the delete button of a player shop gives the player the
  76. # shop-creation item back.
  77. deleting-player-shop-returns-creation-item: false
  78.  
  79. # Whether to allow creating player shops with the /shopkeeper command.
  80. create-player-shop-with-command: false
  81. # This enables compatibility with other plugins that might restrict chest
  82. # access.
  83. simulate-right-click-on-command: true
  84.  
  85. # Whether the selected chest must have been recently placed by the player
  86. # attempting to create the shopkeeper.
  87. require-chest-recently-placed: true
  88. # The maximum distance a player shopkeeper can be placed from its backing
  89. # chest. This cannot be set to a value greater than 50.
  90. max-chest-distance: 15
  91. # Whether to protect player shop chests from being broken. Usually it is
  92. # recommended to keep this enabled.
  93. protect-chests: true
  94. # Whether to delete player shopkeepers when their backing chest is broken.
  95. delete-shopkeeper-on-break-chest: false
  96.  
  97. # The default maximum number of shops a player can have. Set to 0 to allow any
  98. # number of shops.
  99. max-shops-per-player: 0
  100. # A list of permission nodes that can be used to explicitly set the maximum
  101. # number of shops a specific player or group of players can have. Use the
  102. # shopkeeper.maxshops.<count> permission node pattern to use this feature.
  103. max-shops-perm-options: 5,15,25
  104.  
  105. # If enabled (set to a value greater than 0), Shopkeepers will check for and
  106. # remove the shops of inactive players once every plugin start. This setting
  107. # determines how many days ago a player's last login has to be in order for the
  108. # player to be considered inactive.
  109. player-shopkeeper-inactive-days: 0
  110.  
  111. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  112. # Shop (Object) Types
  113. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  114.  
  115. # A list of mob types which can be used for shopkeepers. Adding new mob types
  116. # to the defaults here is unsupported, as some mob types might not properly
  117. # work and can cause all kinds of issues.
  118. enabled-living-shops:
  119. - VILLAGER
  120. - COW
  121. - MUSHROOM_COW
  122. - CITIZEN
  123. - SHEEP
  124. - PIG
  125. - CHICKEN
  126. - OCELOT
  127. - RABBIT
  128. - WOLF
  129. - SNOWMAN
  130. - IRON_GOLEM
  131. - POLAR_BEAR
  132. - SKELETON
  133. - STRAY
  134. - WITHER_SKELETON
  135. - SPIDER
  136. - CAVE_SPIDER
  137. - CREEPER
  138. - WITCH
  139. - ENDERMAN
  140. - ZOMBIE
  141. - ZOMBIE_VILLAGER
  142. - PIG_ZOMBIE
  143. - HUSK
  144. - GIANT
  145. - GHAST
  146. - SLIME
  147. - MAGMA_CUBE
  148. - SQUID
  149. - EVOKER
  150. - VEX
  151. - VINDICATOR
  152. - ILLUSIONER
  153. - PARROT
  154.  
  155. # Whether mob shopkeepers make sounds.
  156. silence-living-shop-entities: true
  157.  
  158. # Whether to show nameplates of mob shopkeepers.
  159. show-nameplates: true
  160. # Whether to always show nameplates. If disabled, nameplates will only be shown
  161. # when looking directly at the shopkeeper. Note: This might no longer work
  162. # since MC 1.8.
  163. always-show-nameplates: false
  164. # The prefix for nameplates (to help distinguish them from players).
  165. nameplate-prefix: "&a"
  166.  
  167. # Whether to allow citizen (npc) shops. Requires the plugin Citizens.
  168. enable-citizen-shops: false
  169.  
  170. # Whether to allow sign shops.
  171. enable-sign-shops: true
  172. # The first line of a sign shop.
  173. sign-shop-first-line: "[SHOP]"
  174.  
  175. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  176. # Naming
  177. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  178.  
  179. # A regular expression used to validate shopkeeper names. For detailed
  180. # information on the regular expression format see the java documentation:
  181. # https://docs.oracle.com/javase/9/docs/api/java/util/regex/Pattern.html
  182. # Here are a few examples:
  183. # * "[A-Za-z0-9 ]{3,25}": The default. Allows letters and numbers, from 3 to 25
  184. # characters long.
  185. # * "[A-Za-z0-9& ]{3,25}": Same as the default, but allows the ampersand
  186. # character which enables color codes.
  187. # * ".*": Allows everything.
  188. name-regex: "[A-Za-z0-9 ]{3,25}"
  189. # Whether player shops get named via item. This will hide the naming option
  190. # from the editor menu.
  191. naming-of-player-shops-via-item: false
  192. # Whether renaming of player npc (citizen) shopkeepers is allowed. By default
  193. # those shopkeepers will be named after the player who owns the shop.
  194. allow-renaming-of-player-npc-shops: false
  195.  
  196. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  197. # Editor Menu
  198. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  199.  
  200. # The window title of the shopkeeper editor menu.
  201. editor-title: "Shopkeeper Editor"
  202.  
  203. # The item type of the set-name button, and of the naming item (if enabled).
  204. name-item: NAME_TAG
  205. # The data value of the set-name button, and of the naming item. -1 to ignore.
  206. name-item-data: 0
  207. # The required item lore of the naming item. Empty to ignore.
  208. name-item-lore: []
  209.  
  210. # Whether the editor menu of player shops contains an options to open the
  211. # shop's chest. Note: This will replace the set-name option in the editor menu!
  212. enable-chest-option-on-player-shop: false
  213. # The item type of the open-chest button.
  214. chest-item: CHEST
  215. # The data value of the open-chest button.
  216. chest-item-data: 0
  217.  
  218. # The item type of the delete button.
  219. delete-item: BONE
  220. # The data value of the delete button item.
  221. delete-item-data: 0
  222.  
  223. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  224. # Non-shopkeeper villagers
  225. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  226.  
  227. # Whether to prevent trading with non-shopkeeper villagers.
  228. disable-other-villagers: false
  229. # Whether to block all regular non-shopkeeper villagers from spawning.
  230. block-villager-spawns: false
  231. # Whether non-shopkeeper villagers can be hired.
  232. hire-other-villagers: false
  233.  
  234. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  235. # Hiring
  236. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  237.  
  238. # The item type to use for the hire button in player shopkeepers that are for
  239. # sale, and for the hire-cost item when hiring non-shopkeeper villagers.
  240. hire-item: EMERALD
  241. # The required data value of the hire-cost item. -1 to ignore.
  242. hire-item-data: 0
  243. # The required item name of the hire-cost item. Empty to ignore.
  244. hire-item-name: ""
  245. # The required item lore of the hire-cost item. Empty to ignore.
  246. hire-item-lore: []
  247. # The amount of hire-cost items it costs to hire a non-shopkeeper villager.
  248. hire-other-villagers-costs: 1
  249. # The title of the hiring inventory window when hiring a player shopkeeper.
  250. for-hire-title: "For Hire"
  251. # Whether hiring a player shopkeeper also requires the permission to create
  252. # player shopkeepers of that type.
  253. hire-require-creation-permission: true
  254.  
  255. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  256. # Trading
  257. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  258.  
  259. # Whether to prevent players from trading with their own shopkeepers. Keeping
  260. # this enabled is recommended.
  261. prevent-trading-with-own-shop: true
  262. # With this enabled player shopkeepers don't trade while their owner is online.
  263. # This might be useful for role-playing servers, which wish to force players to
  264. # trade with each other directly while being online.
  265. prevent-trading-while-owner-is-online: false
  266. # Minecraft allows trading of not fully matching items in some situations
  267. # (ex. items with additional data are accepted in trades). With this enabled
  268. # Shopkeepers will always check that the traded items are fully matching and it
  269. # will prevent the trade once the player tries to pickup the item from the
  270. # trading result slot.
  271. use-strict-item-comparison: false
  272. # Whether all shopkeeper purchases shall be logged to csv files in the plugin
  273. # folder. Note: This might currently not properly work for admin shops, so
  274. # don't rely on the correctness of the logged purchases for those!
  275. enable-purchase-logging: false
  276.  
  277. # The percentage that should be removed from player shop earnings.
  278. tax-rate: 0
  279. # Whether to round up instead of down when calculating the tax of a player shop
  280. # transaction.
  281. tax-round-up: false
  282.  
  283. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  284. # Currencies
  285. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  286.  
  287. # The item type of the currency items used in player shops.
  288. currency-item: EMERALD
  289. # The data value of the currency item. -1 to ignore.
  290. currency-item-data: 0
  291. # The item name of the currency item. Empty to ignore.
  292. currency-item-name: ""
  293. # The item lore of the currency item. Empty to ignore.
  294. currency-item-lore: []
  295.  
  296. # The item type of the placeholder when a player has not set the cost for an
  297. # item.
  298. zero-currency-item: BARRIER
  299. # The data value of the zero-currency item.
  300. zero-currency-item-data: 0
  301. # The item name of the zero-currency item.
  302. zero-currency-item-name: ""
  303. # The item lore of the zero-currency item.
  304. zero-currency-item-lore: []
  305.  
  306. # The item type of a second, higher-value currency used in the second trading
  307. # slot of player shops. Set to 'AIR' to disable the second currency.
  308. high-currency-item: EMERALD_BLOCK
  309. # The data value of the second currency item. -1 to ignore.
  310. high-currency-item-data: 0
  311. # The item name of the second currency item. Empty to ignore.
  312. high-currency-item-name: ""
  313. # The item lore of the second currency item. Empty to ignore.
  314. high-currency-item-lore: []
  315.  
  316. # The value of the second currency, based on the first currency.
  317. high-currency-value: 9
  318. # The second currency will only be used if an item's cost is greater than this
  319. # value.
  320. high-currency-min-cost: 20
  321.  
  322. # The item type of the placeholder when a player has not set the second
  323. # currency cost for an item.
  324. high-zero-currency-item: BARRIER
  325. # The data value of the zero-second-currency item. -1 to ignore.
  326. high-zero-currency-item-data: 0
  327. # The item name of the zero-second-currency item. Empty to ignore.
  328. high-zero-currency-item-name: ""
  329. # The item lore of the zero-second-currency item. Empty to ignore.
  330. high-zero-currency-item-lore: []
  331.  
  332. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  333. # Messages
  334. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  335.  
  336. language: en
  337.  
  338. msg-creation-item-selected: |
  339. &aRight-click to select the shop type.
  340. &aSneak + right-click to select the object type.
  341. &aRight-click a chest to select it.
  342. &aThen right-click a block to place the shopkeeper.
  343.  
  344. msg-button-name: "&aSet Shop Name"
  345. msg-button-name-lore:
  346. - Lets you rename
  347. - your shopkeeper
  348. msg-button-chest: "&aView Chest Inventory"
  349. msg-button-chest-lore:
  350. - Lets you view the inventory
  351. - your shopkeeper is using
  352. msg-button-type: "&aChoose Appearance"
  353. msg-button-type-lore:
  354. - Changes the look
  355. - of your shopkeeper
  356. msg-button-delete: "&4Delete"
  357. msg-button-delete-lore:
  358. - Closes and removes
  359. - this shopkeeper
  360. msg-button-hire: "&aHire"
  361. msg-button-hire-lore:
  362. - Buy this shopkeeper
  363.  
  364. msg-trading-title-prefix: "&2"
  365. msg-trading-title-default: "Shopkeeper"
  366.  
  367. msg-selected-normal-shop: "&aNormal shopkeeper selected (sells items to players)."
  368. msg-selected-book-shop: "&aBook shopkeeper selected (sell books)."
  369. msg-selected-buy-shop: "&aBuying shopkeeper selected (buys items from players)."
  370. msg-selected-trade-shop: "&aTrading shopkeeper selected (trades items with players)."
  371.  
  372. msg-selected-living-shop: "&aYou selected: &f{type}"
  373. msg-selected-sign-shop: "&aYou selected: &fsign shop"
  374. msg-selected-citizen-shop: "&aYou selected: &fcitizen npc shop"
  375.  
  376. msg-selected-chest: "&aChest selected! Right click a block to place your shopkeeper."
  377. msg-must-select-chest: "&aYou must right-click a chest before placing your shopkeeper."
  378. msg-chest-too-far: "&aThe shopkeeper's chest is too far away!"
  379. msg-chest-not-placed: "&aYou must select a chest you have recently placed."
  380. msg-too-many-shops: "&aYou have too many shops."
  381. msg-shop-create-fail: "&aYou cannot create a shopkeeper there."
  382. msg-type-new-name: "&aPlease type the shop's name into the chat.\n &aType a dash (-) to remove the name."
  383. msg-name-set: "&aThe shop's name has been set!"
  384. msg-name-invalid: "&aThat name is not valid!"
  385. msg-unknown-shopkeeper: "&7No shopkeeper found with that name or id."
  386. msg-unknown-player: "&7No player found with that name."
  387. msg-unknow-shop-type: "&7Unknown shop type '{type}'."
  388. msg-shop-type-disabled: "&7The shop type '{type}' is disabled."
  389. msg-unknow-shop-object-type: "&7Unknown shop object type '{type}'."
  390. msg-shop-object-type-disabled: "&7The shop object type '{type}' is disabled."
  391. msg-must-target-chest: "&7You have to target a chest."
  392. msg-unused-chest: "&7No shopkeeper is using this chest."
  393. msg-not-owner: "&7You are not the owner of this shopkeeper."
  394. msg-owner-set: "&aNew owner was set to &e{owner}"
  395.  
  396. msg-trade-perm-set: "&aThe shop's trading permission has been set!"
  397. msg-trade-perm-removed: "&aThe shop's trading permission has been removed!"
  398. msg-trade-perm-view: "&aThe shop's current trading permission is '&e{perm}&a'."
  399.  
  400. msg-must-hold-hire-item: "&7You have to hold the required hire item in your hand."
  401. msg-set-for-hire: "&aThe Shopkeeper was set for hire."
  402. msg-hired: "&aYou have hired this shopkeeper!"
  403. msg-missing-hire-perm: "&7You do not have the permission to hire shopkeepers."
  404. msg-cant-hire: "&7You cannot afford to hire this shopkeeper."
  405. msg-cant-hire-shop-type: "&7You do not have the permission to hire this type of shopkeeper."
  406. msg-villager-for-hire: "&aThe villager offered his services as a shopkeeper in exchange for &6{costs}x {hire-item}&a."
  407.  
  408. msg-missing-trade-perm: "&7You do not have the permission to trade with this shop."
  409. msg-missing-custom-trade-perm: "&7You do not have the permission to trade with this shop."
  410. msg-cant-trade-while-owner-online: "&7You cannot trade while the owner of this shop ('{owner}') is online."
  411.  
  412. msg-player-shop-created: |
  413. &aShopkeeper created!
  414. &aAdd items you want to sell to your chest, then
  415. &aright-click the shop while sneaking to modify costs.
  416. msg-book-shop-created: |
  417. &aShopkeeper created!
  418. &aAdd written books and blank books to your chest, then
  419. &aright-click the shop while sneaking to modify costs.
  420. msg-buy-shop-created: |
  421. &aShopkeeper created!
  422. &aAdd one of each item you want to buy to your chest, then
  423. &aright-click the shop while sneaking to modify costs.
  424. msg-trade-shop-created: |
  425. &aShopkeeper created!
  426. &aAdd items you want to sell to your chest, then
  427. &aright-click the shop while sneaking to modify costs.
  428. msg-admin-shop-created: |
  429. &aShopkeeper created!
  430. &aRight-click the shop while sneaking to modify trades.
  431.  
  432. msg-list-admin-shops-header: "&9There are &e{shopsCount} &9admin shops: &e(Page {page})"
  433. msg-list-player-shops-header: "&9Player '&e{player}&9' has &e{shopsCount} &9shops: &e(Page {page})"
  434. msg-list-shops-entry: " &e{shopSessionId}) &7{shopName}&r&8at &7({location})&8, type: &7{shopType}&8, object type: &7{objectType}"
  435.  
  436. msg-removed-admin-shops: "&e{shopsCount} &aadmin shops were removed."
  437. msg-removed-player-shops: "&e{shopsCount} &ashops of player '&e{player}&a' were removed."
  438. msg-removed-all-player-shops: "&aAll &e{shopsCount} &aplayer shops were removed."
  439.  
  440. msg-confirm-remove-admin-shops: "&cYou are about to irrevocable remove all admin shops!\n&7Please confirm this action by typing &6/shopkeepers confirm"
  441. msg-confirm-remove-own-shops: "&cYou are about to irrevocable remove all your shops!\n&7Please confirm this action by typing &6/shopkeepers confirm"
  442. msg-confirm-remove-player-shops: "&cYou are about to irrevocable remove all shops of player &6{player}&c!\n&7Please confirm this action by typing &6/shopkeepers confirm"
  443. msg-confirm-remove-all-player-shops: "&cYou are about to irrevocable remove all player shops of all players!\n&7Please confirm this action by typing &6/shopkeepers confirm"
  444.  
  445. msg-confirmation-expired: "&cConfirmation expired."
  446. msg-nothing-to-confirm: "&cThere is nothing to confirm currently."
  447.  
  448. msg-no-permission: "&cYou don't have the permission to do that."
  449.  
  450. msg-help-header: "&9***** &8[&6Shopkeepers Help&8] &9*****"
  451. msg-command-help: "&a/shopkeepers help &8- &7Shows this help page."
  452. msg-command-reload: "&a/shopkeepers reload &8- &7Reloads this plugin."
  453. msg-command-debug: "&a/shopkeepers debug &8- &7Toggles debug mode on and off."
  454. msg-command-list: "&a/shopkeepers list [player|admin] [page] &8- &7Lists all shops for the specified player, or all admin shops."
  455. msg-command-remove: "&a/shopkeepers remove [player|all|admin] &8- &7Removes all shops for the specified player, all players, or all admin shops."
  456. msg-command-remote: "&a/shopkeepers remote <shopName> &8- &7Remotely opens a shop."
  457. msg-command-transfer: "&a/shopkeepers transfer <newOwner> &8- &7Transfers the ownership of a shop."
  458. msg-command-settradeperm: "&a/shopkeepers setTradePerm <shopId> <tradePerm|-|?> &8- &7Sets, removes (-) or displays (?) the trading permission."
  459. msg-command-setforhire: "&a/shopkeepers setForHire &8- &7Sets one of your shops for sale."
  460. msg-command-shopkeeper: "&a/shopkeepers [shop type] [object type] &8- &7Creates a shop."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement