Support
Support
Getting Help
Discord Support
Join our Discord server for:
Real-time support
Community discussions
Feature requests
Bug reports
Development updates
GitHub Issues
Visit our GitHub Issues page to:
Report bugs
Request features
View known issues
Track development progress
FAQ
Common Questions
Q: How do I change the notification style?
A: In your config.lua
, set the Style
option to either 'minimal' or 'advanced':
Config.Style = 'minimal' -- or 'advanced'
Q: Can I customize the notification duration?
A: Yes, set either globally in config:
Config.DefaultDuration = 5000 -- in milliseconds
Or per notification:
exports['b2-sleeknotify']:CreateNotification({
message = 'Custom duration',
duration = 3000
})
Q: How do I disable sound effects?
A: Remove or comment out the sound entries in your config.lua
.
Q: Why aren't my notifications showing up?
A: Check:
Resource is started (
ensure b2-sleeknotify
)No console errors
Correct export usage
UI files are properly built
Troubleshooting
Installation Issues
Resource Not Starting
Check your server console for errors
Verify
ensure b2-sleeknotify
is in your server.cfgConfirm all files are in the correct locations
Verify the resource name matches your folder name
UI Not Loading
Check the
ui/dist
folder existsVerify all files listed in
fxmanifest.lua
existRebuild the UI if necessary:
cd ui
npm install
npm run build
Common Errors
"Export Not Found"
-- Incorrect
exports.b2-sleeknotify:CreateNotification()
-- Correct
exports['b2-sleeknotify']:CreateNotification()
"Type Not Supported"
Ensure you're using one of the supported types:
success
error
info
warning
"Position Not Valid"
Verify you're using a supported position:
-- Supported positions
'TOP_LEFT', 'TOP_CENTER', 'TOP_RIGHT'
'MIDDLE_LEFT', 'MIDDLE_CENTER', 'MIDDLE_RIGHT'
'BOTTOM_LEFT', 'BOTTOM_CENTER', 'BOTTOM_RIGHT'
Performance Issues
Notifications Lagging
Check notification duration
Reduce maximum concurrent notifications
Verify server performance
Check client FPS impact
Memory Usage
Clear old notifications
Don't spam notifications
Use appropriate duration times
Reporting Issues
Before Reporting
Check existing GitHub issues
Search Discord for similar problems
Try basic troubleshooting
Update to latest version
How to Report a Bug
Include:
Resource version
FiveM server version
Error messages
Steps to reproduce
Expected vs actual behavior
Screenshots/videos if relevant
Contact Information
Discord: Join Here
GitHub: Repository
Author: B2DevUK
Contributing
We welcome contributions! Please:
Fork the repository
Create a feature branch
Submit a pull request
Follow code style guidelines
Include tests if applicable
Remember to join our Discord for the fastest support and to stay updated on new releases and features!
Last updated