Files
ox_lib/resource/interface/client/alert.lua

15 lines
294 B
Lua
Raw Normal View History

2022-06-11 11:33:15 +02:00
function lib.alertDialog(data)
SetNuiFocus(true, true)
SendNUIMessage({
action = 'sendAlert',
data = data
})
end
RegisterNUICallback('closeAlert', function(_, cb)
cb(1)
SetNuiFocus(false, false)
end)
RegisterNetEvent('ox_lib:alertDialog', lib.alertDialog)