[1564] RecipeBuilder: Simple confi-based custom recipes.

Discussion in 'Inactive/Unsupported Plugins' started by TerXIII, Dec 10, 2011.

  1. Offline

    TerXIII

    I'm launching this plugin for testing. Please feel free to download and use. This plugin uses a configuration file to permit server admins to create recipes and add them to their servers. Both shaped and furnace recipes may be added freely.

    The config file format is as follows:

    (use 4 spaces for indentation, not tabs!)


    Code:
    recipes:
        - "NetherBrick"
        - "ForgedMossyStone"
    
    NetherBrick:
        type: "shaped"
        result:
            id: 112 # can also be "NETHER_BRICK"
            amount: 4
            damage: 0 #optional, line not needed
            data: 0   #optional, line not needed
        materials:
            #any alphabetical character may be used for the keys below. They will mark locations in recipes. Must be unique.
            n: 87 #the following lines aren't needed, but demonstrate the values you may use to denote items.
            a: "87:0"
            z: "NETHERRACK"
            d: "NETHERRACK:0"
            f:
                - 87
                - 0
            k:
                - "NETHERRACK"
                - 0
        shape: #shape must use the above characters to form a shape. maximum of three lines, maximum length of 3 characters.
            rows:
                - "nn"
                - "nn"
    
    ForgedMossyStone:
        type: "furnace"
        output:
            id: 1
            amount: 1
            damage: 0 #optional
            data: 0 #optional
        input: 48
        #input: "MOSS_STONE"
        #input: "MOSS_STONE:0"
        #input: "48:0"
        #input:
        #   - 48
        #   - 0
        #input:
        #   - "MOSS_STONE"
        #   - 0
    The plugin can be downloaded below:
     

    Attached Files:

Share This Page