📙rcore_guidebook_v2

Complete in-game guide system

Common Issues & Solutions

This is the documentation for unpublished version 2.0 of rcore_guidebook! This version is currently being testing in a closed public beta.

When ready, everyone with license will be able to update to this version.

this script REQUIRES artifact version 4752 or newer

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.

The ['group.admin'] is the name of the group you want to set it to.

The permissions inside that group are the permissions that the group will be allowed to use.

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.

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,
    },
}

Last updated