Since i updated the Legacy version into 1.9.0 every single resource i use won’t show the HelpText, like “Press [E] to…”.

I have updated getSharedObject in many’s client as console have told so.

I’m out of ideas how to fix this. Any ideas?

1 Like

I think you should try the esx method ESX.ShowHelpNotification

Source code from ESX Framework Github

function ESX.ShowHelpNotification(msg, thisFrame, beep, duration)
    AddTextEntry('esxHelpNotification', msg)

    if thisFrame then
        DisplayHelpTextThisFrame('esxHelpNotification', false)
    else
        if beep == nil then
            beep = true
        end
        BeginTextCommandDisplayHelp('esxHelpNotification')
        EndTextCommandDisplayHelp(0, false, beep, duration or -1)
    end
end

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.