๐Ÿ“ŒInformations / Typical Errors

This page will give you information about the script. Also are typical Errors listed, so that you can easily fix them!

Possible Installing Issues

If you encounter any issues with the script, here are some troubleshooting steps that you can try!

Failed to verify protected resource...

This error message indicates that the script files may be corrupted, or the .fxap file is missing. To resolve this issue, try these following steps:

  1. Verify that the .fxap file is existing in the script folder.

  2. Try deleting the script forlder from your server and upload it again.

  3. If the issue persists try to change your FTP client.

You lack the required entitlement to use...

If you see this message, it can be that there is a problem with your Keymaster account. Restart your FiveM server and verify your Keymaster account to resolve it

Possible Script Issues

Anticheat:

The script uses some features that may be blocked by your anticheat, such as the troll menu. We have no way to bypass the anticheats, especially not all of them. But this should be clear, because the anticheat is protecting your server. If you have disabled some options in the anticheat, they will obviously not work in the menu!

Possibility of not opening the UI

Paste this into the server-side openfunctions.lua and restart the script. It will show you your group. This group must be in the config for permissions. If the problem still exists. Please open a ticket.

ESX.RegisterServerCallback(
    "SService:Server:Admin:GetGroup",
    function(source, cb)
        local xPlayer = ESX.GetPlayerFromId(source)
        local group = xPlayer.getGroup()
        print(group)
        local allowed = false
        if ConfigServer.Main.admins[xPlayer.getGroup()] then
            allowed = true
        end

        cb(group, allowed)
    end
)

Screenshot-Basic / Screenshot Problem

If you are experiencing problems with the screenshot function. This could be because you don't have screenshot-basic installed. In order to use the function fully, you need to install this script! This is a Script made by CFX that allows to make Screenshots of other Players POV.

No such export MakeHelpNotify in resource ...

For this bug, all you need to do is go into the openfunctions file and replace the existing notification system with the one on your server.

If you cannot find a way to fix the bug, feel free to create a ticket on our Discord

Last updated