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