⁉ī¸Common issues

If run into problems with our application, then most likely your issue is described here.

CHECK | Latest version

Make sure you are running the latest version of our resource. If your resource is outdated, it might have issues that have already been solved in later updates.

The latest version is v1.4.7 (you can check your version in rahe-boosting/fxmanifest.lua).

CHECK | Errors on resource start

Make sure that there are no errors when the resource starts up.

💡 Type the following command to your server console:

ensure rahe-boosting

There shouldn't be any errors after this command.

CHECK | Required dependencies

Make sure that you have installed both of the required dependencies - ox_lib and oxmysql. In addition to that, please verify that you have installed them correctly (you have downloaded the built versions as is instructed, not the source code versions).

💡 Type the following commands to your server console:

restart oxmysql

restart ox_lib

Make sure there aren't any errors after these commands. If there are, you have incorrectly installed the dependencies or you haven't started them. Go back to our installation guide which will tell you exactly what to download and where to download it from.

ERROR | syntax error near '<\1>'

You have uploaded the resource files to your server using Filezilla, which has a tendency to corrupt encrypted files. When the files are corrupted, the resource can't function correctly.

Please re-upload the files using a better FTP client such as WinSCP.

ERROR | attempt to compare nil with number

This issue occurs when your getOnDutyPoliceAmount function in rahe-boosting/api/server.lua is returning nil. That function should not be returning nil under any circumstances. It's supposed to return the amount of online police (0 or more).

ERROR | attempt to call a nil value (field 'playerHasActiveContract') or attempt to call a nil value (field 'getGroupDataForPlayer')

The function playerHasActiveContract & getGroupDataForPlayer are functions that exist in our encrypted part. If you're getting that error, it means the file they are in is not being loaded. Therefore the functions doesn't exist, and you will get these 'nil' errors.

This usually happens because your ox_lib is not working. When ox_lib is not working, the file encounters an error and won't load. Please go back to the installation page & open the ox_lib spoiler for guidance.

ISSUE | You are doing an important boost (by default A, S class), but you can't hack the GPS system after hacking the vehicle.

You must complete two hacks (one outside, one inside) before you can start hacking the GPS tracker. Please read our Common questions to get an idea how the process should look like.

ISSUE | Your vehicle engine is starting automatically after you get in, without you needing to lockpick (non-important boosts) or hack (important boosts).

Our script does not start the engine anywhere in the script. If your engine is automatically starting, it's some other script of your which is causing it or you have the FiveM default behaviour enabled. If you want to get rid of the FiveM default behaviour, please put this inside some client-side script:

SetPedConfigFlag(PlayerPedId(), 429, true) -- PED_FLAG_DISABLE_STARTING_VEHICLE_ENGINE

SetPedConfigFlag(PlayerPedId(), 241, true) -- PED_FLAG_DISABLE_STOPPING_VEHICLE_ENGINE

If the issue still persists, please investigate your other scripts.

ISSUE | The vehicle doors aren't opening after lockpicking/hacking it.

Vehicle spawning and the locking is unencrypted at rahe-boosting/public/client.lua. We are using simple GTA V natives for locking and unlocking - there is no custom logic keeping the doors locked.

If you aren't able to enter the vehicle, then your lockpick system for some reason is not functioning, or some other script of yours is locking the door again / is not letting you enter the vehicle.

For example qb-vehiclekeys has a quirk where you have to set a variable in the qb-vehiclekeys script before using the hacking device (and we provide a guide how to do it for qb-vehiclekeys). That's because qb-vehiclekeys will stop you from entering (even if the door is unlocked) unless a lockpick has been used on the vehicle.

Might be that whatever locking system you are using is doing something similar.. or you are using qb-vehiclekeys and haven't implemented that part from our documentation.

ISSUE | Your screen is frozen (only the mouse is visible). This happened when you pressed the green truck icon / yellow gift icon / tried to open the boosting store.

This issue is that your ox_lib is not running or is not installed correctly. When you do any of these actions, the script tries to open a context menu / input dialog from ox_lib. Since your ox_lib is not functioning, the screen freezes up without anything showing.

This usually happens when you have mistakenly installed the source code of ox_lib (instead of the built version). Please go back to the installation page & open the ox_lib spoiler for guidance.

ISSUE | NPCs are not spawning when you do an important boost.

The peds are spawned when you use the hacking device outside of the vehicle. If you are not getting any NPCs, then you are probably not following the correct procedure (for example, you are lockpicking, which you should not be doing).

Read our common questions section - the correct process for important boosts is described there.

❔pageCommon questions

Last updated