Replace default notifications

Triggered after notifying player client side

Event

AddEventHandler("dealerships_creator:notify", function(message, coloredMessage)

end)

Parameters

NameData TypeDescription

message

string

Message of the notification

coloredMessage

string

Message of the notification but with ~r~, ~g~, etc.

Example

RegisterNetEvent("dealerships_creator:framework:ready", function() 
    -- Disables the default script notification (otherwise there would be 2 notifications)
    exports["dealerships_creator"]:disableScriptEvent("dealerships_creator:notify")
end)

RegisterNetEvent("dealerships_creator:notify", function(message, coloredMessage)
    TriggerEvent("external_script:notify", message)
end)

Where to insert the code?

You can place it in the file integrations/cl_integrations.lua of the script, at the bottom of the file on new lines

Last updated