Advanced Documentation

Developer Documentation and other Advanced Configuration Topics for the Mobile Command Center.

Sonoran Radio Integration

The Sonoran Mobile Command Center automatically links its "Radio Repeaters" with Sonoran Radio. You must ensure that the Sonoran Radio resource is called sonoranradio EXACTLY or this integration WILL NOT work.

Third Party Integration

Here is some useful information for potential third party integrations:

  • Interior light is Extra 4

How to toggle menu:

WarMenu.OpenMenu('sonoranMccController')

ALPR Documentation

Plate Read

When a plate is new read the event Sonoran::mcc::plateRead is fired to the server.

Parameter NameParameter Description

plate

The plate currently read by the plate reader (STRING)

Example Usage Of Event:

RegisterNetEvent('Sonoran::mcc::plateRead', function(plate)
		print(plate)
end)

Plate Locked

When a plate is locked the event Sonoran::mcc::plateLocked is fired to the server.

Parameter NameParameter Description

plate

The plate currently locked by the plate reader (STRING)

Example Usage Of Event:

RegisterNetEvent('Sonoran::mcc::plateLocked', function(plate)
		print(plate)
end)

Last updated