Replace default notifications
Event
AddEventHandler("vehicles_keys:notify", function(message, uncoloredMessage)
end)Parameters
Name
Data Type
Description
Example
RegisterNetEvent("vehicles_keys:framework:ready", function()
-- Disables the default script notification (otherwise there would be 2 notifications)
exports["vehicles_keys"]:disableScriptEvent("vehicles_keys:notify")
end)
RegisterNetEvent("vehicles_keys:notify", function(message, uncoloredMessage)
TriggerEvent("external_script:notify", message)
end)Where to insert the code?
Last updated