📝How to Install

If you face any issues, you can contact us on our Discord and we will help you to the utmost of our abilities.

Setup Guide

Follow the steps below:

  1. Download the script from keymaster.fivem.net

  2. Remove any existing notification scripts

  3. Extract the provided files

  4. Go to qb-core/client/functions.lua and replace QBCore.Functions.Notify to the one below:

    1.  function QBCore.Functions.Notify(text, texttype, length, icon)
          local message = {
              action = 'notify',
              type = texttype or 'server',
              length = length or 5000,
          }
      
          if type(text) == 'table' then
              message.text = text.text or 'Placeholder'
              message.caption = text.caption or 'Placeholder'
          else
              message.text = text
          end
      
          if icon then
              message.icon = icon
          end
      
          exports['st-notify']:sendNotification('Server', text, texttype, length)
         -- SendNUIMessage(message)
      end
  5. After that, go ahead and save the file.

  6. Restart and your server and enjoy the script.

If you face any difficulties, you can contact us anytime on our Discord by creating a support ticket.

Discord: https://discord.gg/storm-dev

Last updated