Installation Guide
Follow these steps to install and configure cd_dispatch3d correctly.
Add New Dispatch Alerts
A detailed guide for all variables used in the dispatch "code snippet".
job_table
Everyone who has this job will receive this dispatch alert. You can add multiple jobs to the table.
coords
These are the coordinates of the dispatch alert.
title
Usually, police 10 codes are used here in the title.
message
You can customise the message and add any available variables - More Info.
flash
To make this dispatch alert flash red and blue on the small and large UI. Used for high-priority calls such as panic buttons etc.
1 = enable UI flash.
0 = disable UI flash.
blip
This sub-table allows you to customise the blip on the pause menu map/mini-map.
If you don't want to have a blip, just delete the whole blip sub-table.
Everything referred to as the blip below is related to the pause menu map/mini-map blips.
blip.sprite
The icon for the blip - More icons can be found here.
blip.scale
The size of the blip: 0.1-2.0.
blip.colour
The colour of the blip - More colours can be found here at the bottom.
blip.flashes
To make this dispatch alerts blip flash. Used for high-priority calls such as panic buttons etc.
true = enable blip flash.
false = disable blip flash.
blip.time
(in minutes) The amount of time until the blip gradually fades and deletes.
blip.sound
The sound when receiving a new dispatch alert. You can change or add more sounds in the BlipSound() function in the configs/client_customise_me.lua.
1 = x1 sound alert.
2 = x2 sound alerts.
3 = panic button alert sound.
blip.radius
This will take the coordinates, randomize them, and add an area blip. The exact location will always be somewhere in the radius blip
0 = disable radius blip.
50-100 = is a good size, but you can go higher.
A detailed guide for all the data the client-side export returns.
Migrating Old Alerts To New Metho
Why do I need to do this?
Because the resource name has changed from cd_dispatch to cd_dispatch3d, the GetPlayerInfo export will no longer work unless you update the resource name inside it.
Option 1 (very easy):
Download and start the resource below; it will automatically fix all incoming notifications—no changes required.
Option 2
Use a text editor like Visual Studio Code to search your entire server for:
exports['cd_dispatch']:GetPlayerInfo()
and replace it with:
exports['cd_dispatch3d']:GetPlayerInfo()
Last updated
Was this helpful?








