c39103e896
+ 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.
34 lines
557 B
Lua
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 |