Files
Elite-Gaming-FiveM/resources/Fire-Script/client/utils.lua
T
Jacob c39103e896 Safe Zone air vehicles whitelist, updated holograms and scripts.
+ Updated Safe-Zones to whitelist air vehicles from being stopped.
+ Latest version of wl_wars2x police radar.
+ Updated weapon restrictions.
+ Fire-Scripts updated to latest version.
2022-01-16 16:06:50 +00:00

34 lines
557 B
Lua

--================================--
-- FIRE SCRIPT v1.7.6 --
-- by GIMI (+ foregz, Albo1125) --
-- License: GNU GPL 3.0 --
--================================--
-- Chat
function sendMessage(text)
TriggerEvent(
"chat:addMessage",
{
templateId = "firescript",
args = {
"FireScript v1.7.4",
text
}
}
)
end
-- Table functions
function countElements(table)
local count = 0
if type(table) == "table" then
for k, v in pairs(table) do
count = count + 1
end
end
return count
end
syncInProgress = false