15 lines
303 B
Lua
15 lines
303 B
Lua
|
RegisterNetEvent('cd_drawtextui:ShowUI')
|
||
|
AddEventHandler('cd_drawtextui:ShowUI', function(action, text)
|
||
|
SendNUIMessage({
|
||
|
action = action,
|
||
|
text = text,
|
||
|
})
|
||
|
end)
|
||
|
|
||
|
RegisterNetEvent('cd_drawtextui:HideUI')
|
||
|
AddEventHandler('cd_drawtextui:HideUI', function()
|
||
|
SendNUIMessage({
|
||
|
action = 'hide'
|
||
|
})
|
||
|
end)
|