Advertisement
Guest User

dd

a guest
Aug 23rd, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. # This file is used to determine what recipes appear in the FastCraft+ interface.
  2. #
  3. # use-as-whitelist:     By default, this file will tell FastCraft+ what items to
  4. #                       not show in its interface. If use-as-whitelist is set to
  5. #                       true, then nothing will show up in the interface, unless
  6. #                       it is listed in this file.
  7. #
  8. #
  9. # hashes:               This section can be used to disable specific recipes. each
  10. #                       recipe in the FastCraft+ interface is associated with a
  11. #                       hash code, which is what you will use to reference the
  12. #                       recipe. To see a recipe's hashcode, open the fastcraft+
  13. #                       interface with the command "/fc craft fastcraft*". A
  14. #                       recipe's hashcode will be under its list of ingredients.
  15. #
  16. #
  17. # results/ingredients:  Specific items can be listed here. Items should be listed
  18. #                       using this format: [type, data, metadata]
  19. #
  20. #                       Both data and metadata are optional, but type is required.
  21. #                       Type can be the name of any item, such as 'minecraft:gold'.
  22. #                       If data or metadata are left out, items with any type or
  23. #                       metadata will be matched.
  24. #
  25. #                       For data, either a number can be listed, or ANY if all
  26. #                       item data should be matched.
  27. #
  28. #                       If the metadata is not stated, then items with any metadata
  29. #                       will be matched. If items with no metadata should be matched,
  30. #                       then '{}' can be used.
  31.  
  32. use-as-whitelist: false
  33.  
  34. hashes:
  35. #  dummy item: abc123
  36. #  Anvil: 145
  37.  
  38. results:
  39. #  thick sword: ['minecraft:diamond_sword', 0, '{display:{Name:"Thick Sword"}}']
  40.  
  41. ingredients:
  42. #  all planks: ['minecraft:planks']
  43. #  oak plank: ['minecraft:planks', 0]
  44. #  all planks named Zombie: ['minecraft:planks', ANY, '{display:{Name:"Zombie"}}']
  45. #  all planks without data: ['minecraft:planks', ANY, '{}']
  46.  
  47. use-as-blacklist
  48.  
  49. fastcraft.blacklist.result Anvil
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement