Files
2026-03-29 21:41:17 +03:00

23 lines
535 B
Lua

-- RED VALLEY: License Dialog Client
-- Primește event de la server, afișează NUI dialog
RegisterNetEvent("rv:showLicenseDialog", function()
SetNuiFocus(true, true)
SendNUIMessage({
action = "show"
})
end)
-- NUI Callbacks
RegisterNUICallback("close", function(data, cb)
SetNuiFocus(false, false)
cb("ok")
end)
RegisterNUICallback("route", function(data, cb)
SetNuiFocus(false, false)
-- Coordonate Școala de Șoferi (bit-driverschool)
SetNewWaypoint(214.45, -1400.163)
cb("ok")
end)