FAQ
Revive Command isn't working
Solution 1 (User hasn't followed docs)
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-command
Screen effects aren't working
Solution 1 (User hasn't configured the effects properly)
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
Solution 1 (User hasn't configured the configuration properly)
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
Solution 1 (Implementing a custom phone)
Open the file
visn_are/shared/client/are_medical/are_medical.luaGo 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