namekuzi

config skillAPI

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