mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 09:18:53 +00:00
12 lines
274 B
Lua
12 lines
274 B
Lua
local function Notify(type, length, message)
|
|
SendNuiMessage(json.encode({
|
|
type = type or "info",
|
|
length = length or 3000,
|
|
message = message or "ESX-Notify"
|
|
}))
|
|
end
|
|
|
|
exports('Notify', Notify)
|
|
RegisterNetEvent("ESX:Notify", Notify)
|
|
|