238a6ba93b
vehicles and install new scripts
11 lines
278 B
Lua
11 lines
278 B
Lua
function alert(msg)
|
|
SetTextComponentFormat("STRING")
|
|
AddTextComponentString(msg)
|
|
DisplayHelpTextFromStringLabel(0, 0, 1, -1)
|
|
end
|
|
|
|
function notify(string)
|
|
SetNotificationTextEntry("STRING")
|
|
AddTextComponentString(string)
|
|
DrawNotification(true, false)
|
|
end |