Advertisement
wreed12345

Untitled

Aug 15th, 2014
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.28 KB | None | 0 0
  1. #for an empty space write empty
  2. #make materials ALWAYS UPPER CASE, straight from the Material enum http://jd.bukkit.org/rb/apidocs/org/bukkit/Material.html eg: IRON_INGOT
  3. #if an ingredient is a custom item make the name of the ingredient the exact same as the display name eg: Steel Ingot
  4. #the duplicate field contains "true" or "false" depending on whether it's the same as another recipe eg: Steel Boots are the same as Iron Boots
  5. #***if a custom recipe is a duplicate of another custom recipe, the duplicate field is "true"***
  6. #Ask Harrison if you have any questions or find any bugs
  7. #
  8. #Example
  9. #Recipes:
  10. #    STEEL_INGOT:
  11. #        name: 'Steel Ingot'
  12. #        material: IRON_INGOT
  13. #        duplicate: false
  14. #        ingredients:
  15. #           - empty
  16. #            - IRON_INGOT
  17. #            - empty
  18. #            - IRON_INGOT
  19. #            - empty
  20. #            - IRON_INGOT
  21. #            - empty
  22. #            - IRON_INGOT
  23. #            - empty
  24. #    STEEL_BOOTS:
  25. #        name: 'Steel Boots'
  26. #        material: IRON_BOOTS
  27. #        duplicate: true
  28. #        ingredients:
  29. #            - empty
  30. #            - empty
  31. #            - empty
  32. #            - Steel Ingot
  33. #            - empty
  34. #            - Steel Ingot
  35. #            - Steel Ingot
  36. #            - empty
  37. #            - Steel Ingot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement