Advertisement
kama6012

recipemanager config

Nov 26th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.76 KB | None | 0 0
  1. lastchanged: 2.12.0 # Please do not edit this value - it is used by the plugin to notify you when a newer version of this file is available
  2. #-------------------------------------------------------------------------------------------------------------------------
  3. # RecipeManager configuration
  4. # This file is for settings.
  5. # To make recipes, read "info - basic recipes.txt" file
  6. #
  7. # For help/issues: http://dev.bukkit.org/server-mods/recipemanager
  8. #-------------------------------------------------------------------------------------------------------------------------
  9.  
  10. # Enable/disable special recipes
  11. special-recipes:
  12. repair: true # Weapon/tool repair (these aren't actual recipes)
  13. repair-metadata: false # Weapon/tool repairing while preserving metadata (enchantments, name, etc), if both items have metadata, the first item's metadata will be preserved (ordering is from top left to bottom right)
  14. leather-armor-dye: true # leather armor dyeing recipes
  15. fireworks: true # fireworks recipes
  16. firework-star: true # firework star recipes
  17. map-cloning: true # clone maps recipes
  18. map-extending: true # extend maps recipes
  19. book-cloning: true # clone books recipes
  20. banner: true # banner recipes
  21. shield-banner: true # shield banner recipes
  22. tipped-arrows: true # tipped/potion arrows recipes
  23. shulker-dye: true # shulker dying recipes
  24.  
  25. # When to play some additional sounds
  26. sounds:
  27. failed: true # play a denied-like sound when a recipe fails ?
  28. failed_click: true # play a denied-like sound when clicking a failed result information ?
  29. repair: true # play a faster anvil repair sound when repairing items in a workbench ?
  30.  
  31.  
  32. # As of version v2 the plugin generates books with recipes.
  33. # If you add or remove recipes from a book, all book's copies won't be updated because each book is individual (unlike maps).
  34. # This setting makes whenever a player opens a book (uniquely identified by title+author) it will be updated with the latest recipes.
  35. #
  36. # default true
  37. update-books: true
  38.  
  39.  
  40. # Enable or disable colored log messages
  41. # default true
  42. color-console: false
  43.  
  44.  
  45. # When Shift+Clicking an item in the inventory while a furnace is opened, where should the item go ?
  46. # Values for this setting:
  47. # fuel - if item is a fuel, will go in fuel slot, otherwise in the ingredient slot (default, like vanilla MC) NOTE: it can get confusing when creating fuels with items that are also ingredients.
  48. # click - click type determines where the item should go, Shift+LeftClick to ingredient slot and Shift+RightClick to fuel slot.
  49. furnace-shift-click: fuel
  50.  
  51.  
  52. # Multithreading allows server to do certain tasks in another thread (background) which would avoid freezing the server if it takes too long.
  53. # This is currently used for loading recipes, however if you encounter any weird problems you can disable this to make it run in the main thread.
  54. # Don't take this as a magic-fix! If you don't understand your problem then post it here: http://dev.bukkit.org/server-mods/recipemanager/create-ticket/
  55. # default: true
  56. multithreading: true
  57.  
  58.  
  59. # Internally results are tagged with a lore line to identify the recipe quickly.
  60. # Certain mods/plugins might craft recipes manually and give you the results with that lore line, the line is invisible but it will prevent items from stacking with similar items.
  61. # This setting monitors items in inventories and removes the plugin's lore line if found, it won't affect any other items.
  62. # Use this only if you have plugins or mods that craft results manually!
  63. # default: false
  64. fix-mod-results: false
  65.  
  66.  
  67. # If you want to remove all existing recipes (except your custom recipes and except special ones configured above) from the server, then set this to true.
  68. # Recipes added by this plugin will not be affected of course.
  69. # default: false
  70. clear-recipes: false
  71.  
  72.  
  73. # Automatic update checker (no auto download)
  74. update-check:
  75. enabled: false # Enable/disable update checking. (default: true)
  76. frequency: 6 # Check for updates each N hours, use 0 to check only at startup. (default: 6)
  77.  
  78. # Customize materials used when crafting recipes
  79. # Material names reference: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
  80. material:
  81. fail: BARRIER # Material shown on failed recipes (default: BARRIER)
  82. secret: CHEST # Material shown on secret recipes (default: CHEST)
  83. multiple-results: CHEST # Material shown on recipes with multiple results (default: CHEST)
  84.  
  85. # Disable 'Recipe already created by <plugin>, recipe overwritten!' warnings
  86. # default: false
  87. disable-override-warnings: false
  88.  
  89. # Characters used as comments in recipe files.
  90. recipe-comment-characters: ["//", "#"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement