# Items

If you are on QBCore framework and **NOT using ox\_inventory**, add this to your qb-core > shared > items.lua:

```lua
solarpanel                   = { name = 'solarpanel', label = 'Solar Panel', weight = 150, type = 'item', image = 'solarpanel.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Private Solar Panel' },
remotecontrol                   = { name = 'remotecontrol', label = 'Remote Control', weight = 50, type = 'item', image = 'remotecontrol.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Remote Control Device For Solar Panels' },
```

### ox\_inventory

If you are using [**ox\_inventory**](https://github.com/overextended/ox_inventory/releases)**,** add this to your ox\_inventory > data > items.lua:

```lua
['solarpanel'] = {
	label = 'Solar Panel',
	weight = 150,
	stack = false
},
['remotecontrol'] = {
	label = 'Remote Control',
	weight = 50,
	stack = false
}
```

### You can change item names in config.lua

## Items images:

<figure><img src="https://2644204359-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fso4Bz1A5MlataovyRdlF%2Fuploads%2Fwmkbq4ijmkt3QhpAUEdt%2Fsolarpanel.png?alt=media&#x26;token=879db166-c68e-4339-acd4-d7f42ec9dfe2" alt=""><figcaption></figcaption></figure>

<figure><img src="https://2644204359-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fso4Bz1A5MlataovyRdlF%2Fuploads%2FTjZhOVA2nFVAjoJ0KcgA%2Fremotecontrol.avif?alt=media&#x26;token=99a5b2d0-39ba-4fa5-9dfc-cc1f9f686155" alt=""><figcaption></figcaption></figure>
