exports['gusti-iosnotify']:SendAlert(icon, appname, title, message, time, sound)
exports['gusti-iosnotify']:SendAlert('fas fa-info-circle text-info','App Name',"INFORMATION", "Notification message", 5000, 'notify1')
exports['gusti-iosnotify']:SendAlert('far fa-check-circle text-success','Server',"SUCCESS", "Fill in the notification message", 5000, 'notify1')
exports['gusti-iosnotify']:SendAlert('fas fa-exclamation-circle text-danger','Server',"ERROR", "Fill in the notification message", 5000, 'notify1')
TriggerClientEvent('gusti-iosnotify:show', source, {
icon = icon,
appname = appname,
title = title,
message = message,
time = time,
sound = sound
})
TriggerClientEvent('gusti-iosnotify:show', source, {
icon = 'fas fa-info-circle text-info',
appname = 'App Name',
title = 'Title Here',
message = 'Notification message',
time = 5000,
sound = 'notify1'
})