> For the complete documentation index, see [llms.txt](https://docs.luxcoding.de/lux_coding/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.luxcoding.de/lux_coding/scripts/lux_lib/development/notifcations.md).

# Notifcations

can be used Client and Server Side to send Notifications

## LUX.Notify

```lua
-- Client
-- msg as String 
-- title as String 
-- time in ms
-- type as String 
LUX.Notify(msg, title, time, type)

-- Server
-- msg as String 
-- title as String 
-- time in ms
-- type as String 
LUX.Notify(source, msg, title, time, type)
```

## LUX.PictureNotify

```lua
-- Client
-- title as String 
-- subject as String 
-- msg as String 
-- icon as String https://wiki.gtanet.work/index.php?title=Notification_Pictures
-- icontype as Int 
LUX.PictureNotify([title], [subject], [msg], [icon], [icontype]) 

-- Server
-- title as String 
-- subject as String 
-- msg as String 
-- icon as String https://wiki.gtanet.work/index.php?title=Notification_Pictures
-- icontype as Int 
LUX.PictureNotify(source, [title], [subject], [msg], [icon], [icontype]) 
```
