
π§Supplies
Define items that are supplies for crafting various items in
supplies.luafileThe
nameis the item name and must be in your items.lua
Config.Supplies = {
['Pillbox Hospital'] = { -- the key is the location name and must match throughout
--name is the item name
{ name = 'cotton' },
{ name = 'mortarpestle' },
{ name = 'medicalstarch' },
{ name = 'gelatin' },
{ name = 'calcium' },
{ name = 'antisepticwipes' },
{ name = 'medicaltape' },
{ name = 'gauzepads' },
{ name = 'tourniquet' },
{ name = 'foil' },
{ name = 'plastic' },
{ name = 'tampersealstrip' },
{ name = 'hydrogelbase' },
{ name = 'standardcompound' },
{ name = 'coolingagent' },
{ name = 'stabilisingsolution' },
{ name = 'analgesicbasepowder' },
{ name = 'antiswellingagent' },
{ name = 'walkstick' },
{ name = 'plasticgloves' },
--add more items as required
},
-- add more weapon shops as required
}Last updated