> For the complete documentation index, see [llms.txt](https://docs.rahe.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rahe.dev/our-scripts/taxi/integration/standalone.md).

# Standalone

### **Item creation** <a href="#item-creation" id="item-creation"></a>

If you don't want to use the command or a phone system, you can use a phone item instead.

{% tabs %}
{% tab title="qb-inventory" %}
Add the following lines to to <mark style="color:blue;">qb-core/shared/items.lua</mark><a class="button secondary">Copy</a>

```lua
['taxiphone'] = { ['name'] = 'taxiphone', ['label'] = 'Taxi phone', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'taxiphone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "There is an app on that."},
```

Add the image file to <mark style="color:blue;">qb-inventory/html/images/taxiphone.png</mark>

<img src="https://docs.notkuubik.dev/~gitbook/image?url=https%3A%2F%2F1386996739-files.gitbook.io%2F%7E%2Ffiles%2Fv0%2Fb%2Fgitbook-x-prod.appspot.com%2Fo%2Fspaces%252FYtqaleKGPdxlpcs59tIj%252Fuploads%252F8kTUKyFKP2bpzgIcUN1H%252Fchoptablet.png%3Falt%3Dmedia%26token%3D847a06f9-0f1e-4e0c-a1b8-93da408c2166&#x26;width=768&#x26;dpr=3&#x26;quality=100&#x26;sign=1c813ceb&#x26;sv=2" alt="" height="100" width="100">

Add the following code to the end of <mark style="color:blue;">public\api\sv\_server.lua</mark><a class="button secondary">Copy</a>

```lua
CreateThread(function()
    QBCore.Functions.CreateUseableItem("taxiphone", function(source, item)
        TriggerClientEvent("rahe-taxi:client:openNUI", source)
    end)
end)
```

{% endtab %}

{% tab title="ox\_inventory" %}
Add this section to <mark style="color:blue;">ox\_inventory/data/items.lua</mark><a class="button secondary">Copy</a>

```lua
['taxiphone'] = {
    label = 'Taxi phone',
    weight = 0,
    description = "There is an app on that",
    client = {
	export = 'rahe-taxi.nuiopen',
    }
},
```

Add the image file to o<mark style="color:blue;">x\_inventory/web/images/taxiphone.png</mark>

<img src="https://docs.notkuubik.dev/~gitbook/image?url=https%3A%2F%2F1386996739-files.gitbook.io%2F%7E%2Ffiles%2Fv0%2Fb%2Fgitbook-x-prod.appspot.com%2Fo%2Fspaces%252FYtqaleKGPdxlpcs59tIj%252Fuploads%252F8kTUKyFKP2bpzgIcUN1H%252Fchoptablet.png%3Falt%3Dmedia%26token%3D847a06f9-0f1e-4e0c-a1b8-93da408c2166&#x26;width=768&#x26;dpr=3&#x26;quality=100&#x26;sign=1c813ceb&#x26;sv=2" alt="" height="100" width="100">
{% endtab %}
{% endtabs %}

After you have successfully added the item you can disable the command by setting <mark style="color:blue;">commandsEnabled</mark> to <mark style="color:blue;">false</mark> in <mark style="color:blue;">public\config\client\cl\_config.lua</mark>

public\config\client\cl\_config.lua<a class="button secondary">Copy</a>

```
commandsEnabled = false,
```
