sora200507

Untitled

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