Free Lifetime Updates: All purchasers receive free updates
Backward Compatibility: Updates maintain compatibility with existing configurations
Changelog: Available in Discord for each update
📝 Additional Information
Resource Metadata
Version: 2.1.0 - Premium Edition
Author: SyntaxStore Development Team
Compatibility: FiveM Artifact 4752+
Performance: Optimized (0.00ms idle)
Size: Lightweight and efficient
Legal Information
This is a premium resource from SyntaxStore
Redistribution is prohibited
Support is provided to legitimate purchasers only
Terms of service available on store page
Future Updates
Planned features for upcoming versions:
Custom theme builder
Animation effects library
Mobile responsive design
Additional framework integrations
Enhanced permission system
🎉 Thank You
Thank you for choosing Syntax Notify V2! This premium notification system has been carefully crafted to provide the best user experience with maximum compatibility.
exports['Syntax_NotifyV2']:Alert('success', 'Operation Successful', 'Your action was completed successfully!', 3000)
-- Success notification
exports['Syntax_NotifyV2']:ShowSuccess('Success!', 'Action completed successfully')
-- Error notification
exports['Syntax_NotifyV2']:ShowError('Error!', 'Something went wrong')
-- Warning notification
exports['Syntax_NotifyV2']:ShowWarning('Warning!', 'Please check your input')
-- Info notification
exports['Syntax_NotifyV2']:ShowInfo('Information', 'Here is some useful information')
-- Phone message style
exports['Syntax_NotifyV2']:ShowPhoneMessage('Message', 'You have a new message')
-- Neutral notification
exports['Syntax_NotifyV2']:ShowNeutral('Notice', 'General notification')
exports['Syntax_NotifyV2']:Notify({
type = 'success',
title = 'Mission Complete',
message = 'You have successfully completed the mission!',
duration = 5000,
sound = 2,
theme = 'gaming',
position = 'center-right'
})
-- Open configuration menu
exports['Syntax_NotifyV2']:OpenConfig()
-- Change theme programmatically
exports['Syntax_NotifyV2']:SetTheme('cyberpunk')
-- Change position programmatically
exports['Syntax_NotifyV2']:SetPosition('bottom-left')
-- Clear all notifications
exports['Syntax_NotifyV2']:ClearAll()
-- Send notification to specific player
exports['Syntax_NotifyV2']:SendNotification(source, 'success', 'Welcome!', 'Welcome to our server!')
-- Alternative method
exports['Syntax_NotifyV2']:NotifyPlayer(source, {
type = 'info',
title = 'Server Info',
message = 'Server will restart in 5 minutes',
duration = 10000
})
-- Send to all players
exports['Syntax_NotifyV2']:SendNotificationToAll('warning', 'Server Notice', 'Server restart in 10 minutes')
-- Alternative method
exports['Syntax_NotifyV2']:NotifyAll({
type = 'info',
title = 'Event Starting',
message = 'Racing event starts in 2 minutes!',
duration = 8000
})
-- Send to admin group
exports['Syntax_NotifyV2']:SendNotificationToGroup('admin', 'error', 'Admin Alert', 'Cheater detected in server')
-- Open configuration menu
exports['Syntax_NotifyV2']:OpenConfig()
-- Change theme programmatically
exports['Syntax_NotifyV2']:SetTheme(theme)
-- Change position programmatically
exports['Syntax_NotifyV2']:SetPosition(position)
-- Clear all active notifications
exports['Syntax_NotifyV2']:ClearAll()
-- Send to specific player
exports['Syntax_NotifyV2']:SendNotification(source, type, title, message, duration)
-- Alternative player notification
exports['Syntax_NotifyV2']:NotifyPlayer(source, options)
-- Send to all players
exports['Syntax_NotifyV2']:SendNotificationToAll(type, title, message, duration)
-- Alternative all-players notification
exports['Syntax_NotifyV2']:NotifyAll(options)
-- Send to specific groups/permissions
exports['Syntax_NotifyV2']:SendNotificationToGroup(group, type, title, message, duration)
-- Change language for specific player
TriggerClientEvent('syntax_notify:changeLanguage', source, 'es')
-- Change language for all players
TriggerClientEvent('syntax_notify:changeLanguage', -1, 'eng')
-- ESX notification replacement
ESX.ShowNotification = function(message, type, duration)
exports['Syntax_NotifyV2']:ShowNotification(message, type or 'info', duration or 4000)
end
-- ESX advanced notification
ESX.ShowAdvancedNotification = function(title, message, type, duration)
exports['Syntax_NotifyV2']:Alert(type or 'info', title, message, duration or 4000)
end
-- QBCore notification replacement
QBCore.Functions.Notify = function(text, texttype, length)
exports['Syntax_NotifyV2']:ShowNotification(text, texttype or 'primary', length or 5000)
end
-- vRP notification replacement
function vRP.notify(source, message, type, duration)
exports['Syntax_NotifyV2']:SendNotification(source, type or 'info', 'Notification', message, duration or 4000)
end