🔑Configuration
REVOLUTION = {}
REVOLUTION.Framework = {
    ["Export"] = {
        ["UseExport"] = true,
        ["ResourceName"] = "es_extended"
    },
    ["Event"] = {
        ["EventName"] = "esx:getSharedObject"
    }
}
REVOLUTION.General = {
    ["VehicleClasses"] = {
        [0] = "Compacts",
        [1] = "Sedans",
        [2] = "SUVs",
        [3] = "Coupes",
        [4] = "Muscle",
        [5] = "Sports Classics",
        [6] = "Sports",
        [7] = "Super",
        [8] = "Motorcycles",
        [9] = "Off-road",
        [10] = "Industrial",
        [11] = "Utility",
        [12] = "Vans",
        [13] = "Cycles",
        [14] = "Boats",
        [15] = "Helicopters",
        [16] = "Planes",
        [17] = "Service",
        [18] = "Emergency",
        [19] = "Military",
        [20] = "Commercial",
        [21] = "Trains"
    },
    ["Fuel"] = {
        ["GetFuel"] = function(vehicle)
            return exports["rs_fuelsystem"]:GetFuel(vehicle)
        end,
        ["SetFuel"] = function(vehicle, amount)
            exports["rs_fuelsystem"]:SetFuel(vehicle, amount)
        end
    },
    ["Impounds"] = {
        ["Price"] = 15000
    }
}
REVOLUTION.Functions = {
    ["ParkedOut"] = function(ped, vehicle)
        TaskWarpPedIntoVehicle(ped, vehicle, -1) -- Warp player into Car
    end
}
REVOLUTION.Markers = {
    ["Garages"] = {
        ["Enabled"] = true,
        ["Type"] = 21,
        ["Size"] = {
            x = 0.5,
            y = 0.5,
            z = 0.5
        },
        ["Color"] = {
            r = 0,
            g = 0,
            b = 255,
            a = 144
        },
        ["Rotate"] = true,
        ["Jump"] = false,
        ["DrawDistance"] = 10.0
    },
    ["Impounds"] = {
        ["Enabled"] = true,
        ["Type"] = 21,
        ["Size"] = {
            x = 0.5,
            y = 0.5,
            z = 0.5
        },
        ["Color"] = {
            r = 0,
            g = 0,
            b = 255,
            a = 144
        },
        ["Rotate"] = true,
        ["Jump"] = false,
        ["DrawDistance"] = 10.0
    }
}
REVOLUTION.Blips = {
    ["Garages"] = {
        ["car"] = {
            ["Sprite"] = 357,
            ["Display"] = 4,
            ["Scale"] = 0.8,
            ["Color"] = 38,
            ["ShortRange"] = true,
            ["Text"] = "Car - Garage"
        },
        ["helicopter"] = {
            ["Sprite"] = 360,
            ["Display"] = 4,
            ["Scale"] = 0.8,
            ["Color"] = 38,
            ["ShortRange"] = true,
            ["Text"] = "Helicopter - Garage"
        },
        ["boat"] = {
            ["Sprite"] = 356,
            ["Display"] = 4,
            ["Scale"] = 0.8,
            ["Color"] = 38,
            ["ShortRange"] = true,
            ["Text"] = "Boat - Garage"
        }
    },
    ["Impounds"] = {
        ["car"] = {
            ["Sprite"] = 357,
            ["Display"] = 4,
            ["Scale"] = 0.8,
            ["Color"] = 47,
            ["ShortRange"] = true,
            ["Text"] = "Car - Impound"
        },
        ["helicopter"] = {
            ["Sprite"] = 360,
            ["Display"] = 4,
            ["Scale"] = 0.8,
            ["Color"] = 47,
            ["ShortRange"] = true,
            ["Text"] = "Helicopter - Impound"
        },
        ["boat"] = {
            ["Sprite"] = 356,
            ["Display"] = 4,
            ["Scale"] = 0.8,
            ["Color"] = 47,
            ["ShortRange"] = true,
            ["Text"] = "Boat - Impound"
        }
    }
}
REVOLUTION.Language = {
    ["UI"] = {
        ["Garage"] = {
            ["Title"] = "CAR",
            ["SubTitle"] = "Garage",
            ["Description"] = "Hier kannst du deine Autos verwalten",
            ["Categories"] = {
                ["Cars"] = "Autos",
                ["All"] = "Alle",
                ["ParkOut"] = "Ausparken",
                ["ParkIn"] = "Einparken",
                ["Favorites"] = "Favorites"
            },
            ["Interactions"] = {
                ["Search"] = "Search car name",
                ["ParkedOut"] = "Ausgeparkt",
                ["ParkOut"] = "Ausparken",
                ["ParkIn"] = "Einparken",
                ["RenameVehicle"] = "New Name"
            },
            ["CarBox"] = {
                ["FuelText"] = "Fuel",
                ["FuelUnit"] = "l",
                ["GPS"] = "GPS",
                ["SpeedUnit"] = "kmh"
            }
        },
        ["Impound"] = {
            ["Title"] = "CAR",
            ["SubTitle"] = "Impound",
            ["Description"] = "Hier kannst du deine Autos verwalten",
            ["Interactions"] = {
                ["Search"] = "Search car name",
                ["BuyBack"] = "Freikaufen",
                ["PriceUnit"] = "$"
            }
        }
    },
    ["General"] = {
        ["help_notify_open_garage"] = "~INPUT_CONTEXT~ Um die Garage zu öfffnen",
        ["help_notify_open_impound"] = "~INPUT_CONTEXT~ Um den Abschlepphof zu öfffnen",
        ["gps_car_found"] = "Das Fahrzeug wurde mit einem Wegpunkt markiert!",
        ["gps_car_not_found"] = "Das Fahrzeug wurde nicht gefunden!",
        ["parked_out"] = "Dein Fahrzeug wurde ausgeparkt!",
        ["parked_in"] = "Dein Fahrzeug wurde eingeparkt!",
        ["not_enough_money"] = "Du hast nicht genügend Geld!",
        ["renamed_car"] = "Das Fahrzeug wurde umbenannt!",
        ["set_favorite"] = "Das Fahrzeug wurde zu deinen Favoriten hinzugefügt!",
        ["remove_favorite"] = "Das Fahrzeug wurde aus deinen Favoriten entfernt!"
    }
}
REVOLUTION.HelpNotify = function(msg)
    SetTextComponentFormat("STRING")
    AddTextComponentString(msg)
    DisplayHelpTextFromStringLabel(0, 0, 1, -1)
end
REVOLUTION.Notify = function(msg)
    exports["rs_hud_v2"]:SendNotify("info", "Revolution | Garage", msg, 6000)
end
REVOLUTION_S = {}
REVOLUTION_S.Webhooks = {
    ["ParkOut"] = "YOUR_DISCORD_WEBHOOK",
    ["ParkIn"] = "YOUR_DISCORD_WEBHOOK",
    ["BuyBack"] = "YOUR_DISCORD_WEBHOOK"
}
REVOLUTION_S.LoggedIdentifiers = {
    ["Steam"] = true,
    ["License"] = true,
    ["XBL"] = true,
    ["IP"] = true,
    ["Discord"] = true,
    ["LiveID"] = true
}
REVOLUTION_S.Settings = {
    ["Enabled"] = true,
    ["Username"] = "Revolution Services",
    ["ProfilePicture"] = "",
    ["Color"] = 3447003
}
REVOLUTION.Locations = {
	["Garages"] = {
		{
			["Type"] = "car",
			["Coords"] = vector3(-1579.8813, -916.3911, 9.4082),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-1585.0583, -907.4594, 9.4563),
					["Heading"] = 140.5743,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1589.9110, -903.5730, 9.4457),
					["Heading"] = 138.4182,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1594.4713, -899.5303, 9.4252),
					["Heading"] = 140.9145,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1604.0629, -910.9923, 9.0520),
					["Heading"] = 327.1035,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1599.2579, -914.8989, 9.0539),
					["Heading"] = 321.1597,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-1686.5045166016, 56.011283874512, 64.133193969727),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-1691.4906005859, 55.247943878174, 64.307342529297),
					["Heading"] = 341.64,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1694.0277099609, 57.832069396973, 64.482704162598),
					["Heading"] = 341.64,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1696.6636962891, 60.288917541504, 64.675300598145),
					["Heading"] = 341.64,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1699.3717041016, 62.699604034424, 64.874992370605),
					["Heading"] = 341.64,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(122.6262, 6406.2378, 31.3621),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(137.9854, 6413.0479, 31.2735),
					["Heading"] = 248.6428,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(146.3082, 6414.3169, 31.2445),
					["Heading"] = 257.0422,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-149.4627, 6416.8608, 31.2502),
					["Heading"] = 255.7372,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(130.0300, 6424.5566, 31.3537),
					["Heading"] = 211.4265,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(126.3766, 6421.8359, 31.3574),
					["Heading"] = 223.9618,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(1791.5442, 4590.2827, 37.6829),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(1789.5219, 4583.8540, 37.2854),
					["Heading"] = 179.8438,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(1785.3296, 4583.4707, 37.4201),
					["Heading"] = 183.5630,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(1793.2960, 4585.0083, 37.2061),
					["Heading"] = 192.2975,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(1797.5872, 4584.9668, 36.9838),
					["Heading"] = 185.3536,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(1697.2184, 3595.4893, 35.6124),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(1714.9044, 3597.2026, 35.2830),
					["Heading"] = 111.6023,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(1712.0985, 3600.5002, 35.2749),
					["Heading"] = 103.9736,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(1828.5110, 2554.6582, 47.2136),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(1855.5160, 2552.8118, 45.6720),
					["Heading"] = 272.5782,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(1855.7048, 2549.2371, 45.6720),
					["Heading"] = 266.8323,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(1855.5701, 2545.3198, 45.6720),
					["Heading"] = 270.0387,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-1135.0245, 2681.9731, 18.3642),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-1138.6648, 2674.7173, 18.0939),
					["Heading"] = 233.0779,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1153.6707, 2660.1355, 18.0939),
					["Heading"] = 219.7314,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-2205.5945, 4243.0054, 48.2601),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-2211.0381, 4244.5776, 47.5711),
					["Heading"] = 42.6964,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-2212.9541, 4242.0913, 47.5294),
					["Heading"] = 44.4012,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-2214.7253, 4239.4775, 47.4366),
					["Heading"] = 42.4445,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-2217.2302, 4237.8496, 47.3345),
					["Heading"] = 44.3994,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-2961.5747, 376.5680, 15.0131),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-2962.9241, 366.8085, 14.7699),
					["Heading"] = 38.3366,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-2965.0764, 364.3171, 14.7699),
					["Heading"] = 34.5269,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-2966.7058, 361.6486, 14.7699),
					["Heading"] = 60.6081,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-1184.1920, -1509.6437, 4.6493),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-1190.1273, -1503.8339, 4.3703),
					["Heading"] = 309.9719,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1194.7281, -1496.2595, 4.3797),
					["Heading"] = 342.5536,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1187.5317, -1491.4800, 4.3797),
					["Heading"] = 126.2485,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1189.3584, -1489.0785, 4.3797),
					["Heading"] = 112.3818,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-73.2252, -2004.1990, 18.2753),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-80.8328, -2003.8124, 18.0170),
					["Heading"] = 347.9875,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-84.8058, -2003.2900, 18.0170),
					["Heading"] = 356.4422,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-88.3560, -2002.9164, 18.0170),
					["Heading"] = 357.2451,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-833.1642, -2351.2566, 14.5706),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-829.1823, -2340.6934, 14.5706),
					["Heading"] = 331.3300,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-822.8289, -2357.8206, 14.5707),
					["Heading"] = 329.6031,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-820.1800, -2359.6216, 14.5707),
					["Heading"] = 327.4431,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(1036.3092, -763.2454, 57.9930),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(1030.9858, -773.4328, 58.0592),
					["Heading"] = 140.4821,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(1027.9482, -771.6144, 58.0380),
					["Heading"] = 146.2009,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(1024.5587, -778.3002, 57.9459),
					["Heading"] = 311.3221,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(1022.0167, -775.4366, 57.9457),
					["Heading"] = 305.4498,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(213.6265, -809.1218, 31.0149),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(217.1925, -799.3695, 30.7825),
					["Heading"] = 68.1446,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(218.4500, -793.9484, 30.7726),
					["Heading"] = 63.1923,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(221.4974, -786.6737, 30.7739),
					["Heading"] = 73.1179,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-354.6620, -127.7524, 39.4307),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-382.6256, -133.6081, 38.6856),
					["Heading"] = 300.3073,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-384.6937, -130.3887, 38.6849),
					["Heading"] = 300.1900,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-386.3034, -127.5751, 38.6818),
					["Heading"] = 301.5912,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(655.0408, 588.7328, 129.0509),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(642.8625, 589.9856, 128.9109),
					["Heading"] = 344.8127,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(639.5062, 591.4965, 128.9109),
					["Heading"] = 326.7095,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(636.2159, 592.4639, 128.9109),
					["Heading"] = 19.5638,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(632.5673, 593.4553, 128.9109),
					["Heading"] = 343.4153,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-620.4865, 337.6042, 85.1167),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-612.3898, 332.9891, 85.1167),
					["Heading"] = 2.1919,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-608.5659, 332.7623, 85.1167),
					["Heading"] = 359.4031,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-608.4423, 343.2067, 85.1169),
					["Heading"] = 177.9855,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-612.0781, 343.7498, 85.1169),
					["Heading"] = 175.2238,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-77.5698, 910.5811, 235.8008),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-72.8336, 902.7005, 235.6365),
					["Heading"] = 113.5397,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-71.6648, 899.5984, 235.5822),
					["Heading"] = 115.5300,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-70.7048, 896.8383, 235.4857),
					["Heading"] = 117.4464,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(4461.9688, -4468.6226, 4.2444),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(4474.5938, -4463.7588, 4.2449),
					["Heading"] = 198.2415,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(4481.9019, -4461.7427, 4.2424),
					["Heading"] = 174.6881,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(4489.1938, -4459.4414, 4.2356),
					["Heading"] = 201.0905,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "boat",
			["Coords"] = vector3(4938.2295, -5178.0693, 2.4682),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(4933.0054, -5169.7788, 1.4592),
					["Heading"] = 65.0397,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(4928.9136, -5180.4927, 1.3104),
					["Heading"] = 61.0893,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "boat",
			["Coords"] = vector3(-730.9018, -1318.7852, 1.5955),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-724.5194, -1329.3491, 1.4425),
					["Heading"] = 229.5460,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-729.8666, -1335.2825, 2.2986),
					["Heading"] = 222.2050,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-736.9506, -1342.4745, 1.5329),
					["Heading"] = 218.1350,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "boat",
			["Coords"] = vector3(1309.0651, 4231.8755, 33.9155),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(1314.0487, 4219.3706, 32.2499),
					["Heading"] = 260.4119,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "helicopter",
			["Coords"] = vector3(-1012.6478, -3025.9807, 13.9451),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-1000.6839, -3000.1526, 13.9451),
					["Heading"] = 57.5092,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "helicopter",
			["Coords"] = vector3(1726.1780, 3287.5056, 41.1399),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(1716.5931, 3254.3501, 41.1284),
					["Heading"] = 102.6259,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "helicopter",
			["Coords"] = vector3(2138.2251, 4796.4702, 41.1219),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(2120.8350, 4804.1182, 41.1959),
					["Heading"] = 113.9880,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(722.3836, -2016.5677, 29.2920),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(722.2660, -2030.4072, 29.2851),
					["Heading"] = 357.2159,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(725.4338, -2030.3170, 29.2864),
					["Heading"] = 354.5720,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(728.4054, -2030.3726, 29.2813),
					["Heading"] = 350.6689,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(100.5963, -1073.3195, 29.3741),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(104.3259, -1078.6627, 29.1924),
					["Heading"] = 341.4517,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(108.0278, -1079.6688, 29.1927),
					["Heading"] = 343.7637,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(111.6185, -1080.1595, 29.1924),
					["Heading"] = 341.9446,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(765.0535, -3208.1729, 6.0337),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(774.2202, -3213.9573, 5.9008),
					["Heading"] = 7.4117,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(777.0059, -3213.7368, 5.9008),
					["Heading"] = 339.7380,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(780.0165, -3213.0002, 5.9008),
					["Heading"] = 1.6157,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-1541.9714, -437.7228, 35.5967),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-1534.3563, -435.7601, 35.4421),
					["Heading"] = 230.2727,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1532.2356, -432.9700, 35.4421),
					["Heading"] = 229.7061,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1530.0391, -430.3458, 35.4421),
					["Heading"] = 231.3993,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1527.9467, -427.5330, 35.4421),
					["Heading"] = 231.3993,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1525.4265, -425.1190, 35.4422),
					["Heading"] = 231.3993,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-1523.2739, -422.5987, 35.4422),
					["Heading"] = 231.3993,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-304.4159, -1024.6980, 30.3798),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-304.2449, -1013.3694, 30.3851),
					["Heading"] = 250.4319,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-303.5537, -1010.2808, 30.3851),
					["Heading"] = 249.2700,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-302.7105, -1007.5018, 30.3851),
					["Heading"] = 252.0151,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-3143.5906, 1122.6379, 20.8513),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-3141.3433, 1117.0607, 20.7016),
					["Heading"] = 291.1147,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-3141.8650, 1113.6837, 20.7001),
					["Heading"] = 276.6464,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(-3143.7261, 1110.1700, 20.7019),
					["Heading"] = 289.7830,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(392.9640, -1632.6896, 29.2924),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(393.9802, -1625.2029, 29.2924),
					["Heading"] = 50.4665,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(396.2334, -1623.1311, 29.2924),
					["Heading"] = 51.4529,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(398.0607, -1620.5977, 29.2924),
					["Heading"] = 289.7830,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(400.2678, -1618.5494, 29.2924),
					["Heading"] = 51.4529,
					["Radius"] = 1.0,
				},
				{
					["Coords"] = vector3(402.2595, -1616.1273, 29.2924),
					["Heading"] = 51.4529,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(2339.6091, 3142.3196, 48.2048),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(2334.8640, 3149.3381, 48.2044),
					["Heading"] = 15.1048,
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-197.4600, 6235.3652, 31.4998),
			["SpawnPoints"] = {
				{
					["Coords"] = vector3(-190.3970, 6225.8159, 31.4893),
					["Heading"] = 141.7195,
					["Radius"] = 1.0,
				},
			},
		},
	},
	["Impounds"] = {
		{
			["Type"] = "car",
			["Coords"] = vector3(409.2806, -1623.0184, 29.2920),
			["SpawnPoints"] = {
				{
					["Heading"] = 227.5916,
					["Coords"] = vector3(402.5647, -1642.1216, 29.2919),
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(2339.0024, 3139.6792, 48.2042),
			["SpawnPoints"] = {
				{
					["Heading"] = 92.1290,
					["Coords"] = vector3(2329.0659, 3138.4158, 48.1602),
					["Radius"] = 1.0,
				},
			},
		},
		{
			["Type"] = "car",
			["Coords"] = vector3(-199.1535, 6233.7290, 31.5025),
			["SpawnPoints"] = {
				{
					["Heading"] = 221.0753,
					["Coords"] = vector3(-202.0136, 6217.7549, 31.4902),
					["Radius"] = 1.0,
				},
			},
		},
	},
}
:root{ 
/* Main Colors */ 
--main-clr: #3FBDFF; 
--shadow-clr1: rgba(63, 189, 255, 0.50); 
--shadow-clr2: rgba(63, 189, 255, 0.45); 
--shadow-clr3: rgba(63, 189, 255, 0.55);
/* Background Colors */
--bg-clr1: #121620;
--bg-clr2: rgba(63, 189, 255, 0.15);
--bg-clr3: rgba(63, 189, 255, 0.10);
--bg-clr4: rgba(6, 20, 27, 0.95);
/* Second Colors */
--second-clr1: rgba(205, 255, 63, 0.10);
--second-clr2: #CDFF3F;
--second-clr3: rgba(205, 255, 63, 0.35);
/* Third Colors */
--third-clr1: rgba(255, 224, 63, 0.10);
--third-clr2: #FFE03F;
/* Fourth Colors */
--fourth-clr1: rgba(255, 63, 63, 0.10);
--fourth-clr2: #FF3F3F;
/* Fifth Colors (Impound Colors) */
--fifth-clr1: #1C1811;
--fifth-clr2: #FFA600;
--fifth-clr3: rgba(255, 166, 0, 0.50);
--fifth-clr4: rgba(255, 166, 0, 0.15);
--fifth-clr5: rgba(255, 166, 0, 0.45);}
Last updated
