Files
red-valley/resources/[framework]/[addons]/qs-vehiclekeys/client/custom/TextUI/HelpNotification.lua
2026-03-29 21:41:17 +03:00

14 lines
233 B
Lua

if Config.TextUI ~= "HelpNotification" then
return
end
function TextShow(msg)
SetTextComponentFormat("STRING")
AddTextComponentString(msg)
DisplayHelpTextFromStringLabel(0, 0, 1, -1)
end
function TextClose()
return
end