Scripts/resources/[standalone]/oxmysql/ui.lua

24 lines
522 B
Lua
Raw Normal View History

2024-12-29 20:02:43 +00:00
RegisterNetEvent('oxmysql:openUi', function(data)
SendNUIMessage({
action = 'openUI',
data = data
})
SetNuiFocus(true, true)
end)
RegisterNUICallback('exit', function(_, cb)
cb(true)
SetNuiFocus(false, false)
end)
RegisterNUICallback('fetchResource', function(data, cb)
TriggerServerEvent('oxmysql:fetchResource', data)
cb(true)
end)
RegisterNetEvent('oxmysql:loadResource', function(data)
SendNUIMessage({
action = 'loadResource',
data = data
})
end)