forked from Simnation/Main
11 lines
429 B
Lua
11 lines
429 B
Lua
---Sends a dispatch alert about the slashing of tires
|
|
---@param source string
|
|
---@param coords vector3
|
|
---@param vehicle integer
|
|
function SendDispatchAlert(source, coords, vehicle)
|
|
-- NOTE: This has NOT been tested, may need to be fixed. Please let me know if this doesn't work!
|
|
exports['ND_MDT']:createDispatch({
|
|
callDescription = GetLocalization('dispatch_label'),
|
|
coords = coords
|
|
})
|
|
end
|