13 lines
No EOL
429 B
Markdown
13 lines
No EOL
429 B
Markdown
If you have an inventory system (esx-inventory, qb-inventory or ox-inventory) you can add the item in the corresponding item.lua list.
|
|
|
|
For ox-inventory for instance, you add the following to ox-inventory/data/items.lua:
|
|
```
|
|
['deployable_light'] = {
|
|
label = 'Deployable Light',
|
|
weight = 250,
|
|
consume = 0,
|
|
server = {
|
|
export = 'gs_deployablelight.deployable_light',
|
|
}
|
|
},
|
|
``` |