VFP Config - Wabbit0101/mods_hoardercraft GitHub Wiki

VFP: Configuration

As of: mc1.11.2-3.2 (Aug-2017)

VFP contains a basic GUI for all of its user-controlled configuration. The items each have a detailed description of its purpose and default setting. You can use the GUI or edit the config TEXT file wabbity_vanillafoodpantry.cfg directly.

Some options require restart, some do not although the GUI warns always to restart. It's always best to restart your game or server after changing most options especially the big ones like those that control ore-generation or loot-table enrichment.

Mod Integration

The Spice of Life (SoL)

VFP has support for the popular AppleSkin and The Spice of Life mods. Some VFP items, in particular the curatives like Tulip Tonic and Bottles of Milk may need custom SoL formulae to ensure a player can use them as needed for reasons beside hunger. Otherwise, the item might count as "only food" and a player cannot consume it to get its additional effects like healing or fire extinguish. Below is one sample SoL configuration option for some VFP special items.

vfp_alwaysedible.json
// Mod Version: 1.3.6
{
    //Always allow: water except for syrup-base, birch sap(HCB), 
    //  all curatives especially milk bottles and bits o' milk.
    "food": {
        "oredict": [
            "foodCurative"
        ],
        "items": [
            "vanillafoodpantry:water_portion",
            "vanillafoodpantry:water_bottle",
            "vanillafoodpantry:milk_portion",
            "vanillafoodpantry:milkdrink:0"
        ]
    },
    "exclude": {
        "items": [
            "vanillafoodpantry:water_bottle:1",
            "vanillafoodpantry:water_bottle:6"
        ]
    },
    "name": "Always Edible",
    "enabled": true,
    "blacklist": true
}

^Back To Top^