New 911 Call
The 911 Call API endpoint allows you to send 911 calls from in-game directly to your dispatchers.
function call911(caller, location, description, postal, plate, cb) {
exports["sonorancad"].performApiRequest({
serverId: GetConvar("sonoran_serverId", 1),
isEmergency: true,
caller: caller,
location: location,
description: description,
metaData: {
plate: plate,
postal: postal,
useCallLocation: true
}
}, "CALL_911", cb);
}Parameters
Property
Type
Description
Troubleshooting
Last updated
Was this helpful?

