Config = Config or {} --[[ Author: JDev17#8160 TRANSLATION: To create a new translation file, copy an existing one and rename it to e.g. es (spanish), then translate it and change the imported file in the fxmanifest under shared_scripts. GARAGE CONFIGURATION EXAMPLE: ['somegarage'] = { ['Zone'] = { ['Shape'] = { -- Create a polyzone by using '/pzcreate poly', '/pzadd' and '/pzfinish' or '/pzcancel' to cancel it. the newly created polyzone will be in txData/QBCoreFramework_******.base/polyzone_created_zones.txt vector2(-1030.4713134766, -3016.3388671875), vector2(-970.09686279296, -2914.7397460938), vector2(-948.322265625, -2927.9030761718), vector2(-950.47174072266, -2941.6584472656), vector2(-949.04180908204, -2953.9467773438), vector2(-940.78369140625, -2957.2941894532), vector2(-943.88732910156, -2964.5512695312), vector2(-897.61529541016, -2990.0505371094), vector2(-930.01025390625, -3046.0695800782), vector2(-942.36407470704, -3044.7858886718), vector2(-952.97467041016, -3056.5122070312), vector2(-957.11712646484, -3057.0900878906) }, ['minZ'] = 12.5, -- min height of the parking zone, cannot be the same as maxZ, and must be smaller than maxZ ['maxZ'] = 20.0, -- max height of the parking zone -- Important: Make sure the parking zone is high enough - higher than the tallest vehicle and touches the ground (turn on debug to see) }, label = 'Hangar', -- label displayed on phone type = 'public', -- 'public', 'job', 'depot' or 'gang' showBlip = false, -- optional, when not defined, defaults to false blipName = 'Police', -- otional blipNumber = 90, -- optional, numbers can be found here: https://docs.fivem.net/docs/game-references/blips/ blipColor = 69, -- optional, defaults to 3 (Blue), numbers can be found here: https://docs.fivem.net/docs/game-references/blips/ blipcoords = vector3(-972.66, -3005.4, 13.32), -- blip coordinates job = 'police', -- optional, everyone can use it when not defined -- job = {'police', 'ambulance'), -- optional, multi job support useVehicleSpawner = true, uses the configured job vehicles, make sure to have the job attribute set! (job = 'police') <--- NEW jobGarageIdentifier = 'pd1', required when using vehicle spawner, references the JobVehicles down below, make sure this matches what you used in the JobVehicles table <--- NEW gang = 'vagos', -- optional, same as job but for gangs, do not use both -- gang = {'vagos', 'gsf'}, -- optional, multi gang support jobVehiclesIndex = 'pd1', -- the corresponding index (JobVehicles) vehicleCategories = {'helicopter', 'plane'}, -- categories defined in VehicleCategories drawText = 'Hangar', -- the drawtext text, shown when entering the polyzone of that garage ParkingDistance = 10.0 -- Optional ParkingDistance, to override the global ParkingDistance SpawnDistance = 5.0 -- Optional SpawnDistance, to override the global SpawnDistance debug = false -- will show the polyzone and the parking spots, helpful when creating new garages. If too many garages are set to debug, it will not show all parking lots ExitWarpLocations: { -- Optional, Used for e.g. Boat parking, to teleport the player out of the boat to the closest location defined in the list. vector3(-807.15, -1496.86, 1.6), vector3(-800.17, -1494.87, 1.6), vector3(-792.92, -1492.18, 1.6), vector3(-787.58, -1508.59, 1.6), vector3(-794.89, -1511.16, 1.6), vector3(-800.21, -1513.05, 1.6), } }, ]] -- NEW -- Config.ShowNearestParkingOnly = false -- whether to show only the nearest parking lot only (blip) Config.MinImpoundDamage = 1 -- vehicle can be retrieved from impound if vehicle or vehicle body damage is below this -- NEW --- -- There is a new clientside export called 'TrackVehicleByPlate' that can be used to track vehicles by plate, this is useful for other scripts that want to track vehicles by plate (e.g. exports['qb-garages']:TrackVehicleByPlate(plate)) -- And the clientside event 'qb-garages:client:TrackVehicleByPlate'(e.g. TriggerEvent('qb-garages:client:TrackVehicleByPlate', plate)) Config.TrackVehicleByPlateCommand = 'trackvehicle' Config.EnableTrackVehicleByPlateCommand = true -- Allow players to track their vehicles by plate using /trackvehicle Config.TrackVehicleByPlateCommandPermissionLevel = 'god' -- Permission level required to use /trackvehicle , false for anyone / everyone -- NEW -- Config.SharedHouseGarage = true -- Allow shared house garages, if false, the player can only access their own vehicles Config.SharedGangGarages = false -- Allow shared gang garages, if false, the player can only access their own vehicles -- for specific gangs, use this: -- Config.SharedGangGarages = { -- ['vagos'] = true, -- Allow shared gang garages, if false, the player can only access their own vehicles -- ['gsf'] = true, -- Allow shared gang garages, if false, the player can only access their own vehicles -- } -- NEW --- Config.AllowParkingAnyonesVehicle = false -- Allow anyones vehicle to be stored in the garage, if false, only vehicles you own can be stored in the garage (supports only public garages) Config.AllowParkingFromOutsideVehicle = false -- Allow parking from outside the vehicle, if false, you have to be inside the vehicle to park it Config.VehicleParkDistance = 10.0 -- Distance from the player to the vehicle to park it, radial option will dissapear beyond this distance Config.GlobalParking = true -- if true, you can access your cars from any garage, if false, you can only access your cars from the garage you stored them in Config.SpawnVehiclesServerside = false -- REQUIRES THE ABSOLUTE LATEST VERSION OF QBCORE, OR MAKE SURE YOU HAVE THESE: https://github.com/qbcore-framework/qb-core/blob/81ffd872319d2eb8e496c3b3faaf37e791912c84/server/events.lua#L252 -- Only relevant if AllowSpawningFromAnywhere = false Config.SpawnAtFreeParkingSpot = true -- Will spawn at the closest free parking spot if you walk up to a occupied parking spot (basically you have to walk up close to a parking lot but it does not matter if there is a vehicle blocking the spawn as it will spawn at the closest free parking spot) Config.StoreParkinglotAccuratly = false -- store the last parking lot in the DB, if set to true, make sure to apply / run patch1.sql, I recommend applying the tracking snippet for qb-phone from the ReadMe to the phone so you can track the vehicle to the exact parking lot Config.SpawnAtLastParkinglot = false -- spawn the vehicle at the last parked location if StoreParkinglotAccuratly = true, if set to true, make sure to apply / run patch1.sql Config.GarageNameAsBlipName = true -- if set to true, the blips name will match the garage name Config.FuelScript = 'cdn-fuel' -- change to lj-fuel / ps-fuel if you use lj-fuel / ps-fuel or something else if you use any other LegcyFuel compatible script Config.AllowSpawningFromAnywhere = true -- if set to true, the car can be spawned from anywhere inside the zone on the closest parking lot, if set to false you will have to walk up to a parking lot Config.AutoRespawn = true --True == auto respawn cars that are outside into your garage on script restart, false == does not put them into your garage and players have to go to the impound Config.WarpPlayerIntoVehicle = false -- True == Will Warp Player Into their vehicle after pulling it out of garage. False It will spawn on the parking lot / in front of them (Global, can be overriden by each garage) Config.HouseParkingdrawText = 'Park Arazisi' -- text when driving on to the HOUSE parking lot Config.ParkingDistance = 2.0 -- Distance to the parking lot when trying to park the vehicle (Global, can be overriden by each garage) Config.SpawnDistance = 4.5 -- The maximum distance you can be from a parking spot, to spawn a car (Global, can be overriden by each garage) Config.DepotPrice = 60.0 -- The price to take out a despawned vehicle from impound. Config.DrawTextPosition = 'left' -- location of drawtext: left, top, right --[[ Job Vehicles Configuration Every job-specific garage is identified by a unique jobGarageIdentifier. For each garage: - `label` provides a descriptive name for the garage. - `vehicles` is a grade-based list of vehicles available for that grade. For each vehicle: - `model` is the internal name of the vehicle. - `label` is the display name for the vehicle. - `configName` (optional) is a unique configuration identifier. - `job` (optional) restricts the vehicle to a specific job if multiple have access to this garage. If omitted, it's available for all jobs that have access to this sepecific garage. - with multi job restriction: {"police", "swat"} --> If, for instance, 'ambulance' had access to this garage too, they wouldn't see this vehicle, only police and swat (in this example). ---- NOTE: If you want the same vehicle with different liveries, create two entries with distinct configurations. -- set useVehicleSpawner = true for each garage that has type job and should use the vehicle spawner instead of personal vehicles ]] Config.JobVehicles = { -- ['someRandomIdentifier'] = { -- <-- jobGarageIdentifier -- label = "Police Vehicles", -- vehicles = { -- -- Grade 0 -- [0] = { -- -- !! IMPORTANT !! - READ THIS -- -- you can either define the configName, model and label like this and use the vehicle settings below to define extras and liveries for your vehicles -- -- this way you can define a single config and can reuse it for any vehicle you want or you can just use the old way without configuring extras and liveries -- [1] = { label = "Police Car 1", model = "police", configName = "myUniqueNameForThisCarConfiguration", job = "police" }, -- job is optional, leave it away if this garage will only be accessed by the same job -- -- [2] = { label = "My Police / Swat Helicopter", model = "myhelomodel", configName = "myUniqueNameForThisHeloConfiguration3", job = {"police", "swat"} }, -- example -- -- [3] = { label = "My Ambulance Helicopter", model = "myhelomodel", configName = "myUniqueNameForThisHeloConfiguration4", job = "ambulance" or { "ambulance" } }, -- example -- ["police2"] = "Police Car 2", -- ["police3"] = "Police Car 3", -- ["police4"] = "Police Car 4", -- ["policeb"] = "Police Car 5", -- ["policet"] = "Police Car 6", -- ["sheriff"] = "Sheriff Car 1", -- ["sheriff2"] = "Sheriff Car 2", -- }, -- -- Grade 1 -- [1] = { -- ["police"] = "Police Car 1", -- ["police2"] = "Police Car 2", -- ["police3"] = "Police Car 3", -- ["police4"] = "Police Car 4", -- ["policeb"] = "Police Car 5", -- ["policet"] = "Police Car 6", -- ["sheriff"] = "Sheriff Car 1", -- ["sheriff2"] = "Sheriff Car 2", -- }, -- -- Grade 2 -- [2] = { -- ["police"] = "Police Car 1", -- ["police2"] = "Police Car 2", -- ["police3"] = "Police Car 3", -- ["police4"] = "Police Car 4", -- ["policeb"] = "Police Car 5", -- ["policet"] = "Police Car 6", -- ["sheriff"] = "Sheriff Car 1", -- ["sheriff2"] = "Sheriff Car 2", -- }, -- -- Grade 3 -- [3] = { -- ["police"] = "Police Car 1", -- ["police2"] = "Police Car 2", -- ["police3"] = "Police Car 3", -- ["police4"] = "Police Car 4", -- ["policeb"] = "Police Car 5", -- ["policet"] = "Police Car 6", -- ["sheriff"] = "Sheriff Car 1", -- ["sheriff2"] = "Sheriff Car 2", -- }, -- -- Grade 4 -- [4] = { -- ["police"] = "Police Car 1", -- ["police2"] = "Police Car 2", -- ["police3"] = "Police Car 3", -- ["police4"] = "Police Car 4", -- ["policeb"] = "Police Car 5", -- ["policet"] = "Police Car 6", -- ["sheriff"] = "Sheriff Car 1", -- ["sheriff2"] = "Sheriff Car 2", -- } -- } -- } } Config.VehicleSettings = { -- ['myUniqueNameForThisCarConfiguration'] = { -- configName -- ["livery"] = 1, -- ["extras"] = { -- ["1"] = true, -- on/off -- ["2"] = true, -- ["3"] = true, -- ["4"] = true, -- ["5"] = true, -- ["6"] = true, -- ["7"] = true, -- ["8"] = true, -- ["9"] = true, -- ["10"] = true, -- ["11"] = true, -- ["12"] = true, -- ["13"] = true, -- }, -- } } -- '/restorelostcars ' allows you to restore cars that have been parked in garages which no longer exist in the config (garage renamed or removed). The restored cars get sent to the destination garage or if left empty to a random garage in the list. -- NOTE: This may also send helis and boats to said garaga so choose wisely Config.RestoreCommandPermissionLevel = 'god' -- sets the permission level for the above mentioned command -- THESE VEHICLE CATEGORIES ARE NOT RELATED TO THE ONES IN shared/vehicles.lua -- Here you can define which category contains which vehicle class. These categories can then be used in the garage config -- All vehicle classes can be found here: https://docs.fivem.net/natives/?_0x29439776AAA00A62 Config.VehicleCategories = { ['car'] = { 0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12 }, ['motorcycle'] = { 8 }, ['other'] = { 13 }, -- cycles: 13 - you can move cycles to cars if you want and have anything else like military vehicles in this category ['boat'] = { 14 }, ['helicopter'] = { 15 }, ['plane'] = { 16 }, ['service'] = { 17 }, ['emergency'] = { 18 }, ['military'] = { 19 }, ['commercial'] = { 20 }, -- you can also create new / delete or update categories, and use them below in the config. } Config.HouseGarageCategories = {'car', 'motorcycle', 'other'} -- Which categories are allowed to be parked at a house garage Config.VehicleHeading = 'driverside' -- only used when NO parking spots are defined in the garage config --[[^^^^^^^^ 'forward' = will face the sameway as the ped 'driverside' = will put the driver door closets to the ped 'hood' = will face the hood towards ped 'passengerside' = will put the passenger door closets to the ped ]] Config.SharedJobGarages = { -- define the job garages which are shared --'pdgarage', } Config.Garages = { --[[ types: - public - job - depot vehicleCategories: - car - motorcycle - boat - helicopter - plane - other ]] ['hastahane'] = { ['Zone'] = { ['Shape'] = { vector2(-814.95, -1206.70), vector2(-830.41, -1193.75), vector2(-826.37, -1189.39), vector2(-811.02, -1202.54), }, ['minZ'] = 4.5, -- min height of the parking zone ['maxZ'] = 7.5, -- max height of the parking zone }, label = 'Hastane Garajı', showBlip = false, blipcoords = vector3(93.02, 3739.32, 39.53), blipName = "Garaj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(-814.58, -1203.28, 6.93, 137.98), vector4(-816.99, -1201.20, 6.93, 138.91), vector4(-819.30, -1198.99, 6.93, 139.42), vector4(-821.84, -1196.98, 6.83, 142.07), vector4(-824.35, -1195.00, 6.72, 139.93), vector4(-826.55, -1192.73, 6.61, 139.74), } }, ['pillboxgarage2'] = { ['Zone'] = { ['Shape'] = { vector2(75.48, -576.16), vector2(63.96, -572.52), vector2(55.68, -570.44), vector2(48.57, -568.98), vector2(38.42, -567.4), vector2(31.73, -566.63), vector2(20.83, -566.22), vector2(19.61, -569.19), vector2(15.02, -567.57), vector2(3.76, -598.58), vector2(23.77, -605.67), vector2(7.99, -648.6), vector2(21.81, -653.62), vector2(20.7, -657.82), vector2(32.76, -662.45), vector2(34.63, -661.22), vector2(48.2, -666.25), vector2(78.06, -584.13), vector2(73.72, -582.12), vector2(2018.43, 3066.67), }, ['minZ'] = 30.6, -- min height of the parking zone ['maxZ'] = 32.6, -- max height of the parking zone }, label = 'Lower Power St Parking', showBlip = false, blipcoords = vector3(37.08, -616.99, 34.19), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(48.46, -600.58, 31.05, 339.83), vector4(45.27, -598.81, 31.05, 337.94), vector4(41.67, -597.67, 31.05, 340.45), vector4(38.56, -596.16, 31.05, 338.12), vector4(34.99, -595.47, 31.05, 340.89), vector4(31.2, -593.92, 31.05, 339.65), vector4(27.64, -592.9, 31.05, 341.86), vector4(7.72, -596.58, 31.05, 251.56), vector4(9.52, -592.97, 31.05, 249.91), vector4(10.79, -589.67, 31.05, 248.15), vector4(11.64, -586.28, 31.05, 250.38), vector4(13.02, -582.73, 31.05, 250.56), vector4(14.43, -579.28, 31.05, 250.48), vector4(15.79, -575.91, 31.05, 250.57), vector4(16.99, -572.2, 31.05, 250.35), vector4(32.27, -579.78, 31.05, 338.59), vector4(36.28, -581.01, 31.05, 342.11), vector4(39.79, -581.82, 31.05, 339.93), vector4(42.7, -583.86, 31.05, 338.52), vector4(46.25, -584.88, 31.05, 343.14), vector4(49.66, -586.2, 31.05, 341.91), vector4(53.64, -586.94, 31.05, 341.75), vector4(57.03, -588.71, 31.05, 340.63), vector4(64.95, -576.19, 31.05, 163.06), vector4(68.08, -577.66, 31.05, 154.95), vector4(72.16, -578.61, 31.05, 155.89), vector4(73.41, -586.19, 31.05, 69.64), vector4(72.48, -589.82, 31.05, 67.8), vector4(70.89, -592.9, 31.05, 68.41), vector4(69.46, -596.76, 31.05, 68.6), vector4(67.89, -600.17, 31.05, 69.91), vector4(67.24, -603.68, 31.05, 67.92), vector4(65.89, -607.19, 31.05, 68.69), vector4(64.22, -611.22, 31.1, 68.4), vector4(54.68, -638.55, 31.09, 246.21), vector4(53.23, -641.75, 31.06, 69.7), vector4(52.06, -645.06, 31.05, 70.13), vector4(50.58, -648.56, 31.05, 67.35), vector4(49.61, -652.33, 31.05, 69.85), vector4(48.33, -655.49, 31.05, 68.67), vector4(47.37, -659.23, 31.05, 69.73), vector4(45.67, -662.47, 31.05, 66.96), vector4(2018.42, 3066.67, 47.06, 61.48), } }, ['galeri'] = { ['Zone'] = { ['Shape'] = { vector2(-12.05, -1091.51), vector2(-19.36, -1112.73), vector2(-13.62, -1114.38), vector2(-4.18, -1087.89), }, ['minZ'] = 24.5, -- min height of the parking zone ['maxZ'] = 30.5, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(-14.10, -1108.05, 26.67, 102.05), vector4(-12.74, -1105.03, 26.67, 102.05), vector4(-11.53, -1101.03, 26.67, 102.05), vector4(-10.34, -1097.89, 26.67, 104.88), } }, ['malikhane1'] = { ['Zone'] = { ['Shape'] = { vector2(-110.18, 828.36), vector2(-102.29, 829.76), vector2(-100.41, 819.22), vector2(-107.46, 818.25), }, ['minZ'] = 234.5, -- min height of the parking zone ['maxZ'] = 236.5, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(-102.53, 823.80, 235.73, 8.73), vector4(-107.18, 824.08, 235.72, 23.84), } }, ['malikhane2'] = { ['Zone'] = { ['Shape'] = { vector2(1398.14, 1120.55), vector2(1417.04, 1120.54), vector2(1417.01, 1114.38), vector2(1398.30, 1114.36), }, ['minZ'] = 113.5, -- min height of the parking zone ['maxZ'] = 115.5, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(1414.13, 1118.10, 114.84, 87.42), vector4(1408.21, 1118.11, 114.84, 90.53), vector4(1399.84, 1118.01, 114.84, 91.22), } }, ['malikhane3'] = { ['Zone'] = { ['Shape'] = { vector2(-1533.77, 84.72), vector2(-1524.32, 80.00), vector2(-1521.88, 87.00), vector2(-1528.63, 92.87), }, ['minZ'] = 54.56, -- min height of the parking zone ['maxZ'] = 57.5, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(-1529.82, 88.18, 55.66, 312.94), vector4(-1525.91, 84.31, 55.56, 316.10), } }, ['malikhane4'] = { ['Zone'] = { ['Shape'] = { vector2(-1796.71, 462.87), vector2(-1787.99, 466.12), vector2(-1784.83, 453.59), vector2(-1796.89, 453.75), }, ['minZ'] = 125.0, -- min height of the parking zone ['maxZ'] = 131.5, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(-1790.31, 456.37, 127.30, 85.78), vector4(-1790.35, 460.88, 127.31, 106.23), } }, ['malikhane5'] = { ['Zone'] = { ['Shape'] = { vector2(-3197.30, 834.75), vector2(-3208.43, 826.89), vector2(-3216.25, 838.84), vector2(-3203.30, 847.13), }, ['minZ'] = 7.5, -- min height of the parking zone ['maxZ'] = 10.5, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(-3212.40, 837.45, 8.93, 124.04), vector4(-3208.65, 831.41, 8.93, 120.68), vector4(-3201.70, 836.01, 8.93, 122.79), vector4(-3205.19, 842.48, 8.93, 120.76), } }, ['malikhane6'] = { ['Zone'] = { ['Shape'] = { vector2(-2657.75, 1303.52), vector2(-2657.89, 1311.30), vector2(-2672.85, 1311.27), vector2(-2672.68, 1303.06), }, ['minZ'] = 146.5, -- min height of the parking zone ['maxZ'] = 149.0, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(-2669.00, 1305.01, 147.12, 266.19), vector4(-2668.75, 1309.77, 147.12, 269.96), vector4(-2662.10, 1309.74, 147.12, 270.28), vector4(-2662.25, 1305.35, 147.12, 269.48), } }, ['malikhane7'] = { ['Zone'] = { ['Shape'] = { vector2(-2605.09, 1674.31), vector2(-2615.70, 1684.75), vector2(-2610.75, 1689.43), vector2(-2600.86, 1679.56), }, ['minZ'] = 140.0, -- min height of the parking zone ['maxZ'] = 142.5, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(-2606.06, 1677.31, 141.86, 225.51), vector4(-2603.61, 1679.59, 141.87, 224.73), vector4(-2611.62, 1685.18, 141.87, 226.16), } }, ['malikhane8'] = { ['Zone'] = { ['Shape'] = { vector2(737.48, 3406.36), vector2(736.16, 3412.71), vector2(724.87, 3412.66), vector2(727.19, 3404.54), }, ['minZ'] = 61.0, -- min height of the parking zone ['maxZ'] = 63.5, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(728.26, 3409.25, 62.68, 197.12), vector4(733.94, 3410.53, 62.68, 184.13), } }, ['malikhane9'] = { ['Zone'] = { ['Shape'] = { vector2(-879.50, -51.16), vector2(-873.01, -48.91), vector2(-870.41, -56.66), vector2(-875.54, -58.87), }, ['minZ'] = 36.0, -- min height of the parking zone ['maxZ'] = 39.5, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(-873.75, -55.75, 38.16, 296.75), vector4(-875.39, -51.80, 38.17, 295.04), } }, ['ballas'] = { ['Zone'] = { ['Shape'] = { vector2(105.78, -1960.02), vector2(105.69, -1952.66), vector2(101.18, -1952.34), vector2(99.79, -1959.52), }, ['minZ'] = 19.0, -- min height of the parking zone ['maxZ'] = 21.5, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(105.06, -1953.16, 20.61, 2.69), } }, ['vagos'] = { ['Zone'] = { ['Shape'] = { vector2(331.15, -2025.83), vector2(326.95, -2031.14), vector2(315.97, -2020.82), vector2(319.52, -2016.06), }, ['minZ'] = 20.0, -- min height of the parking zone ['maxZ'] = 22.0, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(318.71, -2019.78, 20.72, 136.45), vector4(321.19, -2021.79, 20.81, 142.61), vector4(323.59, -2023.59, 20.92, 142.30), vector4(325.77, -2025.47, 21.02, 146.71), } }, ['families'] = { ['Zone'] = { ['Shape'] = { vector2(-140.90, -1645.16), vector2(-144.40, -1641.93), vector2(-136.71, -1631.60), vector2(-132.83, -1634.44), }, ['minZ'] = 31.0, -- min height of the parking zone ['maxZ'] = 33.0, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(-140.65, -1640.20, 32.48, 323.60), vector4(-136.77, -1635.22, 32.37, 321.55), } }, ['btcgaleri'] = { ['Zone'] = { ['Shape'] = { vector2(129.29, -1110.63), vector2(129.57, -1104.02), vector2(123.80, -1103.92), vector2(123.64, -1110.71), }, ['minZ'] = 28.5, -- min height of the parking zone ['maxZ'] = 31.5, -- max height of the parking zone }, label = 'BTC Garaj', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", job = 'btcgaleri', blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'BTC Garaj', debug = false, ['ParkingSpots'] = { vector4(126.74, -1105.46, 29.20, 1.01), } }, ['mekanik3park'] = { ['Zone'] = { ['Shape'] = { vector2(534.44, -139.39), vector2(534.49, -133.30), vector2(554.36, -133.33), vector2(554.61, -139.71), }, ['minZ'] = 57.5, -- min height of the parking zone ['maxZ'] = 61.5, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(548.86, -136.10, 59.36), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(548.86, -136.10, 59.36, 180.08), vector4(552.77, -135.91, 59.38, 179.32), vector4(544.87, -135.79, 59.39, 182.16), vector4(540.92, -136.01, 59.49, 185.66), vector4(536.79, -136.16, 59.62, 163.59), } }, ['lspd'] = { ['Zone'] = { ['Shape'] = { vector2(463.32, -1014.53), vector2(464.38, -1019.99), --vector2(447.88, -998.87), --vector2(435.09, -998.76), }, ['minZ'] = 23.5, -- min height of the parking zone ['maxZ'] = 27.5, -- max height of the parking zone }, label = 'CPD Garaj', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'CPD Garaj', debug = true, ['ParkingSpots'] = { vector4(437.23, -987.55, 25.73, 356.01), vector4(463.32, -1014.53, 25.69, 28.07), vector4(464.38, -1019.99, 25.69, 28.1), vector4(426.16, -985.24, 25.73, 267.08), vector4(425.76, -982.16, 25.73, 271.96), vector4(425.44, -976.5, 25.73, 270.73), vector4(437.13, -986.19, 25.69, 87.87), } }, ['sasp'] = { ['Zone'] = { ['Shape'] = { vector2(824.68, -1329.20), vector2(824.72, -1352.16), vector2(831.82, -1355.80), vector2(831.64, -1331.10), }, ['minZ'] = 24.5, -- min height of the parking zone ['maxZ'] = 28.5, -- max height of the parking zone }, label = 'SASP Garaj', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'SASP Garaj', debug = false, ['ParkingSpots'] = { vector4(828.93, -1339.70, 26.09, 64.70), vector4(828.50, -1345.34, 26.09, 64.70), vector4(828.76, -1351.45, 26.10, 64.58), } }, ['dppd'] = { ['Zone'] = { ['Shape'] = { vector2(389.81, -1628.29), vector2(401.88, -1613.78), vector2(406.64, -1617.23), vector2(394.03, -1631.98), }, ['minZ'] = 27.5, -- min height of the parking zone ['maxZ'] = 32.5, -- max height of the parking zone }, label = 'DPPD Garaj', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'DPPD Garaj', debug = false, ['ParkingSpots'] = { vector4(393.67, -1629.01, 29.29, 47.99), vector4(395.58, -1626.40, 29.29, 48.70), vector4(397.42, -1624.02, 29.29, 52.33), vector4(399.43, -1621.64, 29.29, 50.29), vector4(401.30, -1619.27, 29.29, 52.37), vector4(403.49, -1617.03, 29.29, 76.83), } }, ['saspimp'] = { ['Zone'] = { ['Shape'] = { vector2(847.85, -1356.67), vector2(840.80, -1353.17), vector2(840.74, -1330.34), vector2(847.50, -1333.61), }, ['minZ'] = 24.5, -- min height of the parking zone ['maxZ'] = 28.5, -- max height of the parking zone }, label = 'SASP Çekilmiş', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'depot', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'SASP Çekilmiş', debug = false, ['ParkingSpots'] = { vector4(843.76, -1334.25, 26.10, 243.10), vector4(843.44, -1340.13, 26.05, 243.10), vector4(843.18, -1345.84, 26.06, 243.10), vector4(843.50, -1351.97, 26.08, 243.10), } }, ['fbi'] = { ['Zone'] = { ['Shape'] = { vector2(2578.35, -383.84), vector2(2572.82, -384.07), vector2(2572.21, -359.63), vector2(2578.66, -359.81), }, ['minZ'] = 91.5, -- min height of the parking zone ['maxZ'] = 94.5, -- max height of the parking zone }, label = 'Galeri', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(2575.49, -380.94, 92.99, 91.64), vector4(2575.52, -377.28, 92.99, 87.61), vector4(2575.65, -373.74, 92.99, 90.46), vector4(2575.55, -370.10, 92.99, 76.97), vector4(2575.64, -366.25, 92.99, 94.51), vector4(2575.61, -362.23, 92.99, 90.54), } }, ['iskelemotel'] = { ['Zone'] = { ['Shape'] = { vector2(-1722.29, -1133.55), vector2(-1733.63, -1123.98), vector2(-1725.89, -1115.84), vector2(-1714.44, -1125.12), }, ['minZ'] = 11.5, -- min height of the parking zone ['maxZ'] = 15.5, -- max height of the parking zone }, label = 'Motel', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(-1722.54, -1130.19, 13.05, 48.98), vector4(-1728.19, -1125.39, 13.02, 48.43), vector4(-1724.97, -1121.37, 13.13, 51.39), vector4(-1720.24, -1125.34, 13.13, 36.28), vector4(-1717.22, -1122.06, 13.15, 49.48), vector4(-1721.49, -1118.08, 13.15, 49.07), } }, ['hastane'] = { ['Zone'] = { ['Shape'] = { vector2(298.78, -614.69), vector2(290.08, -610.94), vector2(295.12, -599.77), vector2(302.13, -602.62), }, ['minZ'] = 42.5, -- min height of the parking zone ['maxZ'] = 46.5, -- max height of the parking zone }, label = 'Hastane', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(297.20, -605.07, 43.32, 70.42), vector4(295.92, -607.61, 43.33, 66.53), vector4(294.94, -610.47, 43.35, 72.23), } }, ['gunshop'] = { ['Zone'] = { ['Shape'] = { vector2(22.04, -1114.97), vector2(37.08, -1088.23), vector2(43.89, -1089.64), vector2(30.02, -1114.35), }, ['minZ'] = 27.5, -- min height of the parking zone ['maxZ'] = 31.5, -- max height of the parking zone }, label = 'Gunshop', showBlip = false, blipcoords = vector3(-48.47, -1111.82, 26.67), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(27.60, -1110.92, 29.31, 268.42), vector4(29.52, -1108.06, 29.32, 268.91), vector4(31.38, -1103.49, 29.37, 270.24), vector4(32.78, -1100.74, 29.41, 268.67), vector4(34.29, -1098.36, 29.43, 275.77), vector4(35.62, -1095.95, 29.49, 270.83), vector4(37.05, -1093.60, 29.52, 283.04), vector4(38.20, -1091.03, 29.56, 273.75), } }, ['burgershot'] = { ['Zone'] = { ['Shape'] = { vector2(-1164.68, -896.01), vector2(-1178.15, -873.59), vector2(-1172.90, -869.99), vector2(-1159.63, -891.57), }, ['minZ'] = 12.5, -- min height of the parking zone ['maxZ'] = 17.5, -- max height of the parking zone }, label = 'Qaraj', showBlip = false, blipcoords = vector3(-223.45, -1700.46, 34.04), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(-1163.89, -891.43, 14.12, 119.22), vector4(-1165.26, -887.61, 14.14, 111.02), vector4(-1168.14, -882.95, 14.14, 120.86), vector4(-1170.06, -879.47, 14.15, 131.62), vector4(-1172.73, -876.55, 14.12, 119.81), vector4(-1174.24, -872.98, 14.14, 123.28), } }, ['teslimatparkalani'] = { ['Zone'] = { ['Shape'] = { vector2(168.81, -3012.21), vector2(169.63, -2985.12), vector2(159.09, -2986.05), vector2(158.73, -3012.21), }, ['minZ'] = 4.5, -- min height of the parking zone ['maxZ'] = 6.5, -- max height of the parking zone }, label = 'Qaraj', showBlip = false, blipcoords = vector3(-223.45, -1700.46, 34.04), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(163.66, -3009.35, 5.93, 267.11), vector4(163.79, -3006.02, 5.93, 274.88), vector4(163.74, -3002.83, 5.93, 268.20), vector4(163.81, -2999.69, 5.93, 272.19), vector4(163.74, -2996.45, 5.93, 271.83), vector4(163.65, -2993.32, 5.92, 271.89), vector4(163.66, -2989.85, 5.91, 269.41), } }, ['yellowjack'] = { ['Zone'] = { ['Shape'] = { vector2(2020.13, 3067.50), vector2(2017.55, 3063.41), vector2(2014.95, 3059.92), vector2(2012.77, 3056.75), vector2(2009.03, 3054.31), vector2(2003.05, 3056.37), vector2(1996.75, 3057.49), vector2(1992.05, 3061.00), vector2(1987.71, 3065.42), vector2(1988.39, 3069.82), vector2(1990.54, 3074.84), vector2(1992.64, 3078.39), vector2(1997.34, 3080.77), vector2(2000.24, 3078.56), vector2(2000.77, 3073.49), vector2(2003.65, 3071.10), vector2(2008.01, 3074.15), vector2(2011.23, 3073.09), vector2(2011.14, 3068.26), vector2(2016.30, 3068.59) }, ['minZ'] = 45.5, ['maxZ'] = 49.5 }, label = 'Mirror Park Parking', showBlip = false, blipcoords = vector3(2016.33, 3068.60, 47.07), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(2016.33, 3068.60, 47.07, 278.51), vector4(2015.75, 3063.60, 47.05, 166.83), vector4(2013.50, 3060.33, 47.05, 162.66), vector4(2011.10, 3057.07, 47.05, 93.01), vector4(2006.57, 3054.90, 47.05, 54.56), vector4(2001.26, 3055.80, 47.05, 85.87), vector4(1997.18, 3057.77, 47.05, 62.68), vector4(1989.76, 3062.07, 47.05, 53.57), vector4(1990.94, 3069.67, 47.02, 354.16), vector4(1991.63, 3073.71, 47.03, 349.88), vector4(1994.34, 3078.22, 47.05, 323.17), vector4(1998.59, 3079.21, 47.06, 285.59), vector4(2001.96, 3074.58, 47.05, 178.88), vector4(2007.40, 3070.24, 47.06, 262.31), vector4(2012.19, 3071.32, 47.07, 283.16), } }, ['casinop'] = { ['Zone'] = { ['Shape'] = { vector2(915.48345947266, -14.229139328003), vector2(912.52160644531, -19.256662368774), vector2(914.41729736328, -20.468030929565), vector2(928.14013671875, -29.422761917114), vector2(931.68640136719, -24.097787857056), vector2(943.31915283203, -31.373510360718), vector2(940.18115234375, -36.682193756104), vector2(940.63336181641, -37.222324371338), vector2(941.06457519531, -38.056762695312), vector2(940.69250488281, -39.514526367188), vector2(945.86834716797, -42.898574829102), vector2(936.578125, -58.041912078857), vector2(935.71746826172, -59.93187713623), vector2(935.32781982422, -63.596141815186), vector2(935.49609375, -65.299346923828), vector2(936.2734375, -67.329566955566), vector2(938.08367919922, -69.736022949219), vector2(939.06182861328, -70.789291381836), vector2(942.05615234375, -73.50260925293), vector2(944.24096679688, -76.701873779297), vector2(945.71282958984, -80.333465576172), vector2(945.46759033203, -86.331184387207), vector2(944.24163818359, -90.072593688965), vector2(942.83435058594, -92.46647644043), vector2(928.69256591797, -105.37116241455), vector2(926.07592773438, -107.04386138916), vector2(922.68194580078, -107.79019927979), vector2(918.29956054688, -107.78350067139), vector2(914.76385498047, -106.68801879883), vector2(891.66986083984, -92.136535644531), vector2(894.90283203125, -86.966018676758), vector2(877.28314208984, -75.933624267578), vector2(873.83764648438, -81.048561096191), vector2(849.61877441406, -65.853485107422), vector2(842.07305908203, -59.212493896484), vector2(832.29779052734, -48.991901397705), vector2(836.66088867188, -44.546573638916), vector2(834.18530273438, -42.00004196167), vector2(832.93865966797, -39.975162506104), vector2(832.380859375, -35.275825500488), vector2(833.16229248047, -31.17188835144), vector2(839.43792724609, -22.388980865479), vector2(849.22601318359, -10.30827331543), vector2(871.66424560547, 12.689045906067), vector2(872.94342041016, 12.611633300781), vector2(881.33111572266, 7.0416121482849), vector2(880.61773681641, 5.6222538948059), vector2(880.45855712891, 1.066015958786), vector2(889.86468505859, -5.0284695625305), vector2(894.46960449219, -2.9582657814026), vector2(895.51623535156, -1.5529407262802) }, ['minZ'] = 77.50, ['maxZ'] = 80.00 }, label = 'Casino Parking', showBlip = false, blipcoords = vector3(888.47, -37.44, 78.76), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(874.36, -77.52, 78.34, 326.7), vector4(868.22, -74.12, 78.34, 327.6), vector4(865.89, -71.32, 78.34, 327.2), vector4(862.79, -70.26, 78.34, 327.35), vector4(859.57, -67.92, 78.34, 326.45), vector4(856.54, -66.59, 78.34, 326.94), vector4(853.6, -64.76, 78.34, 329.96), vector4(850.98, -62.23, 78.34, 315.33); vector4(848.28, -60.42, 78.34, 316.25), vector4(845.29, -58.06, 78.34, 316.99), vector4(843.2, -55.19, 78.34, 315.68), vector4(841.22, -52.13, 78.34, 315.19), vector4(838.31, -49.98, 78.34, 309.63), vector4(836.03, -47.87, 78.34, 310.48), vector4(871.34, -75.41, 78.34, 327.5), vector4(934.99, -72.5, 78.27, 132.69), vector4(937.69, -74.87, 78.27, 135.96), vector4(940.12, -77.9, 78.27, 124.93), vector4(874.36, -77.52, 78.34, 326.7), vector4(871.34, -75.41, 78.34, 327.5), vector4(894.66, -90.02, 78.34, 329.43), vector4(897.75, -92.07, 78.34, 328.5), vector4(900.96, -93.67, 78.34, 326.42), vector4(903.67, -95.7, 78.34, 328.69), vector4(906.77, -97.42, 78.34, 326.69), vector4(909.56, -98.98, 78.27, 329.54), vector4(912.88, -100.65, 78.27, 327.47), vector4(915.52, -102.44, 78.27, 328.46), vector4(919.92, -104.15, 78.27, 355.56), vector4(924.34, -102.86, 78.27, 23.29), vector4(928.29, -100.03, 78.27, 41.76), vector4(931.14, -98.26, 78.27, 42.82), vector4(933.29, -95.84, 78.27, 43.98), vector4(935.95, -93.66, 78.27, 43.12), vector4(938.28, -91.0, 78.27, 43.96), vector4(941.5, -86.74, 78.27, 71.64), vector4(942.22, -82.22, 78.27, 96.61), vector4(932.29, -67.33, 78.27, 108.81), vector4(931.48, -62.49, 78.27, 87.5), vector4(933.04, -58.41, 78.27, 74.44), vector4(934.81, -53.94, 78.27, 56.79), vector4(936.58, -51.51, 78.27, 59.07), vector4(938.49, -48.34, 78.27, 57.96), vector4(939.46, -45.37, 78.27, 57.51), vector4(941.87, -42.09, 78.27, 57.26), vector4(939.92, -33.37, 78.27, 147.28), vector4(937.11, -31.58, 78.27, 146.31), vector4(934.46, -29.74, 78.27, 147.43), vector4(931.24, -28.27, 78.27, 148.17), vector4(911.98, -15.91, 78.27, 148.59), vector4(908.33, -14.25, 78.27, 151.66), vector4(905.28, -11.85, 78.27, 146.75), vector4(901.6, -10.25, 78.27, 151.03), vector4(898.56, -7.47, 78.27, 150.42), vector4(894.74, -5.36, 78.27, 147.31), vector4(878.41, 5.09, 78.27, 148.03), vector4(874.81, 6.34, 78.27, 145.35), vector4(872.04, 8.2, 78.27, 147.69), vector4(857.52, -16.84, 78.27, 61.37), vector4(855.4, -18.91, 78.27, 56.95), vector4(853.22, -21.71, 78.27, 58.03), vector4(851.4, -24.62, 78.27, 56.48), vector4(849.71, -27.73, 78.27, 56.12), vector4(848.46, -30.95, 78.27, 58.58), vector4(846.43, -33.78, 78.27, 58.11), vector4(844.31, -36.58, 78.27, 58.6), vector4(851.99, -41.32, 78.27, 237.04), vector4(854.14, -38.45, 78.27, 237.84), vector4(855.52, -35.12, 78.27, 239.77), vector4(857.58, -32.6, 78.27, 237.61), vector4(859.49, -29.77, 78.27, 238.44), vector4(860.76, -26.41, 78.27, 239.23), vector4(862.82, -23.64, 78.27, 238.93), vector4(864.37, -20.41, 78.27, 237.61), vector4(867.05, -18.08, 78.27, 237.15), vector4(868.52, -15.1, 78.27, 236.79), vector4(870.25, -12.23, 78.27, 236.92), vector4(871.96, -9.18, 78.27, 236.79), vector4(860.59, -50.52, 78.27, 56.19), vector4(862.21, -47.59, 78.27, 57.87), vector4(864.07, -44.72, 78.27, 57.35), vector4(866.09, -41.98, 78.27, 59.81), vector4(868.02, -39.09, 78.27, 58.16), vector4(869.38, -35.99, 78.27, 59.41), vector4(871.76, -33.27, 78.27, 57.79), vector4(873.26, -30.41, 78.27, 58.11), vector4(875.5, -27.57, 78.27, 59.75), vector4(876.7, -24.3, 78.27, 55.59), vector4(878.68, -21.55, 78.27, 55.73), vector4(880.83, -18.82, 78.27, 58.7), vector4(882.29, -15.94, 78.27, 59.44), vector4(868.59, -55.55, 78.27, 239.79), vector4(870.31, -52.52, 78.27, 237.16), vector4(872.25, -49.62, 78.27, 238.25), vector4(873.82, -46.81, 78.27, 237.55), vector4(875.38, -43.64, 78.27, 240.61), vector4(877.57, -40.99, 78.27, 238.89), vector4(879.2, -37.86, 78.27, 239.24), vector4(881.32, -35.29, 78.27, 239.98), vector4(882.71, -32.06, 78.27, 239.47), vector4(884.88, -29.13, 78.27, 238.24), vector4(886.69, -26.11, 78.27, 238.21), vector4(888.29, -23.61, 78.27, 236.97), vector4(890.23, -20.25, 78.27, 237.91), vector4(879.01, -62.07, 78.27, 57.16), vector4(880.87, -59.46, 78.27, 56.4), vector4(882.31, -55.9, 78.27, 56.01), vector4(884.39, -53.05, 78.27, 55.15), vector4(886.74, -50.98, 78.27, 57.74), vector4(887.88, -47.3, 78.27, 56.18), vector4(889.9, -44.62, 78.27, 57.31), vector4(891.22, -41.1, 78.27, 56.82), vector4(893.37, -38.44, 78.27, 57.27), vector4(894.9, -35.5, 78.27, 57.88), vector4(896.66, -32.62, 78.27, 56.27), vector4(898.89, -29.89, 78.27, 59.62), vector4(900.59, -27.03, 78.27, 57.96), vector4(918.92, -38.5, 78.27, 57.96), vector4(917.27, -41.62, 78.27, 57.19), vector4(915.72, -44.57, 78.27, 58.35), vector4(913.25, -46.72, 78.27, 59.34), vector4(911.8, -50.19, 78.27, 58.27), vector4(909.86, -52.95, 78.27, 56.01), vector4(907.82, -56.09, 78.27, 58.75), vector4(906.64, -59.22, 78.27, 59.0), vector4(904.82, -62.24, 78.27, 58.09), vector4(902.76, -64.94, 78.27, 57.42), vector4(900.32, -67.77, 78.27, 60.95), vector4(898.92, -70.71, 78.27, 59.52), vector4(897.37, -73.94, 78.27, 60.01), vector4(905.41, -78.55, 78.27, 237.47), vector4(906.51, -75.4, 78.27, 239.08), vector4(908.51, -72.21, 78.27, 240.06), vector4(910.57, -69.75, 78.27, 239.33), vector4(912.5, -66.76, 78.27, 236.77), vector4(914.61, -63.85, 78.27, 236.27), vector4(916.47, -61.02, 78.27, 239.26), vector4(918.2, -57.97, 78.27, 239.18), vector4(919.83, -55.26, 78.27, 239.26), vector4(921.38, -52.13, 78.27, 239.95), vector4(923.46, -49.15, 78.27, 240.09), vector4(925.59, -46.6, 78.27, 238.16), vector4(925.88, -42.81, 78.27, 239.65), vector4(915.9, -84.07, 78.27, 56.96), vector4(917.48, -81.16, 78.27, 58.09), vector4(920.09, -78.3, 78.27, 55.86), vector4(927.69, -83.29, 78.27, 238.3), vector4(926.1, -86.14, 78.27, 236.23), vector4(924.0, -89.35, 78.27, 237.62), } }, ['leigonsquarealley'] = { ['Zone'] = { ['Shape'] = { vector2(69.414520263672, -849.34320068359), vector2(59.563220977783, -876.13598632812), vector2(53.812015533447, -873.94421386719), vector2(52.552845001221, -876.92974853516), vector2(58.53719329834, -879.25579833984), vector2(49.19457244873, -904.89520263672), vector2(12.526390075684, -891.47192382812), vector2(32.711112976074, -835.94616699219), vector2(43.370277404785, -840.03533935547), vector2(41.773113250732, -844.49047851562), vector2(44.550273895264, -845.6552734375), vector2(46.358081817627, -841.06768798828) }, ['minZ'] = 29.0, ['maxZ'] = 31.10 }, label = 'Legion Square Parking', showBlip = false, blipcoords = vector3(52.41, -874.53, 30.42), blipName = "Qaraj", blipNumber = 357, type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(19.23, -880.71, 29.8, 341.54), vector4(22.45, -882.16, 29.79, 340.09), vector4(25.93, -883.46, 29.79, 343.72), vector4(37.8, -887.64, 29.77, 160.81), vector4(40.91, -889.25, 29.75, 160.21), vector4(44.33, -890.22, 29.75, 159.58), vector4(48.14, -890.77, 29.75, 161.49), vector4(51.0, -892.1, 29.74, 158.87), vector4(52.71, -887.68, 29.81, 158.88), vector4(49.66, -885.99, 29.83, 161.45), vector4(45.81, -885.22, 29.83, 161.8), vector4(42.78, -884.27, 29.83, 161.42), vector4(39.63, -883.03, 29.84, 159.02), vector4(27.5, -878.27, 29.87, 160.31), vector4(24.28, -877.02, 29.88, 158.81), vector4(20.96, -876.17, 29.88, 157.99), vector4(25.15, -864.12, 30.08, 161.27), vector4(28.23, -865.24, 30.07, 158.11), vector4(32.0, -866.64, 30.06, 158.96), vector4(44.22, -870.05, 30.05, 159.97), vector4(47.29, -872.04, 30.03, 160.4), vector4(50.56, -873.75, 30.01, 158.52), vector4(60.1, -866.79, 30.13, 159.36), vector4(56.83, -865.6, 30.14, 161.35), vector4(53.77, -864.08, 30.16, 158.58), vector4(50.79, -863.1, 30.16, 159.63), vector4(47.46, -861.17, 30.18, 160.06), vector4(35.2, -857.05, 30.21, 160.46), vector4(31.39, -855.98, 30.22, 163.34), vector4(28.65, -854.67, 30.24, 156.84), vector4(34.44, -839.08, 30.49, 161.56), vector4(37.43, -840.18, 30.48, 159.6), vector4(41.04, -841.14, 30.47, 157.63), vector4(53.89, -846.47, 30.42, 159.93), vector4(56.93, -847.64, 30.41, 162.76), vector4(60.37, -848.47, 30.41, 161.79), vector4(63.44, -850.18, 30.39, 157.81), vector4(236.68, -795.08, 30.08, 66.13), vector4(233.41, -774.07, 30.31, 248.68) } }, ['pinkmotelgarage'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(266.04238891602, -348.67025756836), vector2(285.89639282227, -356.23840332031), vector2(287.69180297852, -351.80249023438), vector2(294.92953491211, -354.30316162109), vector2(304.30255126953, -329.3703918457), vector2(268.12475585938, -316.15463256836), vector2(261.09896850586, -334.95642089844), vector2(268.07708740234, -337.50454711914), vector2(266.080078125, -343.24353027344), vector2(267.49453735352, -344.12811279297) }, ['minZ'] = 43.5, -- min height of the parking zone ['maxZ'] = 47.15, -- max height of the parking zone }, label = "Motel Parking", showBlip = false, blipcoords = vector3(273.43, -343.99, 44.91), blipName = "Qaraj", blipNumber = 357, type = 'public', -- public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, --car, air, sea drawText = 'Park Arazisi', debug = false, ['ParkingSpots'] = { vector4(277.62, -340.01, 44.5, 70.08), vector4(284.0, -342.32, 44.5, 70.09), vector4(278.33, -336.51, 44.49, 70.34), vector4(284.94, -338.87, 44.5, 70.28), vector4(285.3, -335.65, 44.5, 70.49), vector4(286.94, -332.56, 44.5, 67.79), vector4(288.56, -329.41, 44.5, 69.87), vector4(289.54, -325.98, 44.5, 70.81), vector4(300.23, -330.3, 44.5, 69.25), vector4(298.52, -333.09, 44.5, 69.25), vector4(298.66, -337.07, 44.5, 67.98), vector4(297.0, -340.11, 44.49, 69.9), vector4(296.05, -342.85, 44.49, 68.75), vector4(294.61, -346.22, 44.5, 67.07), vector4(292.54, -349.49, 44.52, 68.4), vector4(268.42, -325.58, 44.5, 249.47), vector4(267.58, -329.12, 44.49, 247.62), vector4(266.03, -332.22, 44.5, 247.32), vector4(271.12, -319.16, 44.5, 67.31), vector4(283.0, -323.71, 44.5, 73.83), vector4(281.99, -326.86, 44.5, 69.26), vector4(281.1, -330.43, 44.49, 71.55), vector4(279.59, -333.68, 44.5, 71.98), vector4(269.97, -322.62, 44.5, 248.07), } }, ['sapcounsel'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(-362.48254394531, -793.2802734375), vector2(-362.46408081055, -730.71594238281), vector2(-360.078125, -727.29187011719), vector2(-359.91299438477, -726.02014160156), vector2(-355.41589355469, -725.94165039062), vector2(-347.00802612305, -729.64282226562), vector2(-312.21273803711, -742.18682861328), vector2(-310.43478393555, -737.13165283203), vector2(-266.06091308594, -753.01647949219), vector2(-275.53680419922, -777.63562011719), vector2(-284.21676635742, -774.40985107422), vector2(-285.57073974609, -778.85809326172), vector2(-287.20227050781, -778.1279296875), vector2(-289.10836791992, -783.76214599609), vector2(-319.63018798828, -772.48706054688), vector2(-335.69149780273, -786.58020019531), vector2(-345.55349731445, -791.60711669922) }, ['minZ'] = 33.00, -- min height of the parking zone ['maxZ'] = 37.60, -- max height of the parking zone }, label = "San Andreas Parking", showBlip = false, blipcoords = vector3(-330.01, -780.33, 33.96), blipName = "Qaraj", blipNumber = 357, type = 'public', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false, --car, air, sea ['ParkingSpots'] = { vector4(-356.89, -749.29, 33.54, 270.15), vector4(-356.83, -753.66, 33.54, 269.64), vector4(-357.22, -756.74, 33.54, 269.93), vector4(-357.17, -760.01, 33.54, 269.71), vector4(-357.4, -764.54, 33.54, 268.82), vector4(-357.14, -767.51, 33.54, 269.67), vector4(-357.09, -770.59, 33.54, 271.03), vector4(-357.09, -776.02, 33.54, 267.95), vector4(-292.62, -763.17, 33.54, 160.52), vector4(-357.37, -746.23, 33.54, 269.64), vector4(-292.62, -763.17, 33.54, 160.52), vector4(-289.82, -764.25, 33.54, 160.83), vector4(-292.62, -763.17, 33.54, 160.52), vector4(-295.59, -762.4, 33.54, 160.93), vector4(-298.43, -761.45, 33.54, 159.95), vector4(-302.41, -760.02, 33.54, 161.24), vector4(-305.16, -758.37, 33.54, 158.98), vector4(-308.23, -757.98, 33.54, 160.64), vector4(-311.14, -757.03, 33.54, 158.78), vector4(-315.09, -755.34, 33.54, 157.34), vector4(-317.51, -753.39, 33.54, 160.53), vector4(-320.45, -752.5, 33.55, 161.44), vector4(-323.24, -751.76, 33.54, 158.57), vector4(-329.02, -750.3, 33.54, 179.15), vector4(-331.75, -750.26, 33.54, 179.53), vector4(-334.52, -750.73, 33.54, 181.13), vector4(-337.46, -751.25, 33.54, 183.02), vector4(-342.14, -749.82, 33.55, 272.39), vector4(-341.94, -753.53, 33.55, 94.28), vector4(-341.97, -756.82, 33.55, 90.65), vector4(-342.23, -760.49, 33.55, 88.42), vector4(-341.84, -764.1, 33.55, 89.13), vector4(-341.93, -767.36, 33.55, 91.18), vector4(-357.3, -732.9, 33.54, 270.41), vector4(-357.24, -737.63, 33.55, 269.9), vector4(-357.33, -743.24, 33.54, 270.89), vector4(-295.82, -778.26, 33.54, 342.22), vector4(-299.37, -776.74, 33.54, 342.64), vector4(-307.47, -773.5, 33.54, 340.32), vector4(-303.19, -775.79, 33.54, 339.27), vector4(-310.37, -772.78, 33.54, 339.1), vector4(-313.07, -771.64, 33.54, 338.38), vector4(-315.73, -770.26, 33.54, 339.87), vector4(-273.07, -761.54, 33.54, 69.58), vector4(-273.81, -765.05, 33.54, 71.99), vector4(-276.05, -771.7, 33.54, 68.27), vector4(-277.3, -775.37, 33.54, 70.28), vector4(-277.07, -751.83, 33.54, 160.8), vector4(-279.97, -750.75, 33.54, 160.08), vector4(-284.28, -748.9, 33.54, 159.2), vector4(-287.28, -748.29, 33.54, 160.63), vector4(-290.22, -747.64, 33.54, 159.94), vector4(-292.89, -746.25, 33.54, 160.17), vector4(-297.03, -744.69, 33.54, 159.37), vector4(-299.71, -743.7, 33.54, 159.26), vector4(-302.62, -742.8, 33.54, 159.48), vector4(-275.18, -768.22, 33.54, 71.26) } }, ['spanishave'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(-1135.1311035156, -778.41644287109), vector2(-1114.7188720703, -761.08288574219), vector2(-1142.3354492188, -729.19293212891), vector2(-1161.1352539062, -745.50402832031) }, ['minZ'] = 17.69, -- min height of the parking zone ['maxZ'] = 20.61, -- max height of the parking zone }, label = "Spanish Ave Parking", showBlip = false, blipcoords = vector3(-1160.86, -741.41, 19.63), blipName = "Qaraj", blipNumber = 357, type = 'public', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', --car, air, sea debug = false }, ['caears24'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(76.188446044922, 7.9120540618896), vector2(81.977760314941, 23.525623321533), vector2(55.219917297363, 32.982769012451), vector2(49.228351593018, 16.684007644653), vector2(68.127639770508, 9.6578321456909), vector2(68.597557067871, 10.655039787292) }, ['minZ'] = 68.00, -- min height of the parking zone ['maxZ'] = 70.45, -- max height of the parking zone }, label = "Qaraj", showBlip = false, blipcoords = vector3(69.84, 12.6, 68.96), blipName = "Qaraj", blipNumber = 357, type = 'public', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', --car, air, sea debug = false, ['ParkingSpots'] = { vector4(54.49, 19.49, 69.14, 339.68), vector4(57.48, 17.98, 68.92, 340.13), vector4(60.49, 16.99, 68.8, 338.05), vector4(64.03, 16.28, 68.75, 337.71), } }, ['caears242'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(-480.87042236328, -819.84265136719), vector2(-441.08392333984, -820.39178466797), vector2(-440.29922485352, -795.61010742188), vector2(-450.12713623047, -795.83892822266), vector2(-450.57876586914, -792.54748535156), vector2(-480.38143920898, -792.79217529297) }, ['minZ'] = 29.47, -- min height of the parking zone ['maxZ'] = 32.82, -- max height of the parking zone }, label = "Qaraj", showBlip = false, blipcoords = vector3(-475.31, -818.73, 30.46), blipName = "Qaraj", blipNumber = 357, type = 'public', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', --car, air, sea debug = false, ['ParkingSpots'] = { vector4(-477.62, -816.44, 30.05, 271.2), vector4(-477.28, -813.29, 30.1, 265.04), vector4(-477.3, -809.77, 30.12, 268.93), vector4(-477.37, -806.7, 30.12, 271.51), vector4(-477.45, -803.55, 30.12, 268.73), vector4(-477.12, -800.59, 30.12, 270.28), vector4(-476.98, -796.99, 30.12, 269.26), vector4(-476.98, -796.99, 30.12, 269.26), vector4(-476.99, -794.09, 30.13, 268.72), vector4(-459.54, -797.15, 30.12, 267.11), vector4(-460.45, -800.21, 30.12, 270.89), vector4(-460.18, -803.33, 30.11, 269.85), vector4(-460.74, -809.84, 30.11, 270.31), vector4(-460.21, -813.14, 30.13, 271.44), vector4(-460.21, -816.42, 30.16, 269.02), vector4(-444.8, -797.5, 30.12, 90.73), vector4(-444.33, -801.16, 30.12, 92.51), vector4(-444.6, -804.72, 30.11, 90.88), vector4(-444.63, -808.75, 30.11, 89.24), vector4(-443.84, -812.02, 30.13, 87.33), vector4(-444.21, -816.02, 30.24, 89.21), vector4(-460.34, -806.46, 30.11, 267.68), vector4(-466.14, -816.36, 30.11, 88.66), vector4(-466.18, -812.98, 30.11, 88.96), vector4(-466.22, -809.72, 30.11, 89.54), vector4(-467.38, -806.99, 30.11, 89.36), vector4(-466.99, -803.3, 30.12, 85.98), vector4(-466.81, -800.55, 30.12, 89.29), vector4(-466.41, -797.08, 30.12, 88.09), vector4(-460.34, -806.46, 30.11, 267.68), } }, ['lagunapi'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(358.69207763672, 302.30017089844), vector2(351.44546508789, 277.92486572266), vector2(355.01831054688, 277.03842163086), vector2(353.3766784668, 270.50997924805), vector2(387.72875976562, 257.78961181641), vector2(399.73132324219, 290.71780395508), vector2(364.49926757812, 300.54202270508), vector2(362.70568847656, 295.12139892578), vector2(359.67681884766, 296.56146240234), vector2(361.49871826172, 301.58950805664) }, ['minZ'] = 102.00, -- min height of the parking zone ['maxZ'] = 105.89, -- max height of the parking zone }, label = "Laguna Parking", showBlip = false, blipcoords = vector3(364.37, 297.83, 103.49), blipName = "Qaraj", blipNumber = 357, type = 'public', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', --car, air, sea debug = false, ['ParkingSpots'] = { vector4(359.53, 270.99, 102.65, 341.37), vector4(363.59, 269.88, 102.64, 341.77), vector4(368.05, 267.75, 102.62, 337.77), vector4(371.2, 266.77, 102.6, 340.94), vector4(375.32, 265.38, 102.59, 339.29), vector4(379.12, 264.74, 102.59, 337.98), vector4(388.53, 269.67, 102.58, 68.7), vector4(389.17, 272.93, 102.58, 72.26), vector4(391.11, 276.63, 102.57, 69.67), vector4(392.57, 280.58, 102.57, 70.77), vector4(393.81, 283.91, 102.55, 71.82), vector4(390.92, 290.55, 102.58, 163.29), vector4(386.89, 291.62, 102.63, 162.58), vector4(383.07, 292.87, 102.69, 164.08), vector4(379.23, 293.87, 102.77, 162.43), vector4(374.93, 294.49, 102.85, 162.54), vector4(375.86, 274.26, 102.65, 157.86), vector4(371.94, 275.54, 102.71, 158.54), vector4(368.03, 277.26, 102.77, 156.9), vector4(378.84, 281.93, 102.68, 336.98), vector4(375.05, 283.0, 102.75, 339.72), vector4(370.91, 284.66, 102.83, 337.04), vector4(361.12, 293.52, 103.08, 251.69), vector4(359.6, 290.0, 103.08, 249.21), vector4(357.99, 286.45, 103.1, 248.69), vector4(356.98, 283.01, 103.0, 248.05), } }, ['airportp'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(-779.76104736328, -2023.2966308594), vector2(-775.14440917969, -2019.8140869141), vector2(-767.18334960938, -2012.3591308594), vector2(-760.70989990234, -2004.76171875), vector2(-756.01049804688, -1997.4604492188), vector2(-753.18353271484, -1990.4525146484), vector2(-751.64544677734, -1983.7036132812), vector2(-748.98046875, -1969.5380859375), vector2(-748.11468505859, -1967.5456542969), vector2(-746.72650146484, -1965.5721435547), vector2(-744.23596191406, -1963.4608154297), vector2(-739.22473144531, -1961.9007568359), vector2(-733.59368896484, -1962.0502929688), vector2(-729.30279541016, -1963.3483886719), vector2(-727.666015625, -1964.8414306641), vector2(-725.72021484375, -1966.9916992188), vector2(-714.04919433594, -2019.2927246094), vector2(-710.76025390625, -2032.8103027344), vector2(-707.01336669922, -2040.8115234375), vector2(-704.6533203125, -2044.3029785156), vector2(-703.19024658203, -2045.3291015625), vector2(-701.63171386719, -2045.6253662109), vector2(-699.74157714844, -2045.2917480469), vector2(-687.05395507812, -2039.5653076172), vector2(-685.76708984375, -2038.6518554688), vector2(-684.13092041016, -2036.3044433594), vector2(-672.29400634766, -2041.8348388672), vector2(-670.67193603516, -2043.4077148438), vector2(-665.39947509766, -2046.6591796875), vector2(-657.96466064453, -2048.1787109375), vector2(-655.55963134766, -2048.3508300781), vector2(-651.94177246094, -2047.6011962891), vector2(-649.02130126953, -2046.1932373047), vector2(-633.71252441406, -2030.9672851562), vector2(-631.34783935547, -2030.0726318359), vector2(-628.30303955078, -2030.5014648438), vector2(-616.89349365234, -2042.3790283203), vector2(-616.16394042969, -2045.1605224609), vector2(-617.02777099609, -2047.9118652344), vector2(-648.34002685547, -2079.3305664062), vector2(-652.69281005859, -2082.1706542969), vector2(-658.36376953125, -2083.3293457031), vector2(-671.02252197266, -2082.0708007812), vector2(-676.02673339844, -2082.1984863281), vector2(-684.85815429688, -2084.7019042969), vector2(-695.00408935547, -2087.8937988281), vector2(-701.19207763672, -2088.712890625), vector2(-703.89630126953, -2088.4221191406), vector2(-708.56176757812, -2085.2458496094), vector2(-713.30065917969, -2087.1435546875), vector2(-718.29937744141, -2082.3813476562), vector2(-724.05651855469, -2078.2341308594), vector2(-736.53204345703, -2071.5529785156), vector2(-746.24493408203, -2067.9118652344), vector2(-751.45703125, -2073.4653320312), vector2(-787.72106933594, -2037.2147216797) }, ['minZ'] = 8.85, -- min height of the parking zone ['maxZ'] = 10.10, -- max height of the parking zone }, label = "Airport Parking", showBlip = false, blipcoords = vector3(-796.86, -2024.85, 8.88), blipName = "Qaraj", blipNumber = 357, type = 'public', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', debug = false }, ['beachp'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(-1177.4599609375, -1504.8297119141), vector2(-1170.6567382812, -1500.1866455078), vector2(-1167.892578125, -1496.4272460938), vector2(-1167.0075683594, -1491.4938964844), vector2(-1168.083984375, -1487.3162841797), vector2(-1184.8902587891, -1461.9444580078), vector2(-1203.3045654297, -1475.2700195312), vector2(-1202.2609863281, -1476.640625), vector2(-1208.1496582031, -1480.9470214844), vector2(-1207.1524658203, -1483.8693847656), vector2(-1207.7424316406, -1485.8941650391), vector2(-1188.0931396484, -1513.3830566406), vector2(-1185.7036132812, -1511.7416992188), vector2(-1187.1550292969, -1509.7088623047), vector2(-1183.7425537109, -1507.1494140625), vector2(-1182.2048339844, -1508.9814453125) }, ['minZ'] = 3.20, -- min height of the parking zone ['maxZ'] = 6.53, -- max height of the parking zone }, label = "Qaraj", showBlip = false, blipcoords = vector3(-1183.1, -1511.11, 4.36), blipName = "Qaraj", blipNumber = 357, type = 'public', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', --car, air, sea debug = false }, ["themotorhotel"] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(1140.2746582031, 2644.5261230469), vector2(1108.8831787109, 2644.2172851562), vector2(1108.5783691406, 2660.1645507812), vector2(1089.9521484375, 2660.1198730469), vector2(1091.3571777344, 2677.4743652344), vector2(1133.5280761719, 2674.8422851562), vector2(1133.7532958984, 2658.8393554688), vector2(1140.4176025391, 2658.8898925781) }, ['minZ'] = 36.78, -- min height of the parking zone ['maxZ'] = 39.74, -- max height of the parking zone }, label = "Qaraj", showBlip = false, blipcoords = vector3(1137.77, 2663.54, 37.9), blipName = "Qaraj", blipNumber = 357, type = 'public', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', --car, air, sea debug = false }, ['liqourparking'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(934.54669189453, 3604.5546875), vector2(954.29815673828, 3604.1672363281), vector2(954.35180664062, 3626.7893066406), vector2(934.75305175781, 3626.3806152344) }, ['minZ'] = 31.5, -- min height of the parking zone ['maxZ'] = 35.99, -- max height of the parking zone }, label = "Liquor Parking", showBlip = false, blipcoords = vector3(934.95, 3606.59, 32.81), blipName = "Qaraj", blipNumber = 357, type = 'public', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', --car, air, sea debug = false }, ['haanparking'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(67.230964660645, 6414.7719726562), vector2(53.828144073486, 6401.8227539062), vector2(59.075645446777, 6396.736328125), vector2(57.678955078125, 6394.4799804688), vector2(55.321895599365, 6393.0532226562), vector2(49.954971313477, 6398.6840820312), vector2(32.203670501709, 6380.2915039062), vector2(36.029750823975, 6376.328125), vector2(33.88489151001, 6373.9545898438), vector2(31.614000320435, 6372.1850585938), vector2(27.5251121521, 6376.2802734375), vector2(3.0867385864258, 6350.3901367188), vector2(7.4540538787842, 6345.6538085938), vector2(6.2227344512939, 6343.2216796875), vector2(3.7218370437622, 6341.9638671875), vector2(-0.76969349384308, 6346.2749023438), vector2(-22.776170730591, 6325.3828125), vector2(-24.351142883301, 6322.0849609375), vector2(-23.452659606934, 6319.2861328125), vector2(-12.439478874207, 6304.8647460938), vector2(-10.365778923035, 6304.6127929688), vector2(5.0310492515564, 6313.4970703125), vector2(5.2357106208801, 6314.859375), vector2(41.809215545654, 6335.396484375), vector2(42.73751449585, 6334.2446289062), vector2(71.22339630127, 6349.8232421875), vector2(68.208351135254, 6355.2939453125), vector2(117.06902313232, 6378.890625) }, ['minZ'] = 30.00, -- min height of the parking zone ['maxZ'] = 33.38, -- max height of the parking zone }, label = "Qaraj", showBlip = false, blipcoords = vector3(78.34, 6418.74, 31.28), blipName = "Qaraj", blipNumber = 357, type = 'public', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', --car, air, sea debug = false }, ['legionsquare'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(239.88751220703, -820.52038574219), vector2(252.71513366699, -784.91027832031), vector2(258.39483642578, -786.82489013672), vector2(264.27755737305, -769.99841308594), vector2(218.69738769531, -754.69787597656), vector2(200.07238769531, -805.74285888672) }, ['minZ'] = 29.07, -- min height of the parking zone ['maxZ'] = 40.0, -- max height of the parking zone }, label = "Legion Square Parking", showBlip = false, blipcoords = vector3(215.9499, -809.698, 30.731), blipName = "Qaraj", blipNumber = 357, type = 'public', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', --car, air, sea debug = false, ['ParkingSpots'] = { vector4(219.38, -765.95, 30.41, 247.04), vector4(218.07, -768.47, 30.41, 248.86), vector4(216.93, -770.89, 30.42, 249.93), vector4(216.35, -773.48, 30.43, 249.43), vector4(215.02, -775.62, 30.44, 252.59), vector4(214.22, -778.6, 30.45, 247.99), vector4(213.67, -780.92, 30.45, 248.98), vector4(212.9, -783.52, 30.46, 249.01), vector4(210.97, -785.75, 30.5, 250.38), vector4(210.35, -788.41, 30.51, 249.85), vector4(209.74, -790.91, 30.51, 248.14), vector4(209.21, -793.47, 30.52, 249.87), vector4(207.96, -795.82, 30.55, 248.81), vector4(206.91, -798.68, 30.57, 248.97), vector4(205.45, -800.74, 30.6, 249.38), vector4(234.07, -771.23, 30.33, 249.64), vector4(232.09, -776.31, 30.3, 248.31), vector4(230.94, -778.87, 30.29, 248.97), vector4(230.7, -781.41, 30.28, 250.6), vector4(229.02, -783.81, 30.28, 250.06), vector4(227.64, -789.2, 30.26, 247.99), vector4(226.28, -791.42, 30.26, 248.95), vector4(225.72, -794.21, 30.24, 249.28), vector4(224.66, -796.59, 30.24, 247.01), vector4(223.2, -798.92, 30.25, 248.79), vector4(222.61, -801.4, 30.25, 248.1), vector4(221.77, -804.1, 30.26, 245.92), vector4(221.6, -806.74, 30.25, 247.77), vector4(219.83, -808.89, 30.26, 251.3), vector4(228.63, -768.88, 30.36, 69.31), vector4(227.76, -771.74, 30.35, 71.5), vector4(226.39, -773.88, 30.35, 68.62), vector4(225.43, -776.69, 30.35, 69.02), vector4(224.35, -778.81, 30.34, 64.93), vector4(224.25, -781.78, 30.33, 70.11), vector4(222.81, -784.16, 30.34, 72.1), vector4(221.16, -786.48, 30.35, 68.66), vector4(221.04, -789.3, 30.34, 68.07), vector4(219.76, -791.48, 30.34, 70.29), vector4(218.97, -794.38, 30.34, 68.04), vector4(218.34, -796.97, 30.34, 66.59), vector4(217.56, -799.45, 30.35, 69.51), vector4(216.23, -801.69, 30.37, 70.17), vector4(215.69, -804.56, 30.38, 68.56), vector4(228.66, -786.48, 30.27, 248.6), vector4(233.41, -774.07, 30.31, 248.68), vector4(236.32, -812.55, 29.88, 248.26), vector4(237.41, -809.93, 29.89, 244.26), vector4(238.45, -807.4, 29.9, 244.04), vector4(238.94, -804.82, 29.93, 248.53), vector4(240.36, -802.39, 29.94, 246.63), vector4(241.52, -799.87, 29.96, 245.68), vector4(242.03, -797.37, 29.98, 246.08), vector4(243.06, -794.79, 30.01, 249.35), vector4(244.27, -792.42, 30.03, 247.07), vector4(245.14, -789.87, 30.06, 247.13), vector4(246.18, -787.38, 30.08, 248.58), vector4(246.61, -784.52, 30.12, 248.32), vector4(248.17, -782.46, 30.14, 248.95), vector4(249.12, -779.63, 30.18, 249.01), vector4(249.32, -776.78, 30.22, 247.42), vector4(250.19, -774.3, 30.26, 248.86), vector4(244.75, -772.24, 30.29, 69.17), vector4(228.66, -786.48, 30.27, 248.6), vector4(233.41, -774.07, 30.31, 248.68), vector4(231.42, -810.44, 30.01, 70.18), vector4(231.62, -807.79, 30.03, 68.27), vector4(232.96, -805.51, 30.02, 66.62), vector4(234.88, -803.0, 30.02, 69.62), vector4(235.38, -800.43, 30.04, 68.23), vector4(236.58, -797.83, 30.05, 69.89), vector4(236.68, -795.08, 30.08, 66.13), vector4(237.88, -792.75, 30.08, 66.76), vector4(238.84, -790.11, 30.11, 68.34), vector4(240.15, -787.59, 30.13, 67.55), vector4(241.01, -785.27, 30.15, 69.84), vector4(244.51, -775.07, 30.26, 70.7), vector4(243.65, -777.69, 30.22, 67.25), vector4(242.44, -779.84, 30.2, 68.04), vector4(241.32, -782.41, 30.18, 69.19), } }, -- ['impoundlot'] = { -- ['Zone'] = { -- ['Shape'] = { --polygon that surrounds the parking area -- vector2(-129.192, -1159.02), -- vector2(-129.383, -1186.31), -- vector2(-224.818, -1186.32), -- vector2(-224.738, -1160.15) -- }, -- ['minZ'] = 22.25, -- min height of the parking zone -- ['maxZ'] = 26.31, -- max height of the parking zone -- debug = false, -- }, -- label = "Impound Lot", -- showBlip = false, -- blipcoords = vector3(-143.15, -1175.06, 23.77), -- blipName = "Çekilmiş", -- blipNumber = 68, -- type = 'depot', --public, job, gang, depot -- vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, -- drawText = 'Çekilmiş', --car, air, sea -- debug = false, -- ['ParkingSpots'] = { -- vector4(-152.91, -1170.13, 23.14, 270.11), -- vector4(-153.26, -1166.51, 23.14, 270.74), -- vector4(-147.67, -1161.83, 23.14, 179.67), -- vector4(-144.19, -1161.83, 23.14, 179.02), -- vector4(-139.1, -1161.6, 23.14, 178.95), -- vector4(-131.92, -1166.54, 23.14, 89.09), -- vector4(-132.01, -1170.05, 23.14, 90.24), -- vector4(-132.03, -1175.15, 23.14, 90.94), -- vector4(-131.99, -1178.68, 23.14, 90.07), -- vector4(-131.95, -1182.25, 23.14, 90.11), -- } -- }, ['impoundlotdpd'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(414.11, -1623.14), vector2(394.87, -1645.52), vector2(408.95, -1656.70), vector2(422.45, -1635.45), vector2(408.46, -1638.60) }, ['minZ'] = 27.0, -- min height of the parking zone ['maxZ'] = 31.0, -- max height of the parking zone debug = false, }, label = "Çekilmiş Araçlar", showBlip = false, blipcoords = vector3(408.20, -1639.33, 29.29), blipName = "Çekilmiş", blipNumber = 357, type = 'depot', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Çekilmiş Araçlar', --car, air, sea debug = false, ['ParkingSpots'] = { vector4(395.85, -1644.82, 28.87, 319.85), vector4(398.25, -1646.81, 28.86, 320.16), vector4(400.73, -1648.72, 28.87, 319.84), vector4(403.19, -1650.80, 28.87, 319.34), } }, ['impoundlegion'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(141.65, -1066.05), vector2(106.48, -1065.01), vector2(100.56, -1080.28), vector2(114.01, -1085.63), vector2(141.78, -1085.14), }, ['minZ'] = 27.0, -- min height of the parking zone ['maxZ'] = 33.0, -- max height of the parking zone debug = false, }, label = "Çekilmiş Araçlar", showBlip = false, blipcoords = vector3(132.70, -1071.83, 29.19), blipName = "Çekilmiş", blipNumber = 357, type = 'depot', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Çekilmiş Araçlar', --car, air, sea debug = false, ['ParkingSpots'] = { vector4(104.30, -1079.07, 29.19, 339.61), vector4(107.68, -1080.48, 29.19, 337.20), vector4(111.08, -1081.89, 29.19, 338.79), vector4(117.60, -1082.52, 29.19, 0.27), vector4(121.34, -1082.17, 29.19, 3.60), vector4(118.98, -1069.56, 29.19, 181.38), } }, ['impoundsgheriff'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(1899.74, 3703.17), vector2(1893.33, 3699.55), vector2(1879.26, 3723.76), vector2(1885.94, 3728.36) }, ['minZ'] = 30.25, -- min height of the parking zone ['maxZ'] = 35.31, -- max height of the parking zone debug = false, }, label = "Çekilmiş Araçlar", showBlip = false, blipcoords = vector3(1885.28, 3714.80, 32.92), blipName = "Çekilmiş", blipNumber = 68, type = 'depot', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Çekilmiş Araçlar', --car, air, sea debug = false, ['ParkingSpots'] = { vector4(1882.63, 3726.70, 32.80, 121.52), vector4(1884.30, 3723.50, 32.83, 124.57), vector4(1886.00, 3720.77, 32.84, 123.74), vector4(1887.69, 3717.48, 32.85, 119.58), vector4(1889.63, 3713.79, 32.85, 124.11), vector4(1894.49, 3706.47, 32.83, 122.60), vector4(1896.34, 3703.52, 32.81, 124.22), } }, ['impoundpolice'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(452.00, -1027.96), vector2(451.09, -1022.43), vector2(433.26, -1024.37), vector2(433.98, -1030.05) }, ['minZ'] = 26.25, -- min height of the parking zone ['maxZ'] = 30.31, -- max height of the parking zone debug = false, }, label = "Impound Lot", showBlip = false, blipcoords = vector3(446.25, -1023.72, 28.60), blipName = "Çekilmiş PD", blipNumber = 68, type = 'depot', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Çekilmiş PD', --car, air, sea debug = false, ['ParkingSpots'] = { vector4(435.49, -1027.19, 28.84, 7.19), vector4(438.91, -1026.94, 28.78, 359.10), vector4(442.42, -1026.59, 28.72, 7.30), vector4(446.12, -1026.23, 28.65, 4.04), vector4(449.60, -1025.99, 28.59, 6.03), } }, ['policevinewood'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(635.9017944336, 22.776243209838), vector2(631.24255371094, 20.99640083313), vector2(577.78063964844, 37.087455749512), vector2(575.10681152344, 41.017986297608), vector2(593.0210571289, 39.446407318116) }, ['minZ'] = 86.00, -- min height of the parking zone ['maxZ'] = 98.0, -- max height of the parking zone }, label = "Vinewood Police Station", showBlip = false, blipName = "Police", blipNumber = 357, type = 'public', --public, job, gang, depot vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', --car, air, sea debug = false, ['ParkingSpots'] = { vector4(581.11, 38.73, 92.21, 265.09), vector4(586.74, 37.68, 91.64, 260.63), vector4(591.54, 36.7, 91.16, 256.37), vector4(597.57, 34.71, 90.54, 250.52), vector4(604.28, 32.61, 89.86, 251.49), vector4(609.33, 30.9, 89.33, 251.35), vector4(613.83, 29.36, 88.87, 251.19), vector4(619.65, 27.35, 88.26, 250.98), vector4(627.16, 24.64, 87.48, 247.88) } }, ['mechanic002'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(168.90, -3011.76), vector2(158.85, -3012.01), vector2(159.37, -2986.72), vector2(169.31, -2986.63) }, ['minZ'] = 86.00, -- min height of the parking zone ['maxZ'] = 98.0, -- max height of the parking zone }, label = "002 Mekanik", showBlip = false, blipName = "Qaraj", blipNumber = 357, type = 'public', --public, job, gang, depot drawText = 'Park Arazisi', --car, air, sea vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, debug = false, ['ParkingSpots'] = { vector4(163.58, -3009.30, 5.93, 268.50), vector4(163.97, -3006.27, 5.92, 271.02), vector4(164.01, -3003.18, 5.92, 270.34), vector4(163.90, -2999.72, 5.92, 271.70), vector4(164.11, -2996.27, 5.92, 265.82), vector4(164.12, -2993.34, 5.92, 272.57), vector4(164.12, -2989.91, 5.91, 269.75) } }, ['apartments'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(-363.8267211914, -862.93182373046), vector2(-268.29055786132, -885.1919555664), vector2(-282.65710449218, -925.12030029296), vector2(-298.25598144532, -919.4287109375), vector2(-302.71203613282, -930.14245605468), vector2(-297.5908203125, -932.38952636718), vector2(-310.84530639648, -969.61614990234), vector2(-289.9221496582, -977.25311279296), vector2(-296.0697631836, -994.66876220704), vector2(-364.01559448242, -969.91552734375) }, ['minZ'] = 30.0, -- min height of the parking zone ['maxZ'] = 33.0, -- max height of the parking zone }, label = 'Alta Apartments', type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', ["ParkingSpots"] = { vector4(-297.71, -990.11, 30.76, 338.79), vector4(-301.09, -988.82, 30.76, 339.11), vector4(-304.64, -987.72, 30.76, 339.36), vector4(-308.09, -986.34, 30.76, 339.47), vector4(-311.46, -985.08, 30.76, 339.5), vector4(-315.07, -983.98, 30.76, 339.18), vector4(-318.71, -982.49, 30.76, 338.43), vector4(-285.76, -888.04, 30.76, 168.44), vector4(-289.39, -887.34, 30.76, 168.59), vector4(-292.99, -886.36, 30.76, 167.4), vector4(-296.78, -885.82, 30.75, 167.93), vector4(-300.35, -885.14, 30.76, 167.76), vector4(-303.82, -884.06, 30.76, 167.76), vector4(-307.59, -883.44, 30.76, 167.24), vector4(-311.16, -882.7, 30.76, 166.92), vector4(-314.74, -881.99, 30.75, 166.91), vector4(-318.34, -881.19, 30.75, 167.5), vector4(-322.02, -880.47, 30.75, 167.75), vector4(-325.62, -879.65, 30.75, 168.31), vector4(-329.11, -878.9, 30.75, 168.35), vector4(-332.88, -878.22, 30.75, 167.35), vector4(-336.55, -877.38, 30.75, 168.02), vector4(-340.1, -876.67, 30.75, 167.45), vector4(-343.78, -875.91, 30.75, 167.01), vector4(-352.86, -874.08, 30.75, 0.76), vector4(-360.26, -889.43, 30.75, 269.23), vector4(-360.46, -893.17, 30.75, 268.23), vector4(-360.24, -896.83, 30.75, 270.26), vector4(-360.37, -900.58, 30.75, 268.61), vector4(-360.29, -904.27, 30.75, 269.75), vector4(-360.14, -908.01, 30.75, 270.4), vector4(-360.5, -911.66, 30.76, 269.55), vector4(-360.12, -915.4, 30.76, 269.63), vector4(-360.28, -919.07, 30.76, 270.11), vector4(-360.56, -922.77, 30.75, 268.41), vector4(-360.46, -926.49, 30.76, 270.43), vector4(-360.37, -930.12, 30.76, 269.72), vector4(-360.22, -933.88, 30.76, 270.34), vector4(-360.28, -937.58, 30.76, 269.99), vector4(-360.47, -941.31, 30.75, 269.54), vector4(-360.28, -944.99, 30.76, 270.14), vector4(-360.32, -948.72, 30.76, 269.82), vector4(-360.38, -952.44, 30.75, 269.95), vector4(-360.57, -956.16, 30.76, 270.31), vector4(-322.02, -981.29, 30.76, 339.92), vector4(-325.56, -980.1, 30.76, 340.1), vector4(-329.0, -978.69, 30.76, 338.49), vector4(-332.49, -977.59, 30.76, 339.58), vector4(-335.9, -976.3, 30.76, 339.7), vector4(-339.43, -975.08, 30.76, 339.47), vector4(-342.7, -973.45, 30.76, 338.85), vector4(-326.58, -956.4, 30.75, 250.37), vector4(-325.37, -952.84, 30.76, 250.47), vector4(-324.03, -949.43, 30.76, 250.37), vector4(-322.69, -945.96, 30.75, 249.91), vector4(-321.47, -942.43, 30.76, 250.29), vector4(-320.23, -939.06, 30.76, 250.38), vector4(-318.8, -935.56, 30.76, 249.46), vector4(-317.66, -932.03, 30.76, 250.73), vector4(-316.5, -928.43, 30.76, 250.15), vector4(-345.07, -932.2, 30.76, 69.27), vector4(-343.99, -928.61, 30.76, 70.11), vector4(-342.58, -925.18, 30.76, 70.69), vector4(-341.39, -921.67, 30.76, 69.83), vector4(-327.34, -924.44, 30.76, 69.82), vector4(-328.81, -927.89, 30.76, 69.43), vector4(-330.09, -931.33, 30.76, 70.81), vector4(-331.29, -934.83, 30.76, 70.29), vector4(-332.71, -938.34, 30.76, 69.75), vector4(-333.91, -941.81, 30.76, 69.46), vector4(-335.02, -945.3, 30.75, 71.24), vector4(-336.56, -948.74, 30.75, 70.65), vector4(-337.69, -952.22, 30.76, 70.31), vector4(-340.74, -902.45, 30.75, 167.89), vector4(-337.18, -903.24, 30.75, 167.65), vector4(-333.64, -903.98, 30.75, 167.05), vector4(-329.93, -904.61, 30.75, 167.95), vector4(-326.38, -905.62, 30.75, 168.51), vector4(-322.65, -906.2, 30.75, 167.96), vector4(-318.98, -906.94, 30.75, 168.06), vector4(-315.39, -907.89, 30.75, 166.81), vector4(-311.81, -908.81, 30.75, 167.5), vector4(-308.14, -909.33, 30.75, 167.34), vector4(-285.56, -921.9, 30.76, 70.14), vector4(-283.75, -918.52, 30.76, 70.23), vector4(-282.97, -914.81, 30.75, 69.93), vector4(-281.65, -911.4, 30.76, 69.49), vector4(-280.5, -908.04, 30.76, 69.51), vector4(-279.28, -904.45, 30.76, 70.18), vector4(-302.07, -933.44, 30.75, 69.9), vector4(-303.19, -937.09, 30.76, 70.71), vector4(-304.56, -940.34, 30.76, 70.04), vector4(-305.74, -943.95, 30.76, 70.49), vector4(-307.19, -947.34, 30.76, 69.04), vector4(-308.26, -950.95, 30.76, 70.24), vector4(-309.63, -954.35, 30.76, 68.9), vector4(-310.83, -957.88, 30.76, 69.56), vector4(-312.07, -961.38, 30.76, 70.21), vector4(-313.39, -964.8, 30.76, 68.92), vector4(-298.26, -899.82, 30.66, 346.23), vector4(-302.47, -898.86, 30.66, 348.7), vector4(-305.9, -898.52, 30.66, 351.35), vector4(-309.58, -897.38, 30.66, 347.24), vector4(-313.04, -896.37, 30.65, 349.98), vector4(-316.74, -895.46, 30.65, 347.83), vector4(-320.36, -894.95, 30.65, 348.97), vector4(-324.05, -893.86, 30.65, 348.71), vector4(-327.67, -893.18, 30.65, 347.61), vector4(-331.02, -892.69, 30.65, 346.03), vector4(-334.83, -891.72, 30.65, 350.2), vector4(-338.6, -891.08, 30.65, 348.34), }, debug = false }, ['cekici'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(488.50, -1114.73), vector2(488.69, -1078.80), vector2(456.13, -1078.44), vector2(455.83, -1114.53), }, ['minZ'] = 28.0, -- min height of the parking zone ['maxZ'] = 39.0, -- max height of the parking zone }, label = 'Çekici Otoparkı', type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', ["ParkingSpots"] = { vector4(472.00, -1105.66, 29.20, 90.60), vector4(485.54, -1105.94, 29.20, 268.13), vector4(485.87, -1108.98, 29.20, 89.98), vector4(485.85, -1112.65, 29.20, 87.19), vector4(472.73, -1109.13, 29.20, 85.73), vector4(459.65, -1108.97, 29.20, 90.16), vector4(459.93, -1112.93, 29.20, 96.81), }, debug = false }, ['cityhall'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(-475.55926513672, -222.67430114746), vector2(-472.03475952148, -220.5464630127), vector2(-498.85870361328, -173.8444366455), vector2(-502.67169189454, -175.96449279786), }, ['minZ'] = 35.0, -- min height of the parking zone ['maxZ'] = 39.0, -- max height of the parking zone }, label = 'City Hall Parking', type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', ["ParkingSpots"] = { vector4(-475.26, -219.26, 36.05, 30.12), vector4(-478.26, -214.06, 36.21, 30.11), vector4(-481.41, -208.59, 36.37, 30.32), vector4(-484.34, -203.49, 36.52, 30.67), vector4(-487.17, -198.51, 36.67, 30.37), vector4(-490.26, -193.18, 36.83, 29.72), vector4(-493.21, -187.98, 36.99, 29.64), vector4(-496.19, -182.75, 37.14, 29.96), vector4(-499.21, -177.5, 37.3, 30.1), }, debug = false }, ['pdfront'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(405.13595581054, -998.57788085938), vector2(410.59521484375, -1002.8664550782), vector2(410.91711425782, -979.44134521484), vector2(405.4065246582, -974.57928466796), }, ['minZ'] = 28.0, -- min height of the parking zone ['maxZ'] = 31.0, -- max height of the parking zone }, label = 'Front of MRPD', type = 'public', vehicleCategories = {'car', 'motorcycle', 'other', 'emergency'}, drawText = 'Park Arazisi', ["ParkingSpots"] = { vector4(407.44, -997.7, 28.94, 52.87), vector4(407.55, -992.85, 28.94, 51.63), vector4(407.7, -988.49, 28.94, 52.48), vector4(407.42, -983.95, 28.94, 51.54), vector4(407.68, -979.62, 28.94, 51.69), }, debug = false }, ['helipad'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(-757.8896484375, -1469.876953125), vector2(-744.54223632812, -1480.4110107422), vector2(-733.07989501954, -1467.4460449218), vector2(-746.4605102539, -1456.0607910156) }, ['minZ'] = 4.0, -- min height of the parking zone ['maxZ'] = 8.0, -- max height of the parking zone }, label = 'Helipad', type = 'public', vehicleCategories = {'helicopter'}, drawText = 'Helipad', showBlip = false, blipName = "Helipad", blipNumber = 64, blipColor = 50, blipcoords = vector3(-745.61, -1468.57, 4.37), ["ParkingSpots"] = { vector4(-745.53, -1468.68, 5.0, 321.19) }, ParkingDistance = 10.0, debug = false }, ['shoreheli'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(1774.4047851562, 3246.9484863281), vector2(1762.30859375, 3244.3928222656), vector2(1765.3605957031, 3231.908203125), vector2(1777.5689697266, 3235.4580078125) }, ['minZ'] = 40.0, -- min height of the parking zone ['maxZ'] = 46.0, -- max height of the parking zone }, label = 'Sandy Shores Helipad', type = 'public', vehicleCategories = {'helicopter'}, drawText = 'Sandy Shores Helipad', showBlip = false, blipName = 'Helipad', blipNumber = 64, blipColor = 50, blipcoords = vector3(1769.62, 3240.14, 42.01), ['ParkingSpots'] = { vector4(1769.62, 3240.14, 42.01, 60.44), }, ParkingDistance = 100.0, debug = false }, ['airdepot'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(-1235.3253173828, -3378.4008789062), vector2(-1284.2642822266, -3350.1474609375), vector2(-1284.5589599609, -3350.7241210938), vector2(-1289.5042724609, -3348.0512695312), vector2(-1308.7587890625, -3382.4091796875), vector2(-1307.0877685547, -3383.8776855469), vector2(-1307.6185302734, -3385.4577636719), vector2(-1306.0087890625, -3386.4213867188), vector2(-1308.2755126953, -3391.1662597656), vector2(-1306.2180175781, -3392.1394042969), vector2(-1264.1188964844, -3420.0451660156), vector2(-1258.6077880859, -3412.1069335938), vector2(-1258.1317138672, -3412.4846191406), vector2(-1237.5152587891, -3387.8581542969), vector2(-1236.4268798828, -3387.1162109375), vector2(-1233.0942382812, -3380.8115234375), vector2(-1233.4357910156, -3380.13671875), vector2(-1235.1755371094, -3379.1962890625) }, ['minZ'] = 12.00, -- min height of the parking zone ['maxZ'] = 20.0, -- max height of the parking zone }, label = 'Hangar', type = 'depot', vehicleCategories = {'helicopter', 'plane'}, drawText = 'Hangar', showBlip = false, blipName = 'Hangar', blipNumber = 569, blipColor = 33, blipcoords = vector3(-1274.34, -3385.97, 13.94), ParkingDistance = 200.0, debug = false, ['ParkingSpots'] = { vector4(-1286.09, -3363.24, 14.54, 275.59), vector4(-1292.65, -3383.11, 14.54, 280.17), vector4(-1252.97, -3385.7, 14.54, 11.75), vector4(-1268.63, -3402.56, 14.54, 14.72), vector4(-1280.83, -3395.7, 14.54, 330.47), }, }, ['boathouse1'] = { ['Zone'] = { ['Shape'] = { vector2(-778.9291381836, -1513.3040771484), vector2(-803.83276367188, -1521.1665039062), vector2(-816.67852783204, -1493.2373046875), vector2(-791.34436035156, -1481.7546386718) }, ['minZ'] = 0.00, ['maxZ'] = 5.00 }, label = 'Tekne Garajı', type = 'public', vehicleCategories = {'boat'}, drawText = 'Tekne Garajı', showBlip = false, blipName = 'Tekne Garajı', blipNumber = 427, blipColor = 15, blipcoords = vector3(-784.84, -1498.33, 0.2), ParkingDistance = 20.0, SpawnDistance = 10.0, debug = false, ['ParkingSpots'] = { vector4(-798.39, -1499.15, 0.37, 109.87), vector4(-797.47, -1506.73, 0.3, 114.49), }, ExitWarpLocations = { vector3(-807.15, -1496.86, 1.6), vector3(-800.17, -1494.87, 1.6), vector3(-792.92, -1492.18, 1.6), vector3(-787.58, -1508.59, 1.6), vector3(-794.89, -1511.16, 1.6), vector3(-800.21, -1513.05, 1.6), }, }, ['boatdepo1'] = { ['Zone'] = { ['Shape'] = { vector2(-861.01, -1503.69), vector2(-845.22, -1498.06), vector2(-849.23, -1486.52), vector2(-865.29, -1491.96) }, ['minZ'] = 0.00, ['maxZ'] = 5.00 }, label = 'Tekne Garajı', type = 'depot', vehicleCategories = {'boat'}, drawText = 'Tekne Çekilmiş', showBlip = false, blipName = 'Tekne Çekilmiş', blipNumber = 427, blipColor = 15, blipcoords = vector3(-784.84, -1498.33, 0.2), ParkingDistance = 20.0, SpawnDistance = 10.0, debug = false, ['ParkingSpots'] = { vector4(-854.72, -1484.69, -0.48, 291.97), vector4(-852.70, -1493.60, 0.13, 291.97), }, }, ['intairport'] = { ['Zone'] = { ['Shape'] = { --polygon that surrounds the parking area vector2(-992.59680175781, -2949.84375), vector2(-1030.8975830078, -3016.2927246094), vector2(-1030.3382568359, -3016.5925292969), vector2(-1029.6291503906, -3017.0434570312), vector2(-1028.7434082031, -3018.0705566406), vector2(-1022.2585449219, -3021.5798339844), vector2(-1021.3436279297, -3020.5522460938), vector2(-1016.1632080078, -3023.6635742188), vector2(-1016.3262329102, -3024.7385253906), vector2(-966.09301757812, -3052.3435058594), vector2(-965.42352294922, -3051.1135253906), vector2(-961.01477050781, -3052.7600097656), vector2(-923.76300048828, -2978.2124023438) }, ['minZ'] = 12.00, -- min height of the parking zone ['maxZ'] = 20.0, -- max height of the parking zone }, label = 'Airport Hangar', type = 'public', vehicleCategories = {'helicopter', 'plane'}, drawText = 'Airport Hangar', showBlip = false, blipName = 'Hangar', blipNumber = 569, blipColor = 33, blipcoords = vector3(-930.23, -2995.38, 19.85), ParkingDistance = 100.0, SpawnDistance = 100.0, debug = false, ['ParkingSpots'] = { vector4(-985.04, -2965.05, 14.55, 128.92), vector4(-964.84, -2974.78, 14.55, 125.92), vector4(-945.49, -2985.63, 14.55, 117.77), vector4(-967.17, -3034.71, 14.55, 14.16), vector4(-990.13, -3022.86, 14.55, 15.42), vector4(-1010.91, -3012.56, 14.55, 2.31), vector4(-968.09, -3004.59, 14.55, 62.25) }, } } Config.HouseGarages = {} -- DO NOT TOUCH! Garages = Config.Garages HouseGarages = Config.HouseGarages