This repository has been archived by the owner on Mar 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.lua
1000 lines (992 loc) · 47.7 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
accessLocations = {
vector3(-708.12, 268.09, 83.11),
}
properties = {
{
propertyid = "3altastreet1",
price = 750000,
address = "Floor 1, 3 Alta Street, Pillbox Hill, Los Santos",
description = "With its own Bean Machine outlet in the ground floor and a short commute to the financial center, this luxury condo on Alta Street in Downtown Los Santos is the perfect pad for the banker who never sleeps because hes having too much fun gambling with other peoples money.",
images = {"https://i.imgur.com/jouXiAy.png", "https://i.imgur.com/c6AxLLw.png", "https://i.imgur.com/R9XKWfw.png", "https://i.imgur.com/wK9lmFj.png", "https://i.imgur.com/sauJChJ.png", "https://i.imgur.com/oOrTbg3.png", "https://i.imgur.com/dDLGTHa.png", "https://i.imgur.com/ZhCWjMe.png"},
coords = vector3(-266.38, -960.92, 31.22),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-263.97, -967.92, 77.23),
doors = {
{hash = -1532202674, model = 330294775, coords = vector3(-264.64, -967.72, 77.35)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-269.28, -962.50, 77.23),
doors = {
{hash = 570684861, model = 224975209, coords = vector3(-269.15, -961.94, 77.38)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-266.68, -953.52, 71.02),
doors = {
{hash = -1003661826, model = 224975209, coords = vector3(-267.26, -953.36, 71.17)}
},
},
}
},
{
propertyid = "3altastreet2",
price = 800000,
address = "Floor 2, 3 Alta Street, Pillbox Hill, Los Santos",
description = "Situated at the epicenter of the Los Santos financial, business and high-end shopping districts, you'll never have to see a poor person again at this luxury condo on Alta Street if you don't want to. Everything you need is right on your doorstep.",
images = {"https://i.imgur.com/jouXiAy.png", "https://i.imgur.com/c6AxLLw.png", "https://i.imgur.com/R9XKWfw.png", "https://i.imgur.com/wK9lmFj.png", "https://i.imgur.com/sauJChJ.png", "https://i.imgur.com/oOrTbg3.png", "https://i.imgur.com/dDLGTHa.png", "https://i.imgur.com/ZhCWjMe.png"},
coords = vector3(-266.38, -960.92, 31.22),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-279.27, -940.44, 92.51),
doors = {
{hash = 1439851445, model = 330294775, coords = vector3(-278.54, -940.62, 92.62)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-273.74, -945.78, 92.51),
doors = {
{hash = 1325675670, model = 224975209, coords = vector3(-274.04, -946.40, 92.66)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-276.52, -954.81, 86.30),
doors = {
{hash = -532079080, model = 224975209, coords = vector3(-275.93, -954.98, 86.45)}
},
},
}
},
{
propertyid = "eclipselvl1",
price = 1000000,
address = "Floor 1, South Mo Milton Dr, Rockford Hills, Los Santos",
description = "Perfectly proportioned, beautifully presented lateral living opportunity on exquisite Eclipse Boulevard. This apartment is an unique as the new cheekboones your surgeon just gave you... by that we mean you'll see them all over town.",
images = {"https://i.imgur.com/Ow27PoI.png", "https://i.imgur.com/0RlrNvS.png", "https://i.imgur.com/R9XKWfw.png", "https://i.imgur.com/wK9lmFj.png", "https://i.imgur.com/sauJChJ.png", "https://i.imgur.com/oOrTbg3.png", "https://i.imgur.com/dDLGTHa.png", "https://i.imgur.com/ZhCWjMe.png"},
coords = vector3(-777.15, 319.65, 85.66),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-777.17, 340.47, 159.87),
doors = {
{hash = 1234588927, model = 330294775, coords = vector3(-777.17, 339.77, 160.12)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-780.35, 333.57, 159.90),
doors = {
{hash = -1897588502, model = 224975209, coords = vector3(-781.05, 333.57, 160.15)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-789.77, 333.10, 153.69),
doors = {
{hash = 1903073525, model = 224975209, coords = vector3(-789.77, 332.40, 153.94)}
},
},
}
},
{
propertyid = "eclipselvl2",
price = 1000000,
address = "Floor 2, South Mo Milton Dr, Rockford Hills, Los Santos",
description = "Upper class living at middle class prices! Are you a single-digit millionarie who wants to live like a double-digit millionaire? You'll never find a better deal on a luxury condo in Rockford Hills than this again. Act now, it won't last.",
images = {"https://i.imgur.com/Ow27PoI.png", "https://i.imgur.com/0RlrNvS.png", "https://i.imgur.com/R9XKWfw.png", "https://i.imgur.com/wK9lmFj.png", "https://i.imgur.com/sauJChJ.png", "https://i.imgur.com/oOrTbg3.png", "https://i.imgur.com/dDLGTHa.png", "https://i.imgur.com/ZhCWjMe.png"},
coords = vector3(-777.15, 319.65, 85.66),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-779.31, 317.18, 176.67),
doors = {
{hash = -1549387403, model = 330294775, coords = vector3(-779.31, 317.88, 176.92)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-776.13, 324.08, 176.70),
doors = {
{hash = 1999137748, model = 224975209, coords = vector3(-775.43, 324.08, 176.95)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-766.71, 324.54, 170.49),
doors = {
{hash = -1448947674, model = 224975209, coords = vector3(-766.71, 325.24, 170.74)}
},
},
}
},
{
propertyid = "eclipselvl3",
price = 1300000,
address = "Floor 3, South Mo Milton Dr, Rockford Hills, Los Santos",
description = "Is the 1% starting to feel a little crowded? Are you tired of single-digit millionaires cluttering up your elevator and groping your bellboy? Do you need a new way of expressing your bottomless contempt for your fellow man? Look no further: this lavish penthouse suite at the best address in town is expensive enough to keep the riff-raff at bay until at least the next federal bailout.",
images = {"https://i.imgur.com/Ow27PoI.png", "https://i.imgur.com/0RlrNvS.png", "https://i.imgur.com/v42MGeF.png", "https://i.imgur.com/uM8ggh0.png", "https://i.imgur.com/mxK68N6.png", "https://i.imgur.com/hAZSX5f.png", "https://i.imgur.com/u4UHkI9.png", "https://i.imgur.com/1b75tch.png"},
coords = vector3(-777.15, 319.65, 85.66),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-781.75, 317.52, 187.81),
doors = {
{hash = 1727313421, model = 103339342, coords = vector3(-782.45, 317.52, 188.06)}
},
},
{ -- bedroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-794.32, 332.93, 190.61),
doors = {
{hash = 1124875708, model = 1927676967, coords = vector3(-794.32, 332.23, 190.86)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-793.94, 323.89, 187.21),
doors = {
{hash = -1095210102, model = 1927676967, coords = vector3(-793.94, 324.59, 187.46)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-803.21, 332.93, 190.61),
doors = {
{hash = -446014792, model = 1927676967, coords = vector3(-803.21, 332.23, 190.86)}
},
},
}
},
{
propertyid = "eclipselvl4",
price = 1300000,
address = "Floor 4, South Mo Milton Dr, Rockford Hills, Los Santos",
description = "Let's face it: we had you at the pricetag. The fact that this happens to be one of the most decadent living spaces for hundreds of miles doesn't really matter. Just like its new owner, something this expensive doesn't need to be \"nice\" or \"useful\". You're a perfect match. What are you waiting for?",
images = {"https://i.imgur.com/Ow27PoI.png", "https://i.imgur.com/0RlrNvS.png", "https://i.imgur.com/wWh61BU.png", "https://i.imgur.com/915GCE6.png", "https://i.imgur.com/nxto3Iq.png", "https://i.imgur.com/YdFquKL.png", "https://i.imgur.com/kvLzlVo.png", "https://i.imgur.com/H9AgJWN.png"},
coords = vector3(-777.15, 319.65, 85.66),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-779.26, 340.23, 196.59),
doors = {
{hash = 1619269546, model = 103339342, coords = vector3(-778.56, 340.23, 196.84)}
},
},
{ -- bedroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-766.69, 324.82, 199.39),
doors = {
{hash = -1089177686, model = 1927676967, coords = vector3(-766.69, 325.52, 199.64)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-767.06, 333.86, 195.99),
doors = {
{hash = 190815166, model = 1927676967, coords = vector3(-767.06, 333.16, 196.24)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-757.80, 324.82, 199.39),
doors = {
{hash = 438304846, model = 1927676967, coords = vector3(-757.80, 325.52, 199.64)}
},
},
}
},
{
propertyid = "eclipselvl5",
price = 1350000,
address = "Floor 5, South Mo Milton Dr, Rockford Hills, Los Santos",
description = "A massive furnished luxury triplex at this price? You've gotta love a bargain like this! Snap it up now before the president loses the next election and they tax the hell out of you.",
images = {"https://i.imgur.com/Ow27PoI.png", "https://i.imgur.com/0RlrNvS.png", "https://i.imgur.com/R9XKWfw.png", "https://i.imgur.com/wK9lmFj.png", "https://i.imgur.com/sauJChJ.png", "https://i.imgur.com/oOrTbg3.png", "https://i.imgur.com/dDLGTHa.png", "https://i.imgur.com/ZhCWjMe.png"},
coords = vector3(-777.15, 319.65, 85.66),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-776.70, 340.08, 207.48),
doors = {
{hash = 1069583724, model = 330294775, coords = vector3(-776.70, 339.38, 207.73)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-779.89, 333.17, 207.52),
doors = {
{hash = -2134219263, model = 224975209, coords = vector3(-780.59, 333.17, 207.77)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-789.30, 332.71, 201.31),
doors = {
{hash = -1126973435, model = 224975209, coords = vector3(-789.30, 332.01, 201.56)}
},
},
}
},
{
propertyid = "eclipselvl6",
price = 1400000,
address = "Floor 6, South Mo Milton Dr, Rockford Hills, Los Santos",
description = "This luxury triplex is move-in ready! The previous owner was so rich he just left all his furniture. Just bring yourself and be ready for lots of new superficial Friends when people find out you live on Eclipse Boulevard in Rockford Hills.",
images = {"https://i.imgur.com/Ow27PoI.png", "https://i.imgur.com/0RlrNvS.png", "https://i.imgur.com/MAn6YkN.png", "https://i.imgur.com/FILvA1F.png", "https://i.imgur.com/psyfmPJ.png", "https://i.imgur.com/nieumL4.png", "https://i.imgur.com/UyfXqEh.png", "https://i.imgur.com/mb1QRB9.png"},
coords = vector3(-777.15, 319.65, 85.66),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-777.97, 323.70, 211.90),
doors = {
{hash = 1533351509, model = 34120519, coords = vector3(-777.98, 323.00, 212.15)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-767.80, 330.91, 211.30),
doors = {
{hash = -381822001, model = 34120519, coords = vector3(-767.80, 330.21, 211.55)}
},
},
{ -- bedroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-788.48, 330.91, 210.70),
doors = {
{hash = -1141106537, model = 34120519, coords = vector3(-788.48, 330.21, 210.95)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-795.57, 330.91, 210.70),
doors = {
{hash = -1913609048, model = 34120519, coords = vector3(-795.57, 330.21, 210.95)}
},
},
}
},
{
propertyid = "eclipselvl7",
price = 1500000,
address = "Floor 7, South Mo Milton Dr, Rockford Hills, Los Santos",
description = "Eclipse Towers on Eclipse Boulevard... This is the best address in Rockford Hills! Stand at your floor-to-ceiling windows, take in the spectacular panoramic views, pour yourself a drink and toast how amazing your life is while you look down on everybody else.",
images = {"https://i.imgur.com/Ow27PoI.png", "https://i.imgur.com/0RlrNvS.png", "https://i.imgur.com/R9XKWfw.png", "https://i.imgur.com/wK9lmFj.png", "https://i.imgur.com/sauJChJ.png", "https://i.imgur.com/oOrTbg3.png", "https://i.imgur.com/dDLGTHa.png", "https://i.imgur.com/ZhCWjMe.png"},
coords = vector3(-777.15, 319.65, 85.66),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-779.40, 317.18, 223.12),
doors = {
{hash = 1497976983, model = 330294775, coords = vector3(-779.41, 317.88, 223.37)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-776.22, 324.08, 223.15),
doors = {
{hash = -658190673, model = 224975209, coords = vector3(-775.52, 324.08, 223.40)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-766.81, 324.54, 216.95),
doors = {
{hash = -1152639934, model = 224975209, coords = vector3(-766.81, 325.24, 217.20)}
},
},
}
},
{
propertyid = "delperroheightslvl1",
price = 450000,
address = "Floor 1, Marathon Ave, Del Perro, Los Santos",
description = "Luxury Del Perro Heights apartment complex! For all you voyeurs out there! This spectacular condo is one of the lower units so might not boast the best views, but all the buildings around you will have a direct eyeline into your awesome life 24/7.",
images = {"https://i.imgur.com/HlyQ9U4.png", "https://i.imgur.com/9BOHLsa.png", "https://i.imgur.com/R9XKWfw.png", "https://i.imgur.com/wK9lmFj.png", "https://i.imgur.com/sauJChJ.png", "https://i.imgur.com/oOrTbg3.png", "https://i.imgur.com/dDLGTHa.png", "https://i.imgur.com/ZhCWjMe.png"},
coords = vector3(-1447.74, -537.62, 34.74),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-1457.21, -519.93, 56.79),
doors = {
{hash = 2029049232, model = 330294775, coords = vector3(-1456.82, -520.50, 57.04)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-1455.87, -527.41, 56.83),
doors = {
{hash = 1238429077, model = 224975209, coords = vector3(-1456.44, -527.81, 57.08)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-1463.32, -533.19, 50.62),
doors = {
{hash = 1436925202, model = 224975209, coords = vector3(-1462.91, -533.76, 50.87)}
},
},
}
},
{
propertyid = "delperroheightslvl2",
price = 475000,
address = "Floor 2, Marathon Ave, Del Perro, Los Santos",
description = "Luxury Del Perro Heights apartment complex! For all you voyeurs out there! This spectacular condo is one of the lower units so might not boast the best views, but all the buildings around you will have a direct eyeline into your awesome life 24/7.",
images = {"https://i.imgur.com/HlyQ9U4.png", "https://i.imgur.com/9BOHLsa.png", "https://i.imgur.com/R9XKWfw.png", "https://i.imgur.com/wK9lmFj.png", "https://i.imgur.com/sauJChJ.png", "https://i.imgur.com/oOrTbg3.png", "https://i.imgur.com/dDLGTHa.png", "https://i.imgur.com/ZhCWjMe.png"},
coords = vector3(-1447.74, -537.62, 34.74),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-1457.22, -519.93, 69.42),
doors = {
{hash = -2138331242, model = 330294775, coords = vector3(-1456.82, -520.50, 69.67)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-1455.87, -527.41, 69.45),
doors = {
{hash = -2108904016, model = 224975209, coords = vector3(-1456.44, -527.81, 69.70)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-1463.32, -533.19, 63.25),
doors = {
{hash = 975804651, model = 224975209, coords = vector3(-1462.91, -533.76, 63.50)}
},
},
}
},
{
propertyid = "delperroheightslvl3",
price = 500000,
address = "Floor 3, Marathon Ave, Del Perro, Los Santos",
description = "This luxury condo on Marathon Avenue and Prosperity Street, in one of the most stylish apartment buildings in hip Del Perro, directly opposite the Bahama Mamas nightclub for the perfect release at the end of a hard days work.",
images = {"https://i.imgur.com/HlyQ9U4.png", "https://i.imgur.com/9BOHLsa.png", "https://i.imgur.com/MAn6YkN.png", "https://i.imgur.com/FILvA1F.png", "https://i.imgur.com/psyfmPJ.png", "https://i.imgur.com/nieumL4.png", "https://i.imgur.com/UyfXqEh.png", "https://i.imgur.com/mb1QRB9.png"},
coords = vector3(-1447.74, -537.62, 34.74),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-1456.34, -534.82, 73.94),
doors = {
{hash = 1824095463, model = 34120519, coords = vector3(-1455.77, -534.42, 74.19)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-1468.09, -530.62, 73.34),
doors = {
{hash = 859041616, model = 34120519, coords = vector3(-1467.51, -530.22, 73.59)}
},
},
{ -- bedroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-1456.23, -547.56, 72.74),
doors = {
{hash = 520651225, model = 34120519, coords = vector3(-1455.65, -547.16, 72.99)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-1452.16, -553.37, 72.74),
doors = {
{hash = 2138616294, model = 34120519, coords = vector3(-1451.58, -552.97, 72.99)}
},
},
}
},
{
propertyid = "weazelplazalvl1",
price = 650000,
address = "Floor 1, Movie Star Way, Rockford Hills, Los Santos",
description = "Movie Star Way! Don't miss this opportunity to live in one of the most exclusive apartment complexes in Rockford Hills. Even the janitor earns six figures in this building.",
images = {"https://i.imgur.com/ROEOfiJ.png", "https://i.imgur.com/sKMH1wG.png", "https://i.imgur.com/R9XKWfw.png", "https://i.imgur.com/wK9lmFj.png", "https://i.imgur.com/sauJChJ.png", "https://i.imgur.com/oOrTbg3.png", "https://i.imgur.com/dDLGTHa.png", "https://i.imgur.com/ZhCWjMe.png"},
coords = vector3(-906.04, -451.52, 39.61),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-896.97, -429.84, 121.47),
doors = {
{hash = 320484801, model = 330294775, coords = vector3(-896.65, -430.47, 121.72)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-896.71, -437.44, 121.50),
doors = {
{hash = -496570206, model = 224975209, coords = vector3(-897.34, -437.76, 121.75)}
},
},
{ -- bathroom door.
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-904.91, -442.08, 115.30),
doors = {
{hash = -1440607693, model = 224975209, coords = vector3(-904.60, -442.71, 115.55)}
},
},
}
},
{
propertyid = "weazelplazalvl2",
price = 675000,
address = "Floor 2, Movie Star Way, Rockford Hills, Los Santos",
ddescription = "Movie Star Way! Don't miss this opportunity to live in one of the most exclusive apartment complexes in Rockford Hills. Even the janitor earns six figures in this building.",
images = {"https://i.imgur.com/ROEOfiJ.png", "https://i.imgur.com/sKMH1wG.png", "https://i.imgur.com/R9XKWfw.png", "https://i.imgur.com/wK9lmFj.png", "https://i.imgur.com/sauJChJ.png", "https://i.imgur.com/oOrTbg3.png", "https://i.imgur.com/dDLGTHa.png", "https://i.imgur.com/ZhCWjMe.png"},
coords = vector3(-906.04, -451.52, 39.61),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-883.90, -446.52, 95.32),
doors = {
{hash = 867528575, model = 330294775, coords = vector3(-884.52, -446.83, 95.57)}
},
},
{ -- heist room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-891.50, -446.80, 95.36),
doors = {
{hash = 194950201, model = 224975209, coords = vector3(-891.82, -446.18, 95.61)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-896.17, -438.62, 89.15),
doors = {
{hash = 749909263, model = 224975209, coords = vector3(-896.80, -438.93, 89.40)}
},
},
}
},
{
propertyid = "weazelplazalvl3",
price = 700000,
address = "Floor 3, Movie Star Way, Rockford Hills, Los Santos",
description = "Movie Star Way! Don't miss this opportunity to live in one of the most exclusive apartment complexes in Rockford Hills. Even the janitor earns six figures in this building.",
images = {"https://i.imgur.com/ROEOfiJ.png", "https://i.imgur.com/sKMH1wG.png", "https://i.imgur.com/R9XKWfw.png", "https://i.imgur.com/wK9lmFj.png", "https://i.imgur.com/sauJChJ.png", "https://i.imgur.com/oOrTbg3.png", "https://i.imgur.com/dDLGTHa.png", "https://i.imgur.com/ZhCWjMe.png"},
coords = vector3(-906.04, -451.52, 39.61),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-901.31, -460.30, 126.40),
doors = {
{hash = 589874479, model = 330294775, coords = vector3(-901.63, -459.68, 126.65)}
},
},
{ -- heist room door.
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-901.68, -452.71, 126.43),
doors = {
{hash = -879073597, model = 224975209, coords = vector3(-901.06, -452.39, 126.68)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-893.55, -447.95, 120.22),
doors = {
{hash = -2143253920, model = 224975209, coords = vector3(-893.87, -447.32, 120.47)}
},
},
}
},
{
propertyid = "michaelhouse",
price = 905000,
address = "Portola Drive, Rockford Hills, Los Santos",
description = "The property contains a pool, hot-tub, and tennis court. Attached to the house is a two-car garage. The interior is made up of three bedrooms and two bathrooms upstairs. There is also a large living room, kitchen, and doors to garage/outside downstairs. There is a skylight above the stairs inside the house.",
images = {"https://i.imgur.com/jULG897.png", "https://i.imgur.com/pJx7hCn.png", "https://i.imgur.com/yt3jaST.png", "https://i.imgur.com/qd8zKWp.png", "https://i.imgur.com/x3H3Okc.png", "https://i.imgur.com/Xa9nAvj.png"},
coords = vector3(-813.50, 179.39, 72.16),
doors = {
{ -- gate door
state = 1,
rate = 1.0,
accessDistance = 7.0,
textCoords = vector3(-844.03, 159.34, 66.80),
doors = {
{hash = -894678673, model = -2125423493, coords = vector3(-844.05, 155.96, 66.03)}
},
},
{ -- front outside door
state = 1,
rate = 15.0,
accessDistance = 1.5,
textCoords = vector3(-848.97, 178.62, 69.82),
doors = {
{hash = -463805669, model = -1568354151, coords = vector3(-848.93, 179.31, 70.02)}
},
},
{ -- garage door
state = 1,
accessDistance = 5.0,
textCoords = vector3(-815.48, 186.08, 72.48),
doors = {
{hash = -826468641, model = 30769481, coords = vector3(-815.29, 185.97, 73.03)}
},
},
{ -- garage to inside door
state = 1,
rate = 15.0,
accessDistance = 1.5,
textCoords = vector3(-806.92, 185.71, 72.48),
doors = {
{hash = 2105818087, model = -1563640173, coords = vector3(-806.28, 186.02, 72.62)}
},
},
{ -- front doors
state = 1,
rate = 15.0,
accessDistance = 1.5,
textCoords = vector3(-816.48, 178.28, 72.23),
doors = {
{hash = -1613378619, model = 159994461, coords = vector3(-816.72, 179.10, 72.83)},
{hash = 1113858617, model = -1686014385, coords = vector3(-816.11, 177.51, 72.83)}
},
},
{ -- back doors
state = 1,
rate = 15.0,
accessDistance = 1.5,
textCoords = vector3(-795.44, 177.54, 72.84),
doors = {
{hash = 438875237, model = -1454760130, coords = vector3(-796.57, 177.22, 73.04)},
{hash = 61427418, model = 1245831483, coords = vector3(-794.51, 178.01, 73.04)}
},
},
{ -- back doors
state = 1,
rate = 15.0,
accessDistance = 1.5,
textCoords = vector3(-793.83, 181.51, 72.83),
doors = {
{hash = 1845362150, model = -1454760130, coords = vector3(-793.39, 180.51, 73.04)},
{hash = -516058427, model = 1245831483, coords = vector3(-794.19, 182.57, 73.04)}
},
},
{ -- micheal room
state = 0,
accessDistance = 1.5,
textCoords = vector3(-809.98, 177.60, 76.74),
doors = {
{hash = -248903396, model = -384976104, coords = vector3(-809.28, 177.86, 76.89)}
},
},
{ -- micheal son room
state = 1,
accessDistance = 1.0,
textCoords = vector3(-806.61, 173.28, 76.74),
doors = {
{hash = 613453351, model = -794543736, coords = vector3(-806.77, 174.02, 76.89)}
},
},
{ -- micheal daughter room
state = 1,
accessDistance = 1.0,
textCoords = vector3(-803.41, 175.89, 76.74),
doors = {
{hash = -1376491100, model = 1204471037, coords = vector3(-802.70, 176.18, 76.89)}
},
},
{ -- toilet room
state = 1,
accessDistance = 1.0,
textCoords = vector3(-804.33, 172.14, 76.74),
doors = {
{hash = 702633652, model = -384976104, coords = vector3(-804.95, 171.86, 76.89)}
},
},
}
},
{
propertyid = "onielfarmhouse",
price = 450000,
address = "Union Rd, Grapeseed, Blaine County",
description = "There is a large farmhouse, barn, stables, equipment sheds and grain storage silos. The main house originally was a luxurious home, but by the events of the previous owners it is messy and in a state of disrepair.",
images = {"https://i.imgur.com/4vHqIlu.png", "https://i.imgur.com/FJ3XC6N.png", "https://i.imgur.com/VsGXzG1.png", "https://i.imgur.com/SleIdce.png"},
coords = vector3(2445.88, 4977.68, 46.81),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2452.82, 4969.86, 46.81),
doors = {
{hash = -1904698345, model = 1413743677, coords = vector3(2453.18, 4969.37, 46.90)}
},
},
{ -- back door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2449.11, 4989.42, 46.81),
doors = {
{hash = -874854321, model = 1413743677, coords = vector3(2448.64, 4988.78, 46.90)}
},
},
{ -- back room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2454.90, 4986.53, 46.81),
doors = {
{hash = 471414784, model = -5479653, coords = vector3(2455.44, 4986.11, 46.90)}
},
},
{ -- washing room back door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2440.60, 4982.26, 46.81),
doors = {
{hash = 1564703505, model = 1413743677, coords = vector3(2441.02, 4981.73, 46.90)}
},
},
{ -- middle back room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2435.91, 4975.53, 46.81),
doors = {
{hash = 1931523078, model = 1413743677, coords = vector3(2435.43, 4975.02, 46.90)}
},
},
{ -- very small room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2442.67, 4966.47, 46.81),
doors = {
{hash = 1900315871, model = -5479653, coords = vector3(2442.19, 4966.00, 46.90)}
},
},
{ -- very small room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2442.67, 4966.47, 46.81),
doors = {
{hash = 1900315871, model = -5479653, coords = vector3(2442.19, 4966.00, 46.90)}
},
},
{ -- toilet door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2436.79, 4971.31, 46.81),
doors = {
{hash = -1410409049, model = -5479653, coords = vector3(2437.18, 4971.82, 46.90)}
},
},
-- top floor
{ -- front right outside doors
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2454.77, 4974.52, 51.57),
doors = {
{hash = 1284213344, model = 1194028902, coords = vector3(2455.50, 4975.34, 51.82)},
{hash = 292657289, model = 1194028902, coords = vector3(2453.90, 4973.74, 51.82)}
},
},
{ -- front right room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2450.48, 4976.83, 51.56),
doors = {
{hash = -987414913, model = -5479653, coords = vector3(2450.96, 4976.35, 51.66)},
},
},
-- top floor
{ -- front left outside doors
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2443.00, 4967.03, 51.56),
doors = {
{hash = -2129451377, model = 1194028902, coords = vector3(2443.78, 4967.84, 51.82)},
{hash = 1117521659, model = 1194028902, coords = vector3(2442.18, 4966.24, 51.82)}
},
},
{ -- front left room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2447.54, 4975.20, 51.56),
doors = {
{hash = -590522673, model = -5479653, coords = vector3(2448.03, 4974.67, 51.66)},
},
},
{ -- back left room door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2444.73, 4977.91, 51.56),
doors = {
{hash = 605223920, model = -5479653, coords = vector3(2444.21, 4978.46, 51.66)},
},
},
{ -- back right room outside doors
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2450.82, 4984.94, 51.57),
doors = {
{hash = 1957927869, model = 1194028902, coords = vector3(2450.02, 4985.69, 51.82)},
{hash = -339631387, model = 1194028902, coords = vector3(2451.62, 4984.10, 51.82)}
},
},
{ -- back left room outside doors
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(2442.15, 4980.50, 51.57),
doors = {
{hash = -1718399483, model = 1194028902, coords = vector3(2443.06, 4979.71, 51.82)},
{hash = 1782573544, model = 1194028902, coords = vector3(2441.47, 4981.30, 51.82)}
},
},
}
},
{
propertyid = "laslagunasapartment",
price = 50000,
address = "Floor 2, Las Lagunas Blvd, West Vinewood, Los Santos",
description = "This building has seen better days - the closest thing to a doorman is a homeless guy you sometimes have to step over to get into the lobby at night, but how else are you going to find a Vinewood apartment in your price range? Hope you like the smell of urine.",
images = {"https://i.imgur.com/JRDFtUH.png", "https://i.imgur.com/MFzdfle.png", "https://i.imgur.com/FSfiz3V.png", "https://i.imgur.com/YajFv88.png"},
coords = vector3(-107.34, -8.48, 70.52),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-107.34, -8.48, 70.52),
doors = {
{hash = 518605586, model = 486670049, coords = vector3(-107.54, -9.02, 70.67)}
},
},
}
},
{
propertyid = "trevorbeachapartment",
price = 85000,
address = "7611, Goma St, La Puerta, Los Santos",
description = " Located on the second floor of an apartment building at 7611 Goma Street, Vespucci Beach, Los Santos, The apartment is small, but well-furnished. The big windows are exposed to the buitful view of vespucci beach.",
images = {"https://i.imgur.com/TkVkD4s.png", "https://i.imgur.com/k0foKtO.png", "https://i.imgur.com/BCBACBH.png"},
coords = vector3(-1152.19, -1518.84, 10.63),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-1150.28, -1521.49, 10.53),
doors = {
{hash = -1183430677, model = -607040053, coords = vector3(-1149.71, -1521.09, 10.78)}
},
},
{ -- bedroom 1 door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-1150.29, -1515.15, 10.53),
doors = {
{hash = -1936706028, model = -1128607325, coords = vector3(-1149.89, -1515.72, 10.78)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-1149.58, -1518.37, 10.53),
doors = {
{hash = 2134130838, model = 1575804630, coords = vector3(-1150.16, -1518.77, 10.78)}
},
},
}
},
{
propertyid = "franklinoldhouse",
price = 150000,
address = "Forum Dr, Strawberry, Los Santos",
description = "A single-story bungalow, on the first door to the left of the front door, across the hallway is a small living room with a television. The living room leads on to a small kitchen. The interior of the house is characterized by its retro design and decorated with various spiritual and tribal ornaments and artwork. A garage can be found to the left of the property, which is large enough to store one car and one motorcycle.",
images = {"https://i.imgur.com/w4iyMxW.png", "https://i.imgur.com/shzrIp3.png", "https://i.imgur.com/03VVthW.png"},
coords = vector3(-13.94, -1434.77, 31.10),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-14.17, -1441.18, 30.94),
doors = {
{hash = 372808129, model = 520341586, coords = vector3(-14.87, -1441.18, 31.19)}
},
},
{ -- bathroom door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(-15.98, -1436.73, 30.95),
doors = {
{hash = 608563148, model = -610054759, coords = vector3(-15.99, -1436.03, 31.20)}
},
},
{ -- garage door
state = 1,
accessDistance = 5.0,
textCoords = vector3(-25.31, -1430.99, 30.65),
doors = {
{hash = 1881615407, model = 703855057, coords = vector3(-25.28, -1431.07, 30.87)}
},
},
}
},
{
propertyid = "lesterhouse",
price = 50000,
address = "Amarillo Vista, El Burry Heights, Los Santos",
description = "The property consists of a small, fully-detached bungalow-style house and an external double garage. There are multiple satellite dishes and antennae on the roof. The house is surrounded by chain-link fences with additional razor wire protection in some areas above the garage. There are two cables (one red, one blue) leading from a high voltage cabinet around the back to the front room window. The windows are all barred. The walls of the house and yard are adorned with various warning signs. There are five external CCTV cameras attached to the house, connected to monitors located inside the house. An intercom can be found to the left of the front door. A couple of garden gnomes are outside the front door and there are two more in the back yard.",
images = {"https://i.imgur.com/c3Gxcxd.png", "https://i.imgur.com/0Hyjvsf.png", "https://i.imgur.com/Csf7Aih.png"},
coords = vector3(1274.38, -1720.36, 54.68),
doors = {
{ -- Front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(1274.38, -1720.36, 54.68),
doors = {
{hash = -952160316, model = 1145337974, coords = vector3(1273.82, -1720.70, 54.92)}
},
},
}
},
{
propertyid = "trevorhouse",
price = 5000,
address = "Zancudo Avenue, Sandy Shores, Blaine County",
description = "The smallest house you can find, the interior is divided into three sections: a large living area which take up the majority of the trailer; consisting of a table a television and radio, a small bedroom with a wardrobe and bed, and a miniature toilet cubicle with shower facilities, opposite the front door. The outside of the trailer has a prefabricated patio leading up to the main entrance, while on the opposite side, is a cluttered two-car garage with a driveway leading onto Marina Drive.",
images = {"https://i.imgur.com/Xpe9DxM.png", "https://i.imgur.com/3nymlHq.png", "https://i.imgur.com/P9efdn6.png"},
coords = vector3(1973.48, 3818.62, 33.44),
doors = {
{ -- front door
state = 1,
rate = 5.0,
accessDistance = 1.5,
textCoords = vector3(1973.38, 3815.77, 33.51),
doors = {
{hash = 625511584, model = 132154435, coords = vector3(1972.77, 3815.37, 33.66)}
},
},
{ -- garage door
state = 1,
accessDistance = 4.0,
textCoords = vector3(1972.70, 3824.52, 32.37),
doors = {
{hash = 803305065, model = 67910261, coords = vector3(1972.79, 3824.56, 32.68)}
},
},
}
},
}