Notifications Not Showing

Symptoms:

  • No feedback when picking up items

  • Shop messages not visible

Solutions:

  1. Check notification event/function exists

    -- Test in server console:
    TriggerClientEvent('QBCore:Notify', 1, 'Test message', 'success', 5000)
  2. Verify client-side function

    function Notify(message, type, title)
        print('[DEBUG] Notify: ' .. message)
        QBCore.Functions.Notify(message, type, 5000)
    end
  3. Custom notification system syntax

    Different notification systems have different parameters:

    -- okokNotify
    exports['okokNotify']:Alert(title, message, duration, type)
    
    -- mythic_notify  
    exports['mythic_notify']:DoHudText(type, message)

Last updated