FAQ

Revive Command isn't working

chevron-rightSolution 1 (User hasn't followed docs)hashtag

The user hasn't followed the documentation correctly. The revive command has been integrated correctly.

User must follow: https://docs.veryinsanee.space/advanced-roleplay-environment/installation#revive-commandarrow-up-right

Screen effects aren't working

chevron-rightSolution 1 (User hasn't configured the effects properly)hashtag

The user has to configure the client configuration (config.lua) properly.

The property flashScreens hasn't been properly configured.

Bleedings or injuries aren't working

chevron-rightSolution 1 (User hasn't configured the configuration properly)hashtag

The user has to configure the client configuration (config.lua) properly.

The property b2060 hasn't been properly configured.

It should be true if the user is using build 2060 or above.

Otherwise it should be false.

How to add a custom phone

chevron-rightSolution 1 (Implementing a custom phone)hashtag
  1. Open the file visn_are/shared/client/are_medical/are_medical.lua

  2. Go to line 2161 - it should look like this:

visn_are/shared/client/are_medical/are_medical.lua
local currentPosition = GetEntityCoords(PlayerPedId())
TriggerServerEvent('esx_addons_gcphone:startCall', "ambulance", _translate("phone_call_text"), {
    x = currentPosition.x,
    y = currentPosition.y,
    z = currentPosition.z
})

And now just edit the event to your custom phone event.

Last updated