ESX Replacements

Replace ShowNotification

  1. Open Directory client/

  2. Open File functions.lua

  3. Search for ESX.ShowNotification (STRG+F)

  4. Replace function with example the below

function ESX.ShowNotification(message, type, length)
    exports.wise_notify:Notify(type, "Information", message, length)
end

Replace ShowHelpNotification

  1. Open Directory client/

  2. Open File functions.lua

  3. Search for ESX.ShowHelpNotification (STRG+F)

  4. Replace function with the example below

function ESX.ShowHelpNotification(msg, thisFrame, beep, duration)
    exports.wise_notify:HelpNotify(msg)
end

Last updated