Page cover

🔧Supplies

  • Define items that are supplies for crafting various items in supplies.lua file

  • The name is the item name and must be in your items.lua

Config.Supplies = {
    ['Legion'] = { -- the key is the location name and must match throughout
        --name is the item name
        { name = 'trigger' },
        { name = 'iron' },
        { name = 'steel' },
        { name = 'plastic' },
        { name = 'aluminum' },
        { name = 'glass' },
        { name = 'cottonwadding' },
        { name = 'gunpowder' },
        { name = 'bulletcasing' },
        { name = 'vinylwrap' },
        { name = 'green_ink' },
        { name = 'gold_ink' },
        { name = 'pink_ink' },
        { name = 'army_ink' },
        { name = 'orange_ink' },
        { name = 'plat_ink' },
        { name = 'screwdriverset' },
        --add more items as required
    },
    -- add more weapon shops as required
}

Last updated