Files
ox_lib/resource/interface/client/alert.lua
2022-06-11 11:33:15 +02:00

12 lines
236 B
Lua

function lib.alertDialog(data)
SetNuiFocus(true, true)
SendNUIMessage({
action = 'sendAlert',
data = data
})
end
RegisterNUICallback('closeAlert', function(_, cb)
cb(1)
SetNuiFocus(false, false)
end)