Installation

1️⃣ Add Script to Your Server

1. Place the saka-notification folder inside your resources directory:

resources/[your_folder]/saka-notification

2. Add the following line to your server.cfg:

ensure saka-notification
  1. Restart your server.


2️⃣ Requirements

• FiveM server artifact: 5848 or higher

• Compatible with any framework

No additional dependencies required


3️⃣ Folder Structure

saka-notification/
├── config.lua               # Main configuration file
├── fxmanifest.lua          # Resource manifest
├── client/main.lua         # Main client logic
├── locales/                # Language files (en, de, fr, etc.)
├── web/                    # Notification UI (HTML/CSS/JS)
├── Readme.MD               # Quick reference

✅ Testing Script

To verify it’s working correctly, trigger a sample notification from any client-side script using:

TriggerEvent('saka_notify:notify', {
    title = 'Success!',
    description = 'The notification script is working perfectly.',
    type = 'success'
})

Last updated