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