If you still encounter issues after completing this tutorial, we kindly ask you to review each step again to ensure everything has been followed correctly. If you're confident that all steps were completed properly and the issue persists, feel free to open a ticket on our .
Our team will be happy to help you.
1. Download
In the following section, you will find all the information about downloading our resources:
2. Dependencies & Requirements
Nothing! This script is completely standalone.
3. Guides
To replace the default ESX Helpnotify with ours, you need to replace the 'ESX.ShowHelpNotification' function in your "es_extended/client/functions.lua" with the following:
ESX.ShowHelpNotification = function(msg, thisFrame, beep, duration)
exports['unique_helpnotify']:TriggerHelpNotify(msg)
end
If you want to integrate our Helpnotify into a script by Jaksam, we'll describe here how it works, as it can be a bit confusing.
Open the file /integrations/cl_integrations.lua in your affected script and add the following code there:
Change the entry "SCRIPTNAME" to the name of the affected script.
local function myCustomHelpNotification(message)
exports['unique_helpnotify']:TriggerHelpNotify(message)
end
RegisterNetEvent("SCRIPTNAME:framework:ready", function()
exports["SCRIPTNAME"]:replaceShowHelpNotification(myCustomHelpNotification)
end)
If the "SCRIPTNAME:framework:ready" entry already exists, add the provided export there to replace it with our for Helpnotify.
4. Configuration
If you have successfully completed the installation, you can proceed with the configuration.