# Client Notifications Usage Guide The client notifications addon owns the notification HUD, notification sound, and local notification service used by Forge client and server modules. ## Runtime Behavior The notification display is created during client initialization. The browser HUD sends: ```text notifications::ready ``` When that event is received, `NotificationService` initializes and sends a startup notification. ## Create a Notification Use the notification service when available: ```sqf GVAR(NotificationService) call ["create", [ "success", "Title", "Notification text.", 4000 ]]; ``` Arguments:
| Argument | Purpose |
|---|---|
_type
|
Notification type, such as
success
,
info
,
warning
, or
error
.
|
_title
|
Notification title. |
_content
|
Notification body text. |
_duration
|
Display duration in milliseconds. |