-
Notifications
You must be signed in to change notification settings - Fork 68
/
config.lua
executable file
·1875 lines (1844 loc) · 89.2 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
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 = true, -- 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 <plate>
Config.TrackVehicleByPlateCommandPermissionLevel = 'god' -- Permission level required to use /trackvehicle <plate>, 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 = true -- Allow parking from outside the vehicle, if false, you have to be inside the vehicle to park it
Config.VehicleParkDistance = 2.0 -- Distance from the player to the vehicle to park it, radial option will dissapear beyond this distance
Config.GlobalParking = false -- 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 = true -- 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 = false -- 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 = 'LegacyFuel' -- 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 = 'Parking' -- 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 <destination_garage>' 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
]]
['pillboxgarage'] = {
['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),
},
['minZ'] = 30.6, -- min height of the parking zone
['maxZ'] = 32.6, -- max height of the parking zone
},
label = 'Lower Power St Parking',
showBlip = true,
blipcoords = vector3(37.08, -616.99, 34.19),
blipName = 'Public Parking',
blipNumber = 357,
type = 'public',
vehicleCategories = {'car', 'motorcycle', 'other'},
drawText = 'Parking',
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),
}
},
['pillboxlowergarage'] = {
['Zone'] = {
['Shape'] = {
vector2(352.34439086914, -620.59851074219),
vector2(344.32354736328, -636.03747558594),
vector2(325.94189453125, -628.93359375),
vector2(331.88412475586, -613.10968017578)
},
['minZ'] = 28.2, -- min height of the parking zone
['maxZ'] = 31.30, -- max height of the parking zone
},
label = 'Pillbox Lower Parking',
showBlip = true,
blipcoords = vector3(341.7, -623.33, 29.29),
blipName = 'Public Parking',
blipNumber = 357,
type = 'public',
vehicleCategories = {'car', 'motorcycle', 'other'},
drawText = 'Parking',
debug = false,
['ParkingSpots'] = {
vector4(342.07, -632.51, 28.87, 340.17),
vector4(338.89, -631.43, 28.87, 341.89),
vector4(335.77, -630.04, 28.87, 340.85),
vector4(332.61, -628.68, 28.87, 342.74),
vector4(329.16, -627.36, 28.87, 341.84),
vector4(346.44, -620.82, 28.87, 157.15),
vector4(343.13, -619.38, 28.87, 157.56),
vector4(339.76, -619.01, 28.87, 157.43),
vector4(336.5, -617.88, 28.87, 162.09),
vector4(333.34, -616.15, 28.87, 160.22),
vector4(269.97, -322.62, 44.5, 248.07),
}
},
['mirrorpark'] = {
['Zone'] = {
['Shape'] = {
vector2(1043.447265625, -767.26947021484),
vector2(1049.4702148438, -769.44775390625),
vector2(1049.4797363281, -794.31622314453),
vector2(1048.9655761719, -794.32214355469),
vector2(1049.03125, -793.87451171875),
vector2(1043.466796875, -793.80151367188),
vector2(1043.3436279297, -794.52691650391),
vector2(1031.5026855469, -794.34808349609),
vector2(1007.7255859375, -764.88061523438),
vector2(1022.2494506836, -752.11022949219),
vector2(1025.6563720703, -755.25653076172),
vector2(1030.9210205078, -758.50311279297),
vector2(1031.2462158203, -758.19201660156),
vector2(1035.1042480469, -760.79956054688),
vector2(1030.6268310547, -767.16302490234),
vector2(1025.9473876953, -763.81085205078),
vector2(1024.8063964844, -765.39245605469),
vector2(1033.9915771484, -772.05816650391),
vector2(1036.6497802734, -781.24871826172),
vector2(1038.708984375, -780.87786865234),
vector2(1035.7690429688, -770.72528076172),
vector2(1032.0593261719, -768.04278564453),
vector2(1034.0390625, -764.51586914062),
vector2(1036.8060302734, -766.30773925781),
vector2(1038.0424804688, -763.41851806641),
vector2(1043.5157470703, -766.21325683594)
},
['minZ'] = 56.50,
['maxZ'] = 59.20
},
label = 'Mirror Park Parking',
showBlip = true,
blipcoords = vector3(1037.65, -771.62, 58.01),
blipName = 'Public Parking',
blipNumber = 357,
type = 'public',
vehicleCategories = {'car', 'motorcycle', 'other'},
drawText = 'Parking',
debug = false,
['ParkingSpots'] = {
vector4(1023.5, -756.15, 57.48, 225.44),
vector4(1020.64, -758.19, 57.49, 225.22),
vector4(1017.57, -760.75, 57.47, 222.83),
vector4(1014.9, -763.11, 57.4, 223.82),
vector4(1016.1, -770.57, 57.41, 311.2),
vector4(1018.8, -773.42, 57.43, 308.15),
vector4(1020.68, -776.34, 57.39, 311.86),
vector4(1023.75, -779.38, 57.41, 309.66),
vector4(1025.72, -782.07, 57.4, 308.8),
vector4(1028.49, -784.92, 57.41, 307.36),
vector4(1030.06, -787.96, 57.38, 310.65),
vector4(1038.12, -791.16, 57.47, 1.48),
vector4(1046.49, -785.56, 57.5, 89.6),
vector4(1046.38, -782.01, 57.51, 92.17),
vector4(1046.22, -778.03, 57.52, 89.04),
vector4(1046.27, -774.45, 57.52, 90.5),
vector4(1030.96, -773.4, 57.57, 144.89),
vector4(1028.05, -771.42, 57.55, 146.44),
vector4(1029.35, -763.6, 57.49, 56.05),
vector4(1041.6, -791.45, 57.5, 0.97),
}
},
['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 = true,
blipcoords = vector3(888.47, -37.44, 78.76),
blipName = 'Public Parking',
blipNumber = 357,
type = 'public',
vehicleCategories = {'car', 'motorcycle', 'other'},
drawText = 'Parking',
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 = true,
blipcoords = vector3(52.41, -874.53, 30.42),
blipName = 'Public Parking',
blipNumber = 357,
type = 'public',
vehicleCategories = {'car', 'motorcycle', 'other'},
drawText = 'Parking',
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)
}
},
['motelgarage'] = {
['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 = true,
blipcoords = vector3(273.43, -343.99, 44.91),
blipName = "Public Parking",
blipNumber = 357,
type = 'public', -- public, job, gang, depot
vehicleCategories = {'car', 'motorcycle', 'other'}, --car, air, sea
drawText = 'Parking',
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 = true,
blipcoords = vector3(-330.01, -780.33, 33.96),
blipName = "Public Parking",
blipNumber = 357,
type = 'public', --public, job, gang, depot
vehicleCategories = {'car', 'motorcycle', 'other'},
drawText = 'Parking',
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 = true,
blipcoords = vector3(-1160.86, -741.41, 19.63),
blipName = "Public Parking",
blipNumber = 357,
type = 'public', --public, job, gang, depot
vehicleCategories = {'car', 'motorcycle', 'other'},
drawText = 'Parking', --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 = "Caesar 24h Parking",
showBlip = true,
blipcoords = vector3(69.84, 12.6, 68.96),
blipName = "Public Parking",
blipNumber = 357,
type = 'public', --public, job, gang, depot
vehicleCategories = {'car', 'motorcycle', 'other'},
drawText = 'Parking', --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 = "Caesar 24h Parking",
showBlip = true,
blipcoords = vector3(-475.31, -818.73, 30.46),
blipName = "Public Parking",
blipNumber = 357,
type = 'public', --public, job, gang, depot
vehicleCategories = {'car', 'motorcycle', 'other'},
drawText = 'Parking', --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 = true,