> For the complete documentation index, see [llms.txt](https://documentation.rcore.cz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.rcore.cz/paid-resources/rcore_guidebook/v1.md).

# V1 Docs

**Complete in-game guide system**

## Common Issues & Solutions

{% hint style="danger" %}
this script **REQUIRES** artifact version **4752** or **newer**
{% endhint %}

### Command not allowed

Check installation page if you add needed ACE permission for script it self. If yes please check permissions.lua.

### Permission

You can find all permission setup in file permissions.lua there is map that on left is key for ace permission and then permission that will be assigned to this group/player.

```lua
PermissionMap = {
    ['group.admin'] = {
        Permissions.OPEN_CONTROL,
        Permissions.EDIT_PAGE,
        Permissions.CREATE_PAGE,
        Permissions.DELETE_PAGE,
        Permissions.CREATE_CATEGORY,
        Permissions.EDIT_CATEGORY,
        Permissions.DELETE_CATEGORY,
        Permissions.CREATE_POINT,
        Permissions.EDIT_POINT,
        Permissions.DELETE_POINT,
        Permissions.SEND_HELP,
        Permissions.TELEPORT,
    },
    ['builtin.everyone'] = { --Everyone
        Permissions.OPEN_PAGE,
        Permissions.NAVIGATE,
    },
}
```

#### Add permission for custom player

This is possibility also dont worry :) Lets see on example.

```lua
PermissionMap = {
    ['group.admin'] = {
        Permissions.OPEN_CONTROL,
        Permissions.EDIT_PAGE,
        Permissions.CREATE_PAGE,
        Permissions.DELETE_PAGE,
        Permissions.CREATE_CATEGORY,
        Permissions.EDIT_CATEGORY,
        Permissions.DELETE_CATEGORY,
        Permissions.CREATE_POINT,
        Permissions.EDIT_POINT,
        Permissions.DELETE_POINT,
        Permissions.SEND_HELP,
        Permissions.TELEPORT,
    },
    ['builtin.everyone'] = { --Everyone
        Permissions.OPEN_PAGE,
        Permissions.NAVIGATE,
    },
    ['identifier.license:LICENSE_HERE'] = { --Add this player option to open admin & edit points
        Permissions.OPEN_CONTROL,
        Permissions.CREATE_POINT,
        Permissions.EDIT_POINT,
    },
}
```


---

# 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, and the optional `goal` query parameter:

```
GET https://documentation.rcore.cz/paid-resources/rcore_guidebook/v1.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
