Edit Notification with your own
Go in the config.lua
function
description
src
source
action or type
'client' or 'server'
xPlayer
ESX.GetPlayerFromId(src)
message
'The notification message'
Change this:
MSK.Notification(message)to f.e. this:
exports['okokNotify']:Alert('Shop', message, 5000, 'info')Change this:
MSK.Notification(src, message)to f.e. this:
TriggerClientEvent('okokNotify:Alert', src, 'Shop', message, 5000, 'info')Last updated