Installation guide

Follow the instructions below! It will quickly describe everything to you.

For every fivem server!

How to trigger Dapler Notify?

Trigger from Server side

TriggerClientEvent('dr-notify:showNotification', source, 'type', Time, 'Title', 'Message')

Trigger from Client side

exports['dr-notify']:showNotification('type', Time, 'Title', 'Message')

Explanation

  • source - You have to add source on server side

  • Type - error / info / warning / success

  • Time - Time of visibility of the notify (1000 = 1 second)

  • Title - Enter custom text here. Notify title

  • Message - You have to add the notify message here.

How to change the notify in your server

ESX

es_extedned/client/functions.lua

Find this function:

And replace it:

QBCORE

qb-core/client/functions.lua

Find this function:

And replace it:

Last updated