Advertisement
K2Rk1o

Untitled

Nov 24th, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.49 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: true
  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. - SHEEP
  123. - PIG
  124. - CHICKEN
  125. - OCELOT
  126. - RABBIT
  127. - WOLF
  128. - SNOWMAN
  129. - IRON_GOLEM
  130. - POLAR_BEAR
  131. - SKELETON
  132. - STRAY
  133. - WITHER_SKELETON
  134. - SPIDER
  135. - CAVE_SPIDER
  136. - CREEPER
  137. - WITCH
  138. - ENDERMAN
  139. - ZOMBIE
  140. - ZOMBIE_VILLAGER
  141. - PIG_ZOMBIE
  142. - HUSK
  143. - GIANT
  144. - GHAST
  145. - SLIME
  146. - MAGMA_CUBE
  147. - SQUID
  148. - EVOKER
  149. - VEX
  150. - VINDICATOR
  151. - ILLUSIONER
  152. - PARROT
  153.  
  154. # Whether mob shopkeepers make sounds.
  155. silence-living-shop-entities: true
  156.  
  157. # Whether to show nameplates of mob shopkeepers.
  158. show-nameplates: false
  159. # Whether to always show nameplates. If disabled, nameplates will only be shown
  160. # when looking directly at the shopkeeper. Note: This might no longer work
  161. # since MC 1.8.
  162. always-show-nameplates: false
  163. # The prefix for nameplates (to help distinguish them from players).
  164. nameplate-prefix: "&5"
  165.  
  166. # Whether to allow citizen (npc) shops. Requires the plugin Citizens.
  167. enable-citizen-shops: true
  168.  
  169. # Whether to allow sign shops.
  170. enable-sign-shops: true
  171. # The first line of a sign shop.
  172. sign-shop-first-line: "[SHOP]"
  173.  
  174. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  175. # Naming
  176. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  177.  
  178. # A regular expression used to validate shopkeeper names. For detailed
  179. # information on the regular expression format see the java documentation:
  180. # https://docs.oracle.com/javase/9/docs/api/java/util/regex/Pattern.html
  181. # Here are a few examples:
  182. # * "[A-Za-z0-9 ]{3,25}": The default. Allows letters and numbers, from 3 to 25
  183. # characters long.
  184. # * "[A-Za-z0-9& ]{3,25}": Same as the default, but allows the ampersand
  185. # character which enables color codes.
  186. # * ".*": Allows everything.
  187. name-regex: "[A-Za-z0-9 ]{3,25}"
  188. # Whether player shops get named via item. This will hide the naming option
  189. # from the editor menu.
  190. naming-of-player-shops-via-item: false
  191. # Whether renaming of player npc (citizen) shopkeepers is allowed. By default
  192. # those shopkeepers will be named after the player who owns the shop.
  193. allow-renaming-of-player-npc-shops: false
  194.  
  195. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  196. # Editor Menu
  197. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  198.  
  199. # The window title of the shopkeeper editor menu.
  200. editor-title: "Shopkeeper Editor"
  201.  
  202. # The item type of the set-name button, and of the naming item (if enabled).
  203. name-item: NAME_TAG
  204. # The data value of the set-name button, and of the naming item. -1 to ignore.
  205. name-item-data: 0
  206. # The required item lore of the naming item. Empty to ignore.
  207. name-item-lore: []
  208.  
  209. # Whether the editor menu of player shops contains an options to open the
  210. # shop's chest. Note: This will replace the set-name option in the editor menu!
  211. enable-chest-option-on-player-shop: false
  212. # The item type of the open-chest button.
  213. chest-item: CHEST
  214. # The data value of the open-chest button.
  215. chest-item-data: 0
  216.  
  217. # The item type of the delete button.
  218. delete-item: BONE
  219. # The data value of the delete button item.
  220. delete-item-data: 0
  221.  
  222. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  223. # Non-shopkeeper villagers
  224. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  225.  
  226. # Whether to prevent trading with non-shopkeeper villagers.
  227. disable-other-villagers: false
  228. # Whether to block all regular non-shopkeeper villagers from spawning.
  229. block-villager-spawns: false
  230. # Whether non-shopkeeper villagers can be hired.
  231. hire-other-villagers: false
  232.  
  233. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  234. # Hiring
  235. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  236.  
  237. # The item type to use for the hire button in player shopkeepers that are for
  238. # sale, and for the hire-cost item when hiring non-shopkeeper villagers.
  239. hire-item: EMERALD
  240. # The required data value of the hire-cost item. -1 to ignore.
  241. hire-item-data: 0
  242. # The required item name of the hire-cost item. Empty to ignore.
  243. hire-item-name: ""
  244. # The required item lore of the hire-cost item. Empty to ignore.
  245. hire-item-lore: []
  246. # The amount of hire-cost items it costs to hire a non-shopkeeper villager.
  247. hire-other-villagers-costs: 1
  248. # The title of the hiring inventory window when hiring a player shopkeeper.
  249. for-hire-title: "For Hire"
  250. # Whether hiring a player shopkeeper also requires the permission to create
  251. # player shopkeepers of that type.
  252. hire-require-creation-permission: true
  253.  
  254. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  255. # Trading
  256. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  257.  
  258. # Whether to prevent players from trading with their own shopkeepers. Keeping
  259. # this enabled is recommended.
  260. prevent-trading-with-own-shop: true
  261. # With this enabled player shopkeepers don't trade while their owner is online.
  262. # This might be useful for role-playing servers, which wish to force players to
  263. # trade with each other directly while being online.
  264. prevent-trading-while-owner-is-online: false
  265. # Minecraft allows trading of not fully matching items in some situations
  266. # (ex. items with additional data are accepted in trades). With this enabled
  267. # Shopkeepers will always check that the traded items are fully matching and it
  268. # will prevent the trade once the player tries to pickup the item from the
  269. # trading result slot.
  270. use-strict-item-comparison: false
  271. # Whether all shopkeeper purchases shall be logged to csv files in the plugin
  272. # folder. Note: This might currently not properly work for admin shops, so
  273. # don't rely on the correctness of the logged purchases for those!
  274. enable-purchase-logging: false
  275.  
  276. # The percentage that should be removed from player shop earnings.
  277. tax-rate: 0
  278. # Whether to round up instead of down when calculating the tax of a player shop
  279. # transaction.
  280. tax-round-up: false
  281.  
  282. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  283. # Currencies
  284. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  285.  
  286. # The item type of the currency items used in player shops.
  287. currency-item: EMERALD
  288. # The data value of the currency item. -1 to ignore.
  289. currency-item-data: 0
  290. # The item name of the currency item. Empty to ignore.
  291. currency-item-name: ""
  292. # The item lore of the currency item. Empty to ignore.
  293. currency-item-lore: []
  294.  
  295. # The item type of the placeholder when a player has not set the cost for an
  296. # item.
  297. zero-currency-item: BARRIER
  298. # The data value of the zero-currency item.
  299. zero-currency-item-data: 0
  300. # The item name of the zero-currency item.
  301. zero-currency-item-name: ""
  302. # The item lore of the zero-currency item.
  303. zero-currency-item-lore: []
  304.  
  305. # The item type of a second, higher-value currency used in the second trading
  306. # slot of player shops. Set to 'AIR' to disable the second currency.
  307. high-currency-item: EMERALD_BLOCK
  308. # The data value of the second currency item. -1 to ignore.
  309. high-currency-item-data: 0
  310. # The item name of the second currency item. Empty to ignore.
  311. high-currency-item-name: ""
  312. # The item lore of the second currency item. Empty to ignore.
  313. high-currency-item-lore: []
  314.  
  315. # The value of the second currency, based on the first currency.
  316. high-currency-value: 9
  317. # The second currency will only be used if an item's cost is greater than this
  318. # value.
  319. high-currency-min-cost: 20
  320.  
  321. # The item type of the placeholder when a player has not set the second
  322. # currency cost for an item.
  323. high-zero-currency-item: BARRIER
  324. # The data value of the zero-second-currency item. -1 to ignore.
  325. high-zero-currency-item-data: 0
  326. # The item name of the zero-second-currency item. Empty to ignore.
  327. high-zero-currency-item-name: ""
  328. # The item lore of the zero-second-currency item. Empty to ignore.
  329. high-zero-currency-item-lore: []
  330.  
  331. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  332. # Messages
  333. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  334.  
  335. language: en
  336.  
  337. msg-creation-item-selected: |
  338. &aRight-click to select the shop type.
  339. &aSneak + right-click to select the object type.
  340. &aRight-click a chest to select it.
  341. &aThen right-click a block to place the shopkeeper.
  342.  
  343. msg-button-name: "&aSet Shop Name"
  344. msg-button-name-lore:
  345. - Lets you rename
  346. - your shopkeeper
  347. msg-button-chest: "&aView Chest Inventory"
  348. msg-button-chest-lore:
  349. - Lets you view the inventory
  350. - your shopkeeper is using
  351. msg-button-type: "&aChoose Appearance"
  352. msg-button-type-lore:
  353. - Changes the look
  354. - of your shopkeeper
  355. msg-button-delete: "&4Delete"
  356. msg-button-delete-lore:
  357. - Closes and removes
  358. - this shopkeeper
  359. msg-button-hire: "&aHire"
  360. msg-button-hire-lore:
  361. - Buy this shopkeeper
  362.  
  363. msg-trading-title-prefix: "&5"
  364. msg-trading-title-default: "村人"
  365.  
  366. msg-selected-normal-shop: "&aNormal shopkeeper selected (sells items to players)."
  367. msg-selected-book-shop: "&aBook shopkeeper selected (sell books)."
  368. msg-selected-buy-shop: "&aBuying shopkeeper selected (buys items from players)."
  369. msg-selected-trade-shop: "&aTrading shopkeeper selected (trades items with players)."
  370.  
  371. msg-selected-living-shop: "&aYou selected: &f{type}"
  372. msg-selected-sign-shop: "&aYou selected: &fsign shop"
  373. msg-selected-citizen-shop: "&aYou selected: &fcitizen npc shop"
  374.  
  375. msg-selected-chest: "&aChest selected! Right click a block to place your shopkeeper."
  376. msg-must-select-chest: "&aYou must right-click a chest before placing your shopkeeper."
  377. msg-chest-too-far: "&aThe shopkeeper's chest is too far away!"
  378. msg-chest-not-placed: "&aYou must select a chest you have recently placed."
  379. msg-too-many-shops: "&aYou have too many shops."
  380. msg-shop-create-fail: "&aYou cannot create a shopkeeper there."
  381. msg-type-new-name: "&aPlease type the shop's name into the chat.\n &aType a dash (-) to remove the name."
  382. msg-name-set: "&aThe shop's name has been set!"
  383. msg-name-invalid: "&aThat name is not valid!"
  384. msg-unknown-shopkeeper: "&7No shopkeeper found with that name or id."
  385. msg-unknown-player: "&7No player found with that name."
  386. msg-unknow-shop-type: "&7Unknown shop type '{type}'."
  387. msg-shop-type-disabled: "&7The shop type '{type}' is disabled."
  388. msg-unknow-shop-object-type: "&7Unknown shop object type '{type}'."
  389. msg-shop-object-type-disabled: "&7The shop object type '{type}' is disabled."
  390. msg-must-target-chest: "&7You have to target a chest."
  391. msg-unused-chest: "&7No shopkeeper is using this chest."
  392. msg-not-owner: "&7You are not the owner of this shopkeeper."
  393. msg-owner-set: "&aNew owner was set to &e{owner}"
  394.  
  395. msg-trade-perm-set: "&aThe shop's trading permission has been set!"
  396. msg-trade-perm-removed: "&aThe shop's trading permission has been removed!"
  397. msg-trade-perm-view: "&aThe shop's current trading permission is '&e{perm}&a'."
  398.  
  399. msg-must-hold-hire-item: "&7You have to hold the required hire item in your hand."
  400. msg-set-for-hire: "&aThe Shopkeeper was set for hire."
  401. msg-hired: "&aYou have hired this shopkeeper!"
  402. msg-missing-hire-perm: "&7You do not have the permission to hire shopkeepers."
  403. msg-cant-hire: "&7You cannot afford to hire this shopkeeper."
  404. msg-cant-hire-shop-type: "&7You do not have the permission to hire this type of shopkeeper."
  405. msg-villager-for-hire: "&aThe villager offered his services as a shopkeeper in exchange for &6{costs}x {hire-item}&a."
  406.  
  407. msg-missing-trade-perm: "&7You do not have the permission to trade with this shop."
  408. msg-missing-custom-trade-perm: "&7You do not have the permission to trade with this shop."
  409. msg-cant-trade-while-owner-online: "&7You cannot trade while the owner of this shop ('{owner}') is online."
  410.  
  411. msg-player-shop-created: |
  412. &aShopkeeper created!
  413. &aAdd items you want to sell to your chest, then
  414. &aright-click the shop while sneaking to modify costs.
  415. msg-book-shop-created: |
  416. &aShopkeeper created!
  417. &aAdd written books and blank books to your chest, then
  418. &aright-click the shop while sneaking to modify costs.
  419. msg-buy-shop-created: |
  420. &aShopkeeper created!
  421. &aAdd one of each item you want to buy to your chest, then
  422. &aright-click the shop while sneaking to modify costs.
  423. msg-trade-shop-created: |
  424. &aShopkeeper created!
  425. &aAdd items you want to sell to your chest, then
  426. &aright-click the shop while sneaking to modify costs.
  427. msg-admin-shop-created: |
  428. &aShopkeeper created!
  429. &aRight-click the shop while sneaking to modify trades.
  430.  
  431. msg-list-admin-shops-header: "&9There are &e{shopsCount} &9admin shops: &e(Page {page})"
  432. msg-list-player-shops-header: "&9Player '&e{player}&9' has &e{shopsCount} &9shops: &e(Page {page})"
  433. msg-list-shops-entry: " &e{shopSessionId}) &7{shopName}&r&8at &7({location})&8, type: &7{shopType}&8, object type: &7{objectType}"
  434.  
  435. msg-removed-admin-shops: "&e{shopsCount} &aadmin shops were removed."
  436. msg-removed-player-shops: "&e{shopsCount} &ashops of player '&e{player}&a' were removed."
  437. msg-removed-all-player-shops: "&aAll &e{shopsCount} &aplayer shops were removed."
  438.  
  439. msg-confirm-remove-admin-shops: "&cYou are about to irrevocable remove all admin shops!\n&7Please confirm this action by typing &6/shopkeepers confirm"
  440. msg-confirm-remove-own-shops: "&cYou are about to irrevocable remove all your shops!\n&7Please confirm this action by typing &6/shopkeepers confirm"
  441. 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"
  442. 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"
  443.  
  444. msg-confirmation-expired: "&cConfirmation expired."
  445. msg-nothing-to-confirm: "&cThere is nothing to confirm currently."
  446.  
  447. msg-no-permission: "&cYou don't have the permission to do that."
  448.  
  449. msg-help-header: "&9***** &8[&6Shopkeepers Help&8] &9*****"
  450. msg-command-help: "&a/shopkeepers help &8- &7Shows this help page."
  451. msg-command-reload: "&a/shopkeepers reload &8- &7Reloads this plugin."
  452. msg-command-debug: "&a/shopkeepers debug &8- &7Toggles debug mode on and off."
  453. msg-command-list: "&a/shopkeepers list [player|admin] [page] &8- &7Lists all shops for the specified player, or all admin shops."
  454. msg-command-remove: "&a/shopkeepers remove [player|all|admin] &8- &7Removes all shops for the specified player, all players, or all admin shops."
  455. msg-command-remote: "&a/shopkeepers remote <shopName> &8- &7Remotely opens a shop."
  456. msg-command-transfer: "&a/shopkeepers transfer <newOwner> &8- &7Transfers the ownership of a shop."
  457. msg-command-settradeperm: "&a/shopkeepers setTradePerm <shopId> <tradePerm|-|?> &8- &7Sets, removes (-) or displays (?) the trading permission."
  458. msg-command-setforhire: "&a/shopkeepers setForHire &8- &7Sets one of your shops for sale."
  459. msg-command-shopkeeper: "&a/shopkeepers [shop type] [object type] &8- &7Creates a shop."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement