circle-downInstalliation

  1. Place inside the resources folder.

  2. You need to add the items in your inventory system (we added an item image you can find it named as airstrike.png, add it to your inventory system).

  3. You can customize the script in the shared/config.lua file.

Item

OX Inventory item template

['airstrike'] = {
    label = 'Airstrike',
    weight = 1500,
    stack = true,
    close = true,
}

QB Inventory item template

['airstrike'] = {
    ['name'] = 'airstrike',
    ['label'] = 'Airstrike',
    ['weight'] = 1500,
    ['type'] = 'item',
    ['image'] = 'airstrike.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'Call in an AC-130 airstrike support.'
}

Last updated