-
Notifications
You must be signed in to change notification settings - Fork 30
/
locations.json
1523 lines (1523 loc) · 45.8 KB
/
locations.json
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
[
{
"id":1,
"type":"Vehicles",
"title":"Obey Tailgator",
"notes":"You can find Michaels story car (Audi A6/A8) on the parking lot of the golf course.",
"order":1,
"lat":69.908,
"lng":-138.230,
"video":{
"yt_id":"IdYI9VdsqT0",
"yt_user":"urparanoid",
"start":"2:13",
"end":"2:51"
}
},
{
"id":2,
"type":"Vehicles",
"title":"Bulldozer",
"notes":"Located in the quarry in Tataviam Mountains.",
"order":2,
"lat":77.225,
"lng":-95.713,
"video":{
"yt_id":"k2_zxkmiGWE",
"yt_user":"Olli43",
"start":"1:39",
"end":"2:51"
}
},
{
"id":3,
"type":"Wall breaches",
"title":"East LSC bridge",
"notes":"Go to the location as seen below. Push the trash bin with your car straight against the wall. Stand on the bin and now just jump and you will be inside and under the bridge. You'll be able to shoot anywhere through it.",
"order":1,
"lat":66.054,
"lng":-117.773,
"video":{
"yt_id":"llvw8fiGplA",
"yt_user":"toffytastic",
"start":"0:24",
"end":"1:15"
}
},
{
"id":4,
"type":"Wall breaches",
"title":"Bridge in Del Perro",
"notes":"Go to the location as seen below. Swim under the bridge and hop up the rail on the left side. Turn left and straight run through the wall.",
"order":2,
"lat":65.017,
"lng":-134.780,
"video":{
"yt_id":"hhxeFRqApk4",
"yt_user":"GTAKIDS",
"start":"0:45",
"end":"1:00"
}
},
{
"id":5,
"type":"Wall breaches",
"title":"Kayton Skyscraper",
"notes":"Go to the location as seen below. Get into a helicopter and fly about 15 meters above the ground. Fly straigt ahead the tower to wall breach. If you are inside just fly down and land your helicopter.",
"order":3,
"lat":67.580,
"lng":-132.188,
"video":{
"yt_id":"YtjnGkGeWzM",
"yt_user":"KingCodShots",
"start":"0:33",
"end":"1:00"
}
},
{
"id":6,
"type":"Wall breaches",
"title":"Beach Store",
"notes":"Go to the location as seen below. Turn to the open garage and drive straight throgh the wall. Note: during day time you need an bicycle because there are boxes that prevent you from entering the garage!",
"order":4,
"lat":63.966,
"lng":-136.527,
"video":{
"yt_id":"ByP1eT-1dDw",
"yt_user":"Fed X Gaming",
"start":"0:22",
"end":"1:00"
}
},
{
"id":7,
"type":"Wall breaches",
"title":"Eclipse Tower",
"notes":"Go to the location as seen below with a decent siced vehicle. Open your phone and call Simeon. Once you see the \"Request a Job Invite\" HUD, do not press anything. Drive your truck to any corner of the garage door, get out, jump on top of the truck and jump inside the building.",
"order":5,
"lat":70.609,
"lng":-132.341,
"video":{
"yt_id":"NH1ZBUs76Rs",
"yt_user":"Fed X Gaming",
"start":"0:25",
"end":"1:06"
}
},
{
"id":8,
"type":"Wall breaches",
"title":"Parking lot in San Andreas",
"notes":"Go to the location as seen below. Turn to the building, hop over the shrub, move about ten more meters and turn to the left wall. Jump to get inside the parking lot.",
"order":6,
"lat":70.096,
"lng":-126.552,
"video":{
"yt_id":"NH1ZBUs76Rs",
"yt_user":"Fed X Gaming",
"start":"1:55",
"end":"2:40"
}
},
{
"id":9,
"type":"Wall breaches",
"title":"Insurance store in San Andreas",
"notes":"Go to the location as seen below. Walk to the entrance door and trun to the wall. Jump to get inside the building.",
"order":7,
"lat":69.806,
"lng":-125.563,
"video":{
"yt_id":"NH1ZBUs76Rs",
"yt_user":"Fed X Gaming",
"start":"3:08",
"end":"3:40"
}
},
{
"id":10,
"type":"Wall breaches",
"title":"Garage in San Andreas",
"notes":"Go to the location as seen below. Get into a decent sized vehicle and park it infront of the garage. Hop on it and jump to get inside the building.",
"order":8,
"lat":68.564,
"lng":-124.541,
"video":{
"yt_id":"o8BPUZe65_o",
"yt_user":"Fed X Gaming",
"start":"0:25",
"end":"1:20"
}
},
{
"id":11,
"type":"Wall breaches",
"title":"Residence near LSPD",
"notes":"Go to the location as seen below. Turn around to the red residence house. Hop over the gate, run to the backyard, go upstairs to the second floor. Turn left to the red pillar and jump.",
"order":9,
"lat":66.355,
"lng":-135.088,
"video":{
"yt_id":"o8BPUZe65_o",
"yt_user":"Fed X Gaming",
"start":"1:35",
"end":"2:35"
}
},
{
"id":12,
"type":"Wall breaches",
"title":"FIB tower",
"notes":"Go to the location as seen below. Walk to the entrance door and trun to the wall. Jump to get inside the building.",
"order":10,
"lat":67.012,
"lng":-123.486,
"video":{
"yt_id":"o8BPUZe65_o",
"yt_user":"Fed X Gaming",
"start":"3:30",
"end":"4:40"
}
},
{
"id":13,
"type":"Wall breaches",
"title":"Car park",
"notes":"Go to the location as seen below. Drive into the wall about one meter besides the electricity box.",
"order":11,
"lat":66.710,
"lng":-128.112,
"video":{
"yt_id":"3Jerg8fknik",
"yt_user":"Fed X Gaming",
"start":"0:25",
"end":"1:00"
}
},
{
"id":14,
"type":"Wall breaches",
"title":"Shrub near Eclipse tower",
"notes":"Go to the location as seen below. Walk to the pillar and jump to get into the shrub.",
"order":12,
"lat":70.580,
"lng":-132.528,
"video":{
"yt_id":"3Jerg8fknik",
"yt_user":"Fed X Gaming",
"start":"1:35",
"end":"2:25"
}
},
{
"id":15,
"type":"Wall breaches",
"title":"Bridge in Tataviam Mountains",
"notes":"Go to the location as seen below. Walk towards the bridge wall. Turn right and walk straight along the wall until you are inside the bridge. Turn around and walk in the other direction until you are fully breached inside the bridge.",
"order":13,
"lat":71.103,
"lng":-99.163,
"video":{
"yt_id":"3Jerg8fknik",
"yt_user":"Fed X Gaming",
"start":"3:00",
"end":"4:00"
}
},
{
"id":16,
"type":"Wall breaches",
"title":"Rockford Plaza",
"notes":"Go to the location as seen below. Park your car against the railing. Hop onto your roof, run and jump into the wall.",
"order":14,
"lat":69.100,
"lng":-127.090,
"video":{
"yt_id":"neG9BXSi49E",
"yt_user":"toffytastic",
"start":"0:20",
"end":"1:10"
}
},
{
"id":17,
"type":"Wall breaches",
"title":"Example of \"Breach anywhere\" method",
"notes":"Go to the location as seen below. Park your car against the railing. Hop onto your roof, run and jump into the wall.",
"order":15,
"lat":68.609,
"lng":-122.454,
"video":{
"yt_id":"egTdSYyLA94",
"yt_user":"GamerTutorials",
"start":"0:20",
"end":"1:30"
},
"credit":[
{
"what":"Glitch found",
"who":"NobleThread",
"where":"http://www.dieselgaming.com/forums/grand-theft-auto-v.39/"
}
]
},
{
"id":18,
"type":"Wall breaches",
"title":"Industrial building",
"notes":"Go to the location as seen below. Climb up the ladder, run across the roof and jump onto the roof of the building next to it. Run at the end of the roof to the left corner. Once you're there you'll fall through the roof.",
"order":16,
"lat":67.127,
"lng":-117.114,
"video":{
"yt_id":"ROiu8EqnSYg",
"yt_user":"Danni",
"start":"0:10",
"end":"1:10"
}
},
{
"id":19,
"type":"Wall breaches",
"title":"Highway",
"notes":"Works the same like \"Bridge in Tataviam Mountains\". Go to the location as seen below. Walk towards the bridge wall. Turn left and walk straight along the wall until you are inside the bridge. Turn around and walk in the other direction until you are fully breached inside the bridge.",
"order":17,
"lat":65.339,
"lng":-111.555,
"video":{
"yt_id":"fDicikImeuY",
"yt_user":"oOGamingForCharityOo",
"start":"0:23",
"end":"1:10"
}
},
{
"id":20,
"type":"Wall breaches",
"title":"Sandy Shores Store",
"notes":"Go to the location as seen below. Walk towards the store right beside the entrance. Jump to get inside the building.",
"order":18,
"lat":79.122,
"lng":-105.403,
"video":{
"yt_id":"62OBpgnGssw",
"yt_user":"oOGamingForCharityOo",
"start":"0:23",
"end":"0:50"
}
},
{
"id":21,
"type":"Wall breaches",
"title":"FIB Tower",
"notes":"Go to the location as seen below. Get a helicopter and fly on top of the building. Get out and walk to the side of the building. Walk downstairs the ladder and turn right. At the end of that platform turn left and walk straight into the wall/border (not on the side with the big FIB logo). You should fall and end up on the next floor. After some seconds the textures should load and you should be inside the FIB building.",
"order":19,
"lat":66.883,
"lng":-123.146,
"video":{
"yt_id":"VApVSfpLtsE",
"yt_user":"Dat Saintsfan",
"start":"0:20",
"end":"1:25"
}
},
{
"id":22,
"type":"Wall breaches",
"title":"Beach house",
"notes":"Go to the location as seen below. Walk behind the house, turn right and sprint into the house.",
"order":20,
"lat":71.410,
"lng":-153.929,
"video":{
"yt_id":"LlShnWvtHKM",
"yt_user":"Im Blood Lust",
"start":"0:27",
"end":"1:05"
}
},
{
"id":23,
"type":"Wall breaches",
"title":"Below Airport",
"notes":"Go to the location as seen below. Walk to the stack of greenish pillars, make your way to the top of them. Walk straight ahead to the little space between them, get in there and run straight into the grey pillars until you glitch into them.",
"order":21,
"lat":56.170,
"lng":-143.438,
"video":{
"yt_id":"ym7_1hfYUEk",
"yt_user":"Im Blood Lust",
"start":"0:50",
"end":"2:10"
}
},
{
"id":24,
"type":"Wall breaches",
"title":"Meth lab",
"notes":"Go to the location as seen below. Back up your car to the wall where the generators are. Hop on your car and shoot out the window on the second floor. Climb up the fan and then climb up inside the window.",
"order":22,
"lat":78.883,
"lng":-110.940,
"video":{
"yt_id":"ajSwgxc4GVs",
"yt_user":"Dat Saintsfan",
"start":"0:24",
"end":"1:10"
}
},
{
"id":25,
"type":"Wall breaches",
"title":"Vespucci Canals building",
"notes":"Go to the location as seen below. Climb over the wall and walk straight into the building.",
"order":23,
"lat":66.054,
"lng":-134.209,
"video":{
"yt_id":"u2aaX7ON0os",
"yt_user":"Optimuh",
"start":"0:15",
"end":"1:10"
}
},
{
"id":26,
"type":"Wall breaches",
"title":"Vinewood Observatory",
"notes":"Go to the location as seen below. Climb up the ladder and turn left. Run to the gap between the two roof elements. Try to fall between them to breach into the building.",
"order":24,
"lat":71.577,
"lng":-118.136,
"video":{
"yt_id":"thOyjDVK9PE",
"yt_user":"Optimuh",
"start":"0:15",
"end":"0:50"
}
},
{
"id":26,
"type":"Wall breaches",
"title":"Dollar Pills",
"notes":"Go to the location as seen below. Climb on top of the yellow cloth bin and jump again to get inside the building.",
"order":24,
"lat":77.116,
"lng":-118.806,
"video":{
"yt_id":"tllv4nBwpJE",
"yt_user":"Wify142",
"start":"0:30",
"end":"1:10"
}
},
{
"id":27,
"type":"Wall breaches",
"title":"City Hall",
"notes":"Go to the location as seen below and go up the stairs to Mike's left in the picture. Follow the path until you reach an intersection. Your going to want to take a left. Like before, keep following the path until you you find the corner. It should be on the right hand side if you went the way I told you. All you have to do now, is walk into it. Do not continually walk into the wall, let go of the left stick once you are behind the little rail thingy. If you did it correctly, you should slide down the wall, into a little room. The invisible wall to Mike's left is bullet proof, but the one in front of him you can shoot through. The only way to get out of this little room is to jump into the void of death (behind mike out of frame).",
"order":25,
"lat":69.244,
"lng":-130.759,
"video":{
"yt_id":"NpwsV0qhGVw",
"yt_user":"darktroop6",
"start":"0:25",
"end":"3:20"
},
"credit":[
{
"what":"Glitch found",
"who":"/u/darktroop6",
"where":"http://www.reddit.com/r/gtaglitches/comments/20ih35/glitch_new_wallbreach_patch_111/"
}
]
},
{
"id":28,
"type":"Wall breaches",
"title":"Humane Laboratory",
"notes":"Go to the location as seen below. Walk upstairs and turn left. Run straight at the end of this to the generator. Hop on the generator and walk to the three blue pipes. Pull out your phone and accept any pending job invite. Back out immedietly and you should spawn inside the laboratory.",
"order":26,
"lat":79.157,
"lng":-90.110,
"video":{
"yt_id":"GVxNv9Bjcoo",
"yt_user":"Carrythxd",
"start":"0:05",
"end":"1:10"
}
},
{
"id":29,
"type":"Wall breaches",
"title":"Flecca Bank",
"notes":"Go to the location as seen below. Get a decent sized vehicle and park it infront of the bank. Hop on it and climb up the roof of the bank. Pull out your phone and accept any pending job invite. Back out immedietly and you should spawn inside the bank.",
"order":27,
"lat":77.032,
"lng":-113.269,
"video":{
"yt_id":"XFRFENhFM7E",
"yt_user":"KingCodShots",
"start":"1:45",
"end":"2:50"
}
},
{
"id":30,
"type":"Wall breaches",
"title":"LSPD police station",
"notes":"Go to the location as seen below. Walk over the shrub and stand besides the building wall. Pull out your phone and accept any pending job invite. Back out immedietly and you should spawn inside the police station.",
"order":28,
"lat":66.161,
"lng":-120.388,
"video":{
"yt_id":"QOvOWj4bWDo",
"yt_user":"Carrythxd",
"start":"0:05",
"end":"1:00"
}
},
{
"id":30,
"type":"Wall breaches",
"title":"Floyd's house",
"notes":"Go to the location as seen below. Walk upstairs and climb up the root. Pull out your phone and accept any pending job invite. Back out immedietly and you should spawn inside Floyd's house.",
"order":28,
"lat":63.904,
"lng":-135.879,
"video":{
"yt_id":"jSZoLF4mXhQ",
"yt_user":"Carrythxd",
"start":"0:03",
"end":"0:40"
}
},
{
"id":31,
"type":"Wall breaches",
"title":"Lester's house",
"notes":"Go to the location as seen below. Go to the backside of the house and try to jump on top the AC fan. Position yourself in the middle of the root. Pull out your phone and accept any pending job invite. Back out immedietly and you should spawn inside Lester's house.",
"order":29,
"lat":62.885,
"lng":-112.039,
"video":{
"yt_id":"1H0BWTBBhAM",
"yt_user":"DomisLive",
"start":"0:16",
"end":"1:00"
}
},
{
"id":32,
"type":"Wall breaches",
"title":"Strip Club office",
"notes":"Go to the location as seen below. Climb up the ladder and face the metal box on top of it. Pull out your phone and accept any pending job invite. Back out immedietly and you should spawn inside the Strip Club.",
"order":30,
"lat":64.914,
"lng":-123.376,
"video":{
"yt_id":"Dt-aPNYuA9s",
"yt_user":"DomisLive",
"start":"0:30",
"end":"1:10"
}
},
{
"id":32,
"type":"Wall breaches",
"title":"Trevors torture room",
"notes":"Go to the location as seen below. Climb up the ladder and face wall on the left jump on top the second roof. Walk in the middle of the roof and pull out your phone and accept any pending job invite. Back out immedietly and you should spawn inside the room.",
"order":30,
"lat":60.765,
"lng":-123.102,
"video":{
"yt_id":"lpdmTNho1c8",
"yt_user":"Dat Saintsfan",
"start":"0:18",
"end":"1:00"
}
},
{
"id":33,
"type":"Wall breaches",
"title":"Franklins mansion",
"notes":"Go to the location as seen below. Drive your car under the porch on the right if you are facing the mansion. Hop on top of it and climb up the roof. Pull out your phone and accept any pending job invite. Back out immedietly and you should spawn inside Franklins mansion.",
"order":31,
"lat":71.427,
"lng":-124.629,
"video":{
"yt_id":"UGQsnApgSMs",
"yt_user":"Optimuh",
"start":"0:10",
"end":"0:55"
}
},
{
"id":34,
"type":"Wall breaches",
"title":"Michaels mansion",
"notes":"Go to the location as seen below. Use a helicopter to get ontop of the roof. Walk in the middle, pull out your phone and accept any pending job invite. Back out immedietly and you should spawn inside Micheals mansion.",
"order":32,
"lat":70.237,
"lng":-132.517,
"video":{
"yt_id":"lprii2ufV5w",
"yt_user":"Trouble",
"start":"0:10",
"end":"0:40"
}
},
{
"id":35,
"type":"Wall breaches",
"title":"Space Docker garage",
"notes":"Go to the location as seen below. Get a decent sized vehicle and drive it against the trailer. Get on top and climb on the roof. Pull out your phone and accept any pending job invite. Back out immedietly and you should spawn inside the Space Docker garage.",
"order":33,
"lat":76.756,
"lng":-102.063,
"video":{
"yt_id":"Lgdy3CJNg58",
"yt_user":"Optimuh",
"start":"0:10",
"end":"0:55"
}
},
{
"id":36,
"type":"Wall breaches",
"title":"Recycling Plant",
"notes":"Go to the location as seen below. Climb up the ladders and walk in the middle of the roof. Pull out your phone and accept any pending job invite. Back out immedietly and you should spawn inside the Space Docker garage.",
"order":34,
"lat":63.332,
"lng":-130.386,
"video":{
"yt_id":"A4CU6bDjy9Q",
"yt_user":"Optimuh",
"start":"0:32",
"end":"1:00"
}
},
{
"id":37,
"type":"Wall breaches",
"title":"Ambulance",
"notes":"Go to the location as seen below. Get in a vehicle than can hold you in the back like the van in the video. Get in the back and let your friend drive backwards against it. Once you are against the wall, hit eject to get out of the van and breach inside of the ambulance.",
"order":35,
"lat":67.601,
"lng":-121.948,
"video":{
"yt_id":"mYVnLJvlz6o",
"yt_user":"CodFlaws",
"start":"0:05",
"end":"1:00"
}
},
{
"id":38,
"type":"Wall breaches",
"title":"Central LSC",
"notes":"Go to the location as seen below. Get in a vehicle than can hold you in the back like the van in the video. Get in the back and let your friend drive backwards against it. Once you are against the wall, hit eject to get out of the van and breach inside of the LSC building.",
"order":36,
"lat":69.221,
"lng":-127.749,
"video":{
"yt_id":"G9vwDTkpXXc",
"yt_user":"Fed X Gaming",
"start":"1:20",
"end":"1:55"
}
},
{
"id":39,
"type":"Wall breaches",
"title":"Rockford Plaza",
"notes":"Go to the location as seen below. Get in a vehicle than can hold you in the back like the van in the video. Get in the back and let your friend drive backwards against it. Once you are against the wall, hit eject to get out of the van and breach inside the building.",
"order":37,
"lat":69.434,
"lng":-126.958,
"video":{
"yt_id":"N0GsFD02qPs",
"yt_user":"Fed X Gaming",
"start":"0:15",
"end":"1:50"
}
},
{
"id":40,
"type":"Wall breaches",
"title":"Martins mansion",
"notes":"Go to the location as seen below. Get the free van from the beach bum DLC and let your friend pick you up with a Cargobob. Once inside tell your friend to drop you on the balcony deck thingy. Get in the back and let your friend drive backwards against it. Once you are against the wall, hit eject to get out of the van and breach inside the building.",
"order":38,
"lat":71.736,
"lng":-134.517,
"video":{
"yt_id":"XSOfbP8jf5k",
"yt_user":"Dynasty",
"start":"0:20",
"end":"1:25"
}
},
{
"id":41,
"type":"Wall breaches",
"title":"Helicopter under map",
"notes":"Go to the location as seen below. Get into a helicopter and fly towards the green and white building. Fly low enought to get between the gab on the white side of the building. Once you are there, fly straight up to get into the second part of the building. Fly towards the middle and then down the ground below the map.",
"order":39,
"lat":68.899,
"lng":-133.396,
"video":{
"yt_id":"gAsNdxYISdg",
"yt_user":"TheLuckyNoob",
"start":"0:04",
"end":"0:55"
}
},
{
"id":42,
"type":"Wall breaches",
"title":"Casino",
"notes":"Go to the location as seen below. Get a Sanchez motor-bike and go the right corner of the building. Drive between the buildings and try to fall off to breach into the Casino.",
"order":40,
"lat":69.676,
"lng":-115.587,
"video":{
"yt_id":"a6Fb9wvjkew",
"yt_user":"Dynasty",
"start":"0:04",
"end":"0:40"
}
},
{
"id":43,
"type":"Wall breaches",
"title":"Military base tower",
"notes":"Withdraw all your money from your bank account. Go to Lester and demand a \"Blind Eye\". Go to the location as seen below, walk against the right side of the green door of the tower and go to Dynasty 8 website. Pretent you would buy a property, when the alert pops up, press A and immedietly jump inside the door.",
"order":41,
"lat":78.220,
"lng":-147.404,
"video":{
"yt_id":"DxzPTovofrY",
"yt_user":"TechnoDucky",
"start":"1:00",
"end":"1:40"
},
"credit":[
{
"what":"Glitch found",
"who":"/u/TechnoDucky",
"where":"http://www.reddit.com/r/gtaglitches/comments/29acli/how_to_wall_breach_into_military_watchtower/"
}
]
},
{
"id":44,
"type":"Wall breaches",
"title":"Ship at Merryweather docks",
"notes":"Go to the location as seen on the interactive map, get aboard the ship and walk towards the back of the ship where there's an overhang. Wace the wall and just jump.",
"order":42,
"lat":57.160,
"lng":-119.861,
"credit":[
{
"what":"Glitch found",
"who":"/u/bowsereatspeaches",
"where":"http://www.reddit.com/r/gtaglitches/comments/29b4xy/just_breached_inside_a_ship_at_the_docks/"
}
],
"images":[
{
"id":"1",
"headline":"Breached in the ship",
"url":"http://i.imgur.com/zPwyyNm.jpg",
"author":"/u/bowsereatspeaches",
"contact":"http://www.reddit.com/user/bowsereatspeaches"
}
]
},
{
"id":45,
"type":"Wall breaches",
"title":"Michaels mansion (via garage)",
"notes":"Go to the location as seen below, drive your car next to the garage and hop onto it. Climb ontop the garage roof and walk to the little balcony of the main house. Run across the wall towards the balcony and jump to climb it up. Pull out your phone and accept any pending job invite. Back out immedietly and you should spawn inside Michaels mansion.",
"order":43,
"lat":70.245,
"lng":-132.693,
"video":{
"yt_id":"Zh4DZpsiltU",
"yt_user":"Solar Glitch",
"start":"0:03",
"end":"0:30"
}
},
{
"id":46,
"type":"Vehicles",
"title":"Ratloader",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":3,
"lat":79.233,
"lng":-107.534,
"video":{
"yt_id":"3geCEZ1SMf4",
"yt_user":"Dat Saintsfan",
"start":"1:35",
"end":"1:55"
}
},
{
"id":47,
"type":"Vehicles",
"title":"Sultan",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":4,
"lat":76.893,
"lng":-106.589,
"video":{
"yt_id":"3geCEZ1SMf4",
"yt_user":"Dat Saintsfan",
"start":"2:35",
"end":"3:25"
}
},
{
"id":48,
"type":"Vehicles",
"title":"BF Surfer",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":5,
"lat":61.856,
"lng":-136.121,
"video":{
"yt_id":"3geCEZ1SMf4",
"yt_user":"Dat Saintsfan",
"start":"3:50",
"end":"4:05"
}
},
{
"id":49,
"type":"Vehicles",
"title":"BF Surfer (with surfboard)",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":6,
"lat":67.102,
"lng":-97.646,
"video":{
"yt_id":"3geCEZ1SMf4",
"yt_user":"Dat Saintsfan",
"start":"4:10",
"end":"4:40"
}
},
{
"id":50,
"type":"Vehicles",
"title":"Vapid Bobcat XL",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":7,
"lat":55.003,
"lng":-114.741,
"video":{
"yt_id":"3geCEZ1SMf4",
"yt_user":"Dat Saintsfan",
"start":"4:50",
"end":"5:20"
}
},
{
"id":51,
"type":"Vehicles",
"title":"Western Daemon",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":8,
"lat":69.760,
"lng":-138.164,
"video":{
"yt_id":"3geCEZ1SMf4",
"yt_user":"Dat Saintsfan",
"start":"5:28",
"end":"5:55"
}
},
{
"id":52,
"type":"Vehicles",
"title":"Ocelot Jackal",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":9,
"lat":68.069,
"lng":-135.242,
"video":{
"yt_id":"PdY1flTk1RM",
"yt_user":"Dat Saintsfan",
"start":"0:45",
"end":"1:05"
}
},
{
"id":53,
"type":"Vehicles",
"title":"Youga Van",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":10,
"lat":80.216,
"lng":-135.945,
"video":{
"yt_id":"PdY1flTk1RM",
"yt_user":"Dat Saintsfan",
"start":"1:30",
"end":"1:55"
}
},
{
"id":54,
"type":"Vehicles",
"title":"Karin Intruder",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":11,
"lat":65.091,
"lng":-130.474,
"video":{
"yt_id":"PdY1flTk1RM",
"yt_user":"Dat Saintsfan",
"start":"2:25",
"end":"2:40"
}
},
{
"id":55,
"type":"Vehicles",
"title":"Karin Intruder #2",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":12,
"lat":62.900,
"lng":-112.236,
"video":{
"yt_id":"PdY1flTk1RM",
"yt_user":"Dat Saintsfan",
"start":"2:50",
"end":"3:25"
}
},
{
"id":55,
"type":"Vehicles",
"title":"Karin BeeJay XL",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":13,
"lat":76.750,
"lng":-106.611,
"video":{
"yt_id":"PdY1flTk1RM",
"yt_user":"Dat Saintsfan",
"start":"3:30",
"end":"4:11"
}
},
{
"id":56,
"type":"Vehicles",
"title":"Ubermacht Sentinel XS",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":14,
"lat":63.396,
"lng":-137.164,
"video":{
"yt_id":"PdY1flTk1RM",
"yt_user":"Dat Saintsfan",
"start":"4:30",
"end":"5:10"
}
},
{
"id":57,
"type":"Vehicles",
"title":"Mariachi",
"notes":"Go to the location as seen below _at 19:00_. Drive down the hill and with a bit of luck you can catch the car.",
"order":15,
"lat":80.672,
"lng":-133.901,
"video":{
"yt_id":"br0eaAMILh0",
"yt_user":"Dat Saintsfan",
"start":"1:10",
"end":"3:20"
}
},
{
"id":58,
"type":"Vehicles",
"title":"Ocelot F620",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":16,
"lat":66.399,
"lng":-140.955,
"video":{
"yt_id":"br0eaAMILh0",
"yt_user":"Dat Saintsfan",
"start":"3:21",
"end":"4:00"
}
},
{
"id":59,
"type":"Vehicles",
"title":"Vapid Peyote",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":17,
"lat":63.253,
"lng":-126.343,
"video":{
"yt_id":"br0eaAMILh0",
"yt_user":"Dat Saintsfan",
"start":"4:15",
"end":"5:00"
}
},
{
"id":60,
"type":"Vehicles",
"title":"Albani Primo",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":18,
"lat":55.091,
"lng":-138.845,
"video":{
"yt_id":"br0eaAMILh0",
"yt_user":"Dat Saintsfan",
"start":"5:10",
"end":"5:40"
}
},
{
"id":61,
"type":"Vehicles",
"title":"Cheval Picador",
"notes":"Go to the location as seen below. With a bit of luck it will spawn there.",
"order":19,
"lat":61.575,
"lng":-112.544,