structura foldere

mutat kq- folders in un singur folder [kq]
This commit is contained in:
2026-03-30 01:55:03 +03:00
parent af1286d583
commit c291b81f26
2319 changed files with 0 additions and 14 deletions

View File

@@ -0,0 +1,19 @@
function IsWhitelisted(vehicle)
for index, value in ipairs(Config.whitelist.vehicles) do
if GetHashKey(value) == GetEntityModel(vehicle) then
return true
end
end
return false
end
if Config.toggleCommands then
RegisterCommand('stopsmoke', function(source, args)
smokeActive = false
end)
RegisterCommand('startsmoke', function(source, args)
smokeActive = true
end)
end