Replace default help notifications
Export
exports["races_creator"]:replaceShowHelpNotification(customFunction)Parameters
Name
Data Type
Description
Example
local function myCustomHelpNotification(message)
-- Customize your function to fit your needs
print(message)
ExternalScript.showHelpNotification(message)
end
RegisterNetEvent("races_creator:framework:ready", function()
-- This will replace the base function with the one you want
exports["races_creator"]:replaceShowHelpNotification(myCustomHelpNotification)
end)Where to insert the code?
Last updated