# Items

### 🏆 Items & Player UI

Players can:

* Use `racechip` to join races
* Use `trackchip` to create tracks
* Use `racing_tablet` to open the full racing UI

{% file src="/files/mJveoDDro7syXJB1TMpz" %}

#### QBCore Items

Add these to your `shared.lua` or item export:

```
racechip = { name = 'racechip', label = 'Race Chip', weight = 100, type = 'item', image = 'racechip.png', unique = true, useable = false, shouldClose = true },
trackchip = { name = 'trackchip', label = 'Track Chip', weight = 100, type = 'item', image = 'trackchip.png', unique = true, useable = false, shouldClose = true },
racing_tablet = { name = 'racing_tablet', label = 'Race Tablet', weight = 200, type = 'item', image = 'tablet.png', unique = true, useable = true, shouldClose = true },
```

#### OX Inventory Items

Add to your `data/items.lua`:

```
['racechip'] = {
    label = 'Race Chip',
    weight = 100,
    stack = true,
    close = true,
},
['trackchip'] = {
    label = 'Track Chip',
    weight = 100,
    stack = true,
    close = true,
},
['racing_tablet'] = {
    label = 'Race Tablet',
    weight = 200,
    stack = true,
    close = true,
},
```

The UI allows:

* Viewing race history
* Managing avatar and display name
* Adjusting **checkpoint** and **GPS colors**
* Monitoring XP, rank, and earnings


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.0resmon.org/0resmon/frkn-resources/frkn-racing/items.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
