> For the complete documentation index, see [llms.txt](https://zloma-scripts.gitbook.io/zloma-scripts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zloma-scripts.gitbook.io/zloma-scripts/getting-started/faq.md).

# FAQ

## General

### What frameworks are supported?

ESX, QBCore, and QBox. zloma\_core auto-detects which one you're running.

### Do I need zloma\_core for every ZLOMA script?

Yes. zloma\_core is the foundation — all other ZLOMA scripts use its exports instead of calling framework functions directly.

### Is zloma\_core free?

Yes, zloma\_core is free and open source. You can use it, modify it for your server, and contribute improvements. Redistribution and reselling are not allowed.

### Does zloma\_core work standalone?

Yes. Even if you don't use any other ZLOMA scripts, you can use zloma\_core as a universal wrapper in your own scripts.

***

## Compatibility

### Which inventory systems are supported?

12 systems: ox\_inventory, qb-inventory, qs-inventory, ps-inventory, codem-inventory, tgiann-inventory, origen-inventory, core\_inventory, ak47\_inventory, jaksam\_inventory, jpr-inventory, and S-Inventory.

### What if my system isn't supported?

zloma\_core is designed to be extensible. Each file has clear comments showing where to add new systems. You can add your own or open a pull request on GitHub.

### Can I use zloma\_core with custom framework forks?

Usually yes. If your fork is based on ESX/QBCore/QBox and uses the standard exports, it should work. If resource names differ, use the manual configuration in `shared/config.lua`.

***

## Troubleshooting

### I get "attempt to index a nil value" errors

This usually means zloma\_core started **after** the script that needs it. Check your `server.cfg` ensure order.

### Systems show NONE DETECTED but I have them installed

1. Make sure the resource is actually **started** (not just in your resources folder)
2. Check the exact resource name — it must match what zloma\_core expects
3. Try manual configuration in `shared/config.lua`

### How do I enable debug mode?

Edit `shared/config.lua`:

```lua
ZlomaCore.Config.Debug = true
```

This outputs detailed logs for every detection and function call.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://zloma-scripts.gitbook.io/zloma-scripts/getting-started/faq.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.
