-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata-generic.ini
2248 lines (1982 loc) · 84.9 KB
/
metadata-generic.ini
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
# metadata-generic.ini
# Generic stream tagging information for SAAT
#
# This may not actually be useful to anyone. The intent is to provide a simple
# metadata file which identifies how each track is used by the game without
# regard to the details of the contents of the sound. So, if someone does
# some major audio modding, an export using this metadata would possibly
# help them figure out what sounds to use for each track. However, such
# extensive modding would be very rare and so this file's main use could
# wind up being simply a sort of "directory" for the streams.
[global]
albumprefix = GTA: San Andreas -
[AA]
stream = AA
station = Police
track1.title = Generic Police Clip 01
track2.title = Generic Police Clip 02
track3.title = Generic Police Clip 03
track4.title = Generic Police Clip 04
track5.title = Generic Police Clip 05
track6.title = Generic Police Clip 06
track7.title = Generic Police Clip 07
track8.title = Generic Police Clip 08
track9.title = Generic Police Clip 09
track10.title = Generic Police Clip 10
track11.title = Generic Police Clip 11
track12.title = Generic Police Clip 12
track13.title = Generic Police Clip 13
track14.title = Generic Police Clip 14
track15.title = Generic Police Clip 15
track16.title = Generic Police Clip 16
track17.title = Generic Police Clip 17
track18.title = Generic Police Clip 18
track19.title = Generic Police Clip 19
track20.title = Generic Police Clip 20
track21.title = Generic Police Clip 21
track22.title = Generic Police Clip 22
track23.title = Generic Police Clip 23
track24.title = Generic Police Clip 24
track25.title = Generic Police Clip 25
track26.title = Generic Police Clip 26
track27.title = Generic Police Clip 27
track28.title = Generic Police Clip 28
track29.title = Generic Police Clip 29
track30.title = Generic Police Clip 20
track31.title = Generic Police Clip 31
track32.title = Generic Police Clip 32
track33.title = Generic Police Clip 33
track34.title = Generic Police Clip 34
track35.title = Generic Police Clip 35
track36.title = Generic Police Clip 36
track37.title = Generic Police Clip 37
track38.title = Generic Police Clip 38
track39.title = Generic Police Clip 39
track40.title = Riot Only Police Clip 01
track41.title = Riot Only Police Clip 02
track42.title = Riot Only Police Clip 03
track43.title = Riot Only Police Clip 04
track44.title = Riot Only Police Clip 05
track45.title = Riot Only Police Clip 06
track46.title = Riot Only Police Clip 07
track47.title = Riot Only Police Clip 08
track48.title = Riot Only Police Clip 09
track49.title = Riot Only Police Clip 10
track50.title = Riot Only Police Clip 11
track51.title = Riot Only Police Clip 12
track52.title = Riot Only Police Clip 13
track53.title = Riot Only Police Clip 14
track54.title = Riot Only Police Clip 15
track55.title = Riot Only Police Clip 16
track56.title = Riot Only Police Clip 17
track57.title = Riot Only Police Clip 18
track58.title = Riot Only Police Clip 19
track59.title = Riot Only Police Clip 20
track60.title = Riot Only Police Clip 21
track61.title = (Silence for 9 seconds) #1
track62.title = (Silence for 9 seconds) #2
track63.title = (Silence for 9 seconds) #3
track64.title = (Silence for 19 seconds)
track65.title = (Silence for 9 seconds) #4
track66.title = (Silence for 9 seconds) #5
[ADVERTS]
stream = ADVERTS
station = Adverts
track1.title = Advert 01
track2.title = Advert 02
track3.title = Advert 03
track4.title = Advert 04
track5.title = Advert 05
track6.title = Advert 06
track7.title = Advert 07
track8.title = Advert 08
track9.title = Advert 09
track10.title = Advert 10
track11.title = Advert 11
track12.title = Advert 12
track13.title = Advert 13
track14.title = Advert 14
track15.title = Advert 15
track16.title = Advert 16
track17.title = Advert 17
track18.title = Advert 18
track19.title = Advert 19
track20.title = Advert 20
track21.title = Advert 21
track22.title = Advert 22
track23.title = Advert 23
track24.title = Advert 24
track25.title = Advert 25
track26.title = Advert 26
track27.title = Advert 27
track28.title = Advert 28
track29.title = Advert 29
track30.title = Advert 30
track31.title = Advert 31
track32.title = Advert 32
track33.title = Advert 33
track34.title = Advert 34
track35.title = Advert 35
track36.title = Advert 36
track37.title = Advert 37
track38.title = Advert 38
track39.title = Advert 39
track40.title = Advert 40
track41.title = Advert 41
track42.title = Advert 42
track43.title = Advert 43
track44.title = Advert 44
track45.title = Advert 45
track46.title = Advert 46
track47.title = Advert 47
track48.title = Advert 48
track49.title = Advert 49
track50.title = Advert 50
track51.title = Advert 51
track52.title = Advert 52
track53.title = Advert 53
track54.title = Advert 54
track55.title = Advert 55
track56.title = Advert 56
track57.title = Advert 57
track58.title = Advert 58
track59.title = Advert 59
track60.title = Advert 60
track61.title = Advert 61
track62.title = Advert 62
track63.title = Advert 63
track64.title = Advert 64
track65.title = Advert 65
track66.title = Advert 66
track67.title = Advert 67
track68.title = Advert 68
track69.title = Advert 69
[AMBIENCE]
stream = AMBIENCE
station = Ambience
track1.title = Ambience triggered by IPL (AUZO ID 21)
track2.title = Ambience triggered by IPL (AUZO ID 20)
track3.title = Ambience triggered by IPL (AUZO ID 48)
track4.title = Ambience triggered by IPL (AUZO ID 19)
track5.title = Ambience triggered by IPL (AUZO ID 10)
track6.title = Ambience triggered by IPL (AUZO ID 5)
track7.title = Arcade Game Music (from Let's Get Ready to Bumble)
track8.title = Bike and Boat School Level Results Music
track9.title = Ambience triggered by IPL (AUZO ID 4)
track10.title = Ambience triggered by IPL (AUZO ID 37)
track11.title = UNKNOWN (similar to school level results)
track12.title = Ambience triggered by IPL (AUZO ID 17)
track13.title = Ambience triggered by IPL (AUZO ID 28 & 29)
track14.title = Ambience triggered by IPL (AUZO ID 23)
track15.title = Driving School Level Results Music
track16.title = Arcade Game Music (from Duality)
track17.title = Ambience triggered by IPL (AUZO ID 64)
track18.title = Ambience triggered by IPL (AUZO ID 44)
track19.title = Arcade Game Music (from Go Go Space Monkey)
track20.title = Ambience triggered by IPL (AUZO ID 26)
track21.title = Ambience triggered by IPL (AUZO ID 36)
track22.title = Ambience triggered by IPL (AUZO ID 51)
track23.title = Ambience triggered by IPL (AUZO ID 13)
track24.title = Ambience triggered by IPL (AUZO ID 25)
track25.title = Ambience triggered by IPL (AUZO ID 24)
track26.title = Inside Track Betting Machine (played during Horse Race)
track27.title = Flight School Level Results Music
track28.title = Ambience triggered by IPL (AUZO ID 34)
track29.title = Ambience triggered by IPL (AUZO ID 39)
track30.title = Ambience triggered by IPL (AUZO ID 15)
track31.title = Ambience triggered by IPL (AUZO ID 8)
track32.title = Ambience played outside during Riots
track33.title = Wind Sounds
track34.title = Ambience triggered by IPL (AUZO ID 12)
track35.title = Ambience triggered by IPL (AUZO ID 41)
track36.title = Ambience triggered by IPL (AUZO ID 66)
track37.title = Ambience triggered by IPL (AUZO ID 67)
track38.title = Arcade Game Music (from They Come From Uranus)
track39.title = Ambience triggered by IPL (AUZO ID 50)
track40.title = Ambience played near Beach and Sea
[BEATS]
stream = BEATS
station = Beats
track1.title = Mission Dance Track
track2.title = End Credits Music
track3.title = Club Dance Track #3
track4.title = Club Dance Track #1
track5.title = Club Dance Track #2
track6.title = Low Rider Bounce Track #1
track7.title = Low Rider Bounce Track #2
track8.title = Mission Complete #1
track9.title = Mission Complete #2
track10.title = Intro Cutscene Part #4
[CH]
stream = CH
station = Radio Stream CH
track1.title = (Bridge Announce #1) Can access LS only
track2.title = (Bridge Announce #2) Can access LS and SF
track3.title = (Bridge Announce #3) Can access LS, SF, and LV
track4.title = (Caller) "Well, actually, it's CSR"
track5.title = (Caller) "You're really annoying"
track6.title = (DJ) "Be educated on the sounds that brung ya"
track7.title = (DJ) "You don't last a minute"
track8.title = (DJ) "There's a party over here"
track9.title = (DJ) "West Coast radio suckers"
track10.title = (DJ) "Ready for your training wheels"
track11.title = (DJ) "I'll go speed of light on y'all"
track12.title = (DJ) "This goes out to my man the Iceman"
track13.title = (DJ) "Los Santos police"
track14.title = (DJ) "Ugly like yo momma"
track15.title = (DJ) "Small-minded robots"
track16.title = (DJ) "Shoulda paid more attention in school"
track17.title = (DJ) "Propaganda"
track18.title = (DJ) "Cavern of Sorrow marathon"
track19.title = (DJ) "Help ain't no charity"
track20.title = (DJ) "Get back to the 'burbs you fools!"
track21.title = (DJ) "I got seven digits as it is"
track22.title = (Atmosphere) Evening #1
track23.title = (Atmosphere) Evening #2
track24.title = (Atmosphere) Morning #1
track25.title = (Atmosphere) Morning #2
track26.title = (Atmosphere) Night #1
track27.title = (Atmosphere) Night #2
track28.title = (Atmosphere) Fog #1
track29.title = (Atmosphere) Fog #2
track30.title = (Atmosphere) Smog
track31.title = (Atmosphere) Rain #1
track32.title = (Atmosphere) Rain #2
track33.title = (Atmosphere) Rain #3
track34.title = (Atmosphere) Sunny #1
track35.title = (Atmosphere) Sunny #2
track36.title = (ID) "While you suckers were wearing diapers"
track37.title = (ID) "Doper than anyone else"
track38.title = (ID) "Drop out of that whack-ass school"
track39.title = (ID) "Skills on the mic"
track40.title = (ID) "Givin' it to ya' straight up, homeboy!"
track41.title = (ID) "The home of classic hiphop"
track42.title = (ID) "The man with an opinion on everything"
track43.title = (ID) "Layin' it down old skool"
track44.title = (ID) "Word up!"
track45.title = (ID) "The reason you put that subwoofer in your car"
track46.title = (ID) "Word to your mamma"
track47.title = Me & The Biz (Mid)
track48.title = Me & The Biz (Intro)
track49.title = Me & The Biz (Intro DJ #1)
track50.title = Me & The Biz (Intro DJ #2)
track51.title = Me & The Biz (Outro)
track52.title = Me & The Biz (Outro DJ #1)
track53.title = Me & The Biz (Outro DJ #2)
track54.title = Warm It Up Kane (Mid)
track55.title = Warm It Up Kane (Intro)
track56.title = Warm It Up Kane (Intro DJ #1)
track57.title = Warm It Up Kane (Intro DJ #2)
track58.title = Warm It Up Kane (Outro)
track59.title = Warm It Up Kane (Outro DJ #1)
track60.title = Warm It Up Kane (Outro DJ #2)
track61.title = Road to the Riches (Mid)
track62.title = Road to the Riches (Intro)
track63.title = Road to the Riches (Intro DJ #1)
track64.title = Road to the Riches (Intro DJ #2)
track65.title = Road to the Riches (Outro)
track66.title = Road to the Riches (Outro DJ #1)
track67.title = Road to the Riches (Outro DJ #2)
track68.title = Rebel Without a Pause (Mid)
track69.title = Rebel Without a Pause (Intro)
track70.title = Rebel Without a Pause (Intro DJ #1)
track71.title = Rebel Without a Pause (Intro DJ #2)
track72.title = Rebel Without a Pause (Outro)
track73.title = Rebel Without a Pause (Outro DJ #1)
track74.title = Rebel Without a Pause (Outro DJ #2)
track75.title = It Takes Two (Mid)
track76.title = It Takes Two (Intro)
track77.title = It Takes Two (Intro DJ #1)
track78.title = It Takes Two (Intro DJ #2)
track79.title = It Takes Two (Outro)
track80.title = It Takes Two (Outro DJ #1)
track81.title = It Takes Two (Outro DJ #2)
track82.title = I Know You Got Soul (Mid)
track83.title = I Know You Got Soul (Intro)
track84.title = I Know You Got Soul (Intro DJ #1)
track85.title = I Know You Got Soul (Intro DJ #2)
track86.title = I Know You Got Soul (Outro)
track87.title = I Know You Got Soul (Outro DJ #1)
track88.title = I Know You Got Soul (Outro DJ #2)
track89.title = Brand Nubian (Mid)
track90.title = Brand Nubian (Intro)
track91.title = Brand Nubian (Intro DJ #1)
track92.title = Brand Nubian (Intro DJ #2)
track93.title = Brand Nubian (Outro)
track94.title = Brand Nubian (Outro DJ #1)
track95.title = Brand Nubian (Outro DJ #2)
track96.title = Children's Story (Mid)
track97.title = Children's Story (Intro)
track98.title = Children's Story (Intro DJ #1)
track99.title = Children's Story (Intro DJ #2)
track100.title = Children's Story (Outro)
track101.title = Children's Story (Outro DJ #1)
track102.title = Children's Story (Outro DJ #2)
track103.title = B.Y.S. (Mid)
track104.title = B.Y.S. (Intro)
track105.title = B.Y.S. (Intro DJ #1)
track106.title = B.Y.S. (Intro DJ #2)
track107.title = B.Y.S. (Outro)
track108.title = B.Y.S. (Outro DJ #1)
track109.title = B.Y.S. (Outro DJ #2)
track110.title = Critical Beatdown (Mid)
track111.title = Critical Beatdown (Intro)
track112.title = Critical Beatdown (Intro DJ #1)
track113.title = Critical Beatdown (Intro DJ #2)
track114.title = Critical Beatdown (Outro)
track115.title = Critical Beatdown (Outro DJ #1)
track116.title = Critical Beatdown (Outro DJ #2)
track117.title = The Vapors (Mid)
track118.title = The Vapors (Intro)
track119.title = The Vapors (Intro DJ #1)
track120.title = The Vapors (Intro DJ #2)
track121.title = The Vapors (Outro)
track122.title = The Vapors (Outro DJ #1)
track123.title = The Vapors (Outro DJ #2)
track124.title = The Godfather (Mid)
track125.title = The Godfather (Intro)
track126.title = The Godfather (Intro DJ #1)
track127.title = The Godfather (Intro DJ #2)
track128.title = The Godfather (Outro)
track129.title = The Godfather (Outro DJ #1)
track130.title = The Godfather (Outro DJ #2)
[c2075553325e7fe8d3d50fefff857aa7]
stream = CO
station = KROSE
track1.title = (Bridge Announce #1) Can access LS only
track2.title = (Bridge Announce #2) Can access LS and SF
track3.title = (Bridge Announce #3) Can access LS, SF, and LV
track4.title = (DJ) "Downstairs harmonica talents"
track5.title = (DJ) "Euthanasia is a beautiful thing"
track6.title = (DJ) "I might start to cry"
track7.title = (DJ) Darwinism
track8.title = (DJ) "Harmonica down South again"
track9.title = (DJ) Latte
track10.title = (DJ) Belt buckles
track11.title = (DJ) "Like the plug, but a musical version"
track12.title = (DJ) "Harmonica in my pants"
track13.title = (DJ) "You know what war I'm talking about"
track14.title = (DJ) "Hurts a little when I try to put it in"
track15.title = (DJ) Legs akimbo
track16.title = (DJ) "Love everyone like myself"
track17.title = (DJ) "It ain't easy raising nine kids"
track18.title = (DJ) "I am shit-faced"
track19.title = (DJ) "On the prairie"
track20.title = (DJ) "I keep moving on"
track21.title = (DJ) "Make you want to square dance"
track22.title = (DJ) "It's like Kant said"
track23.title = (DJ) "Play a harmonica and sing at the same time"
track24.title = (Caller) "Wicked, evil, wealthy woman"
track25.title = (Caller) "Being faithful and cheating at the same time"
track26.title = (Story) Badlands Robberies
track27.title = (Story) Weed Farm Burned Down
track28.title = (Story) Lights in Desert
track29.title = (Story) Police Trial
track30.title = (Story) Gang Warfare
track31.title = (Atmosphere) Morning #1
track32.title = (Atmosphere) Morning #2
track33.title = (Atmosphere) Night #1
track34.title = (Atmosphere) Night #2
track35.title = (Atmosphere) Fog #1
track36.title = (Atmosphere) Fog #2
track37.title = (Atmosphere) Rain
track38.title = (Atmosphere) Storm #1
track39.title = (Atmosphere) Storm #2
track40.title = (Atmosphere) Sunny #1
track41.title = (Atmosphere) Sunny #2
track42.title = (ID) "Barefoot and pregnant again"
track43.title = (ID) "All America loves a cowboy"
track44.title = (ID) "From cow poking to cow-tipping"
track45.title = (ID) "Invented the electric guitar"
track46.title = (ID) Farm Animals
track47.title = (ID) "When love shoots you in the back"
track48.title = (ID) "Iron horse with a drinking problem"
track49.title = (ID) "Whistle on a lonely night"
track50.title = (ID) "It takes a cowboy to know when to shoot"
track51.title = Amos Moses (Mid)
track52.title = Amos Moses (Intro)
track53.title = Amos Moses (Intro DJ #1)
track54.title = Amos Moses (Intro DJ #2)
track55.title = Amos Moses (Outro)
track56.title = Amos Moses (Outro DJ #1)
track57.title = Amos Moses (Outro DJ #2)
track58.title = Louisiana woman, Mississippi man (Mid)
track59.title = Louisiana woman, Mississippi man (Intro)
track60.title = Louisiana woman, Mississippi man (Intro DJ #1)
track61.title = Louisiana woman, Mississippi man (Intro DJ #2)
track62.title = Louisiana woman, Mississippi man (Outro)
track63.title = Louisiana woman, Mississippi man (Outro DJ #1)
track64.title = Louisiana woman, Mississippi man (Outro DJ #2)
track65.title = One Step Forward (Mid)
track66.title = One Step Forward (Intro)
track67.title = One Step Forward (Intro DJ #1)
track68.title = One Step Forward (Intro DJ #2)
track69.title = One Step Forward (Outro)
track70.title = One Step Forward (Outro DJ #1)
track71.title = One Step Forward (Outro DJ #2)
track72.title = New York City (Mid)
track73.title = New York City (Intro)
track74.title = New York City (Intro DJ #1)
track75.title = New York City (Intro DJ #2)
track76.title = New York City (Outro)
track77.title = New York City (Outro DJ #1)
track78.title = New York City (Outro DJ #2)
track79.title = Bed of Roses (Mid)
track80.title = Bed of Roses (Intro)
track81.title = Bed of Roses (Intro DJ #1)
track82.title = Bed of Roses (Intro DJ #2)
track83.title = Bed of Roses (Outro)
track84.title = Bed of Roses (Outro DJ #1)
track85.title = Bed of Roses (Outro DJ #2)
track86.title = The Letter that Johnny Walker Read (Mid)
track87.title = The Letter that Johnny Walker Read (Intro)
track88.title = The Letter that Johnny Walker Read (Intro DJ #1)
track89.title = The Letter that Johnny Walker Read (Intro DJ #2)
track90.title = The Letter that Johnny Walker Read (Outro)
track91.title = The Letter that Johnny Walker Read (Outro DJ #1)
track92.title = The Letter that Johnny Walker Read (Outro DJ #2)
track93.title = Queen of Hearts (Mid)
track94.title = Queen of Hearts (Intro)
track95.title = Queen of Hearts (Intro DJ #1)
track96.title = Queen of Hearts (Intro DJ #2)
track97.title = Queen of Hearts (Outro)
track98.title = Queen of Hearts (Outro DJ #1)
track99.title = Queen of Hearts (Outro DJ #2)
track100.title = Hey Good Lookin' (Mid)
track101.title = Hey Good Lookin' (Intro)
track102.title = Hey Good Lookin' (Intro DJ #1)
track103.title = Hey Good Lookin' (Intro DJ #2)
track104.title = Hey Good Lookin' (Outro)
track105.title = Hey Good Lookin' (Outro DJ #1)
track106.title = Hey Good Lookin' (Outro DJ #2)
track107.title = Three Cigarettes in the Ashtray (Mid)
track108.title = Three Cigarettes in the Ashtray (Intro)
track109.title = Three Cigarettes in the Ashtray (Intro DJ #1)
track110.title = Three Cigarettes in the Ashtray (Intro DJ #2)
track111.title = Three Cigarettes in the Ashtray (Outro)
track112.title = Three Cigarettes in the Ashtray (Outro DJ #1)
track113.title = Three Cigarettes in the Ashtray (Outro DJ #2)
track114.title = I Love a Rainy Night (Mid)
track115.title = I Love a Rainy Night (Intro)
track116.title = I Love a Rainy Night (Intro DJ #1)
track117.title = I Love a Rainy Night (Intro DJ #2)
track118.title = I Love a Rainy Night (Outro)
track119.title = I Love a Rainy Night (Outro DJ #1)
track120.title = I Love a Rainy Night (Outro DJ #2)
track121.title = Crazy (Mid)
track122.title = Crazy (Intro)
track123.title = Crazy (Intro DJ #1)
track124.title = Crazy (Intro DJ #2)
track125.title = Crazy (Outro)
track126.title = Crazy (Outro DJ #1)
track127.title = Crazy (Outro DJ #2)
track128.title = Make the World Go Away (Mid)
track129.title = Make the World Go Away (Intro)
track130.title = Make the World Go Away (Intro DJ #1)
track131.title = Make the World Go Away (Intro DJ #2)
track132.title = Make the World Go Away (Outro)
track133.title = Make the World Go Away (Outro DJ #1)
track134.title = Make the World Go Away (Outro DJ #2)
track135.title = Mammas Don't Let Your Babies Grow Up to be Cowboys (Mid)
track136.title = Mammas Don't Let Your Babies Grow Up to be Cowboys (Intro)
track137.title = Mammas Don't Let Your Babies Grow Up to be Cowboys (Intro DJ #1)
track138.title = Mammas Don't Let Your Babies Grow Up to be Cowboys (Intro DJ #2)
track139.title = Mammas Don't Let Your Babies Grow Up to be Cowboys (Outro)
track140.title = Mammas Don't Let Your Babies Grow Up to be Cowboys (Outro DJ #1)
track141.title = Mammas Don't Let Your Babies Grow Up to be Cowboys (Outro DJ #2)
track142.title = Always Wanting You (Mid)
track143.title = Always Wanting You (Intro)
track144.title = Always Wanting You (Intro DJ #1)
track145.title = Always Wanting You (Intro DJ #2)
track146.title = Always Wanting You (Outro)
track147.title = Always Wanting You (Outro DJ #1)
track148.title = Always Wanting You (Outro DJ #2)
track149.title = All My Exes Live in Texas (Mid)
track150.title = All My Exes Live in Texas (Intro)
track151.title = All My Exes Live in Texas (Intro DJ #1)
track152.title = All My Exes Live in Texas (Intro DJ #2)
track153.title = All My Exes Live in Texas (Outro)
track154.title = All My Exes Live in Texas (Outro DJ #1)
track155.title = All My Exes Live in Texas (Outro DJ #2)
[06a63d4222209a1d6e8ce2e7ace51956]
stream = CR
station = K-DST
track1.title = (Bridge Announce #1) Can access LS only
track2.title = (Bridge Announce #2) Can access LS and SF
track3.title = (Bridge Announce #3) Can access LS, SF, and LV
track4.title = (DJ) Two kinds of people
track5.title = (DJ) "Rock 'n' roll or classical"
track6.title = (DJ) "Whatever happened to Love Fist?"
track7.title = (DJ) "Keeping the spirit of rock alive"
track8.title = (DJ) "Get to the clinic"
track9.title = (DJ) "Weren't the 70's great?"
track10.title = (DJ) "Music may not be the food of love"
track11.title = (DJ) "1977...What a year!"
track12.title = (Caller) "I'm in hell, right"
track13.title = (Caller) "That band you were in"
track14.title = (Caller) "You're so lame"
track15.title = (DJ) I live the dream
track16.title = (Story) Prosecutor Busted for Weed
track17.title = (Story) Weed Farm Burned Down
track18.title = (Story) Lights in Desert
track19.title = (Atmosphere) Evening #1
track20.title = (Atmosphere) Evening #2
track21.title = (Atmosphere) Morning #1
track22.title = (Atmosphere) Morning #2
track23.title = (Atmosphere) Morning #3
track24.title = (Atmosphere) Night #1
track25.title = (Atmosphere) Night #2
track26.title = (Atmosphere) Night #3
track27.title = (Atmosphere) Fog #1
track28.title = (Atmosphere) Fog #2
track29.title = (Atmosphere) Rain #1
track30.title = (Atmosphere) Rain #2
track31.title = (Atmosphere) Sunny #1
track32.title = (Atmosphere) Sunny #2
track33.title = (ID) "Songs about abusing drugs and women"
track34.title = (ID) Tommy "The Nightmare" Smith on the Dust
track35.title = (ID) "The way it was meant to be enjoyed"
track36.title = (ID) "Real rockers wear leather jackets"
track37.title = (ID) "If the police can't stop you" #1
track38.title = (ID) "If the police can't stop you" #2
track39.title = (ID) K-DST -- The Dust
track40.title = (ID) "Gone to rehab"
track41.title = (ID) "Ashes to ashes, Dust to Dust"
track42.title = (ID) "I've got a 'word' for you, homey -- Dust"
track43.title = (ID) "Music never gets old"
track44.title = Running Down a Dream (Mid)
track45.title = Running Down a Dream (Intro)
track46.title = Running Down a Dream (Intro DJ #1)
track47.title = Running Down a Dream (Intro DJ #2)
track48.title = Running Down a Dream (Outro)
track49.title = Running Down a Dream (Outro DJ #1)
track50.title = Running Down a Dream (Outro DJ #2)
track51.title = Barracuda (Mid)
track52.title = Barracuda (Intro)
track53.title = Barracuda (Intro DJ #1)
track54.title = Barracuda (Intro DJ #2)
track55.title = Barracuda (Outro)
track56.title = Barracuda (Outro DJ #1)
track57.title = Barracuda (Outro DJ #2)
track58.title = Woman to Woman (Mid)
track59.title = Woman to Woman (Intro)
track60.title = Woman to Woman (Intro DJ #1)
track61.title = Woman to Woman (Intro DJ #2)
track62.title = Woman to Woman (Outro)
track63.title = Woman to Woman (Outro DJ #1)
track64.title = Woman to Woman (Outro DJ #2)
track65.title = Young Turks (Mid)
track66.title = Young Turks (Intro)
track67.title = Young Turks (Intro DJ #1)
track68.title = Young Turks (Intro DJ #2)
track69.title = Young Turks (Outro)
track70.title = Young Turks (Outro DJ #1)
track71.title = Young Turks (Outro DJ #2)
track72.title = Somebody Up There Likes Me (Mid)
track73.title = Somebody Up There Likes Me (Intro)
track74.title = Somebody Up There Likes Me (Intro DJ #1)
track75.title = Somebody Up There Likes Me (Intro DJ #2)
track76.title = Somebody Up There Likes Me (Outro)
track77.title = Somebody Up There Likes Me (Outro DJ #1)
track78.title = Some Kind of Wonderful (Mid)
track79.title = Some Kind of Wonderful (Intro)
track80.title = Some Kind of Wonderful (Intro DJ #1)
track81.title = Some Kind of Wonderful (Intro DJ #2)
track82.title = Some Kind of Wonderful (Outro)
track83.title = Some Kind of Wonderful (Outro DJ #1)
track84.title = Some Kind of Wonderful (Outro DJ #2)
track85.title = Strutter (Mid)
track86.title = Strutter (Intro)
track87.title = Strutter (Intro DJ #1)
track88.title = Strutter (Intro DJ #2)
track89.title = Strutter (Outro)
track90.title = Strutter (Outro DJ #1)
track91.title = Strutter (Outro DJ #2)
track92.title = Hold the Line (Mid)
track93.title = Hold the Line (Intro)
track94.title = Hold the Line (Outro)
track95.title = Green River (Mid)
track96.title = Green River (Intro)
track97.title = Green River (Intro DJ #1)
track98.title = Green River (Intro DJ #2)
track99.title = Green River (Outro)
track100.title = Green River (Outro DJ #1)
track101.title = Eminence Front (Mid)
track102.title = Eminence Front (Intro)
track103.title = Eminence Front (Intro DJ #1)
track104.title = Eminence Front (Intro DJ #2)
track105.title = Eminence Front (Outro)
track106.title = Eminence Front (Outro DJ #1)
track107.title = Eminence Front (Outro DJ #2)
track108.title = A Horse with No Name (Mid)
track109.title = A Horse with No Name (Intro)
track110.title = A Horse with No Name (Intro DJ #1)
track111.title = A Horse with No Name (Intro DJ #2)
track112.title = A Horse with No Name (Outro)
track113.title = A Horse with No Name (Outro DJ #1)
track114.title = A Horse with No Name (Outro DJ #2)
track115.title = Slow Ride (Mid)
track116.title = Slow Ride (Intro)
track117.title = Slow Ride (Intro DJ #1)
track118.title = Slow Ride (Intro DJ #2)
track119.title = Slow Ride (Outro)
track120.title = Slow Ride (Outro DJ #1)
track121.title = Slow Ride (Outro DJ #2)
track122.title = White Wedding (Mid)
track123.title = White Wedding (Intro)
track124.title = White Wedding (Intro DJ #1)
track125.title = White Wedding (Intro DJ #2)
track126.title = White Wedding (Outro)
track127.title = White Wedding (Outro DJ #1)
track128.title = White Wedding (Outro DJ #2)
track129.title = Get Down to It (Mid)
track130.title = Get Down to It (Intro)
track131.title = Get Down to It (Intro DJ #1)
track132.title = Get Down to It (Intro DJ #2)
track133.title = Get Down to It (Outro)
track134.title = Get Down to It (Outro DJ #1)
track135.title = Get Down to It (Outro DJ #2)
track136.title = Two Tickets to Paradise (Mid)
track137.title = Two Tickets to Paradise (Intro)
track138.title = Two Tickets to Paradise (Intro DJ #1)
track139.title = Two Tickets to Paradise (Intro DJ #2)
track140.title = Two Tickets to Paradise (Outro)
track141.title = Two Tickets to Paradise (Outro DJ #1)
track142.title = Two Tickets to Paradise (Outro DJ #2)
track143.title = Smokin' (Mid)
track144.title = Smokin' (Intro)
track145.title = Smokin' (Intro DJ #1)
track146.title = Smokin' (Intro DJ #2)
track147.title = Smokin' (Outro)
track148.title = Smokin' (Outro DJ #1)
track149.title = Smokin' (Outro DJ #2)
track150.title = Free Bird (Mid)
track151.title = Free Bird (Intro)
track152.title = Free Bird (Intro DJ #1)
track153.title = Free Bird (Intro DJ #2)
track154.title = Free Bird (Outro)
track155.title = Free Bird (Outro DJ #1)
track156.title = Free Bird (Outro DJ #2)
[d4bcb8ae560e44080169e2b4a5ad03b8]
stream = CUTSCENE
station = Cutscene
track1.title = King in Exile
track2.title = Wu Zi Mu #1 (Intro)
track3.title = Wu Zi Mu #2 (Outro)
track4.title = Farewell, My Love #1 (Intro)
track5.title = Farewell, My Love #2 (Outro)
track6.title = Green Sabre #3 ("You got a bag over your head, boy")
track7.title = Green Sabre #4 ("Smoke does exactly what he's told")
track8.title = A Home in the Hills (Intro)
track9.title = Vertical Bird (Intro)
track10.title = Homecoming #1 (Intro)
track11.title = Homecoming #2 (Picking up Sweet)
track12.title = Homecoming #3 (Crackhead with Blender)
track13.title = Cut Throat Business #1 (Intro)
track14.title = Cut Throat Business #2 (Outro)
track15.title = Fender Ketchup #1 (Intro)
track16.title = Saint Mark's Bistro (Intro)
track17.title = Fender Ketchup #2 ("Hey, untie me")
track18.title = Explosive Situation (Intro)
track19.title = You've Had Your Chips (Intro)
track20.title = Don Peyote #1 (Intro)
track21.title = Don Peyote #2 (Picking up Kent and Maccer)
track22.title = Don Peyote #3 (Outro)
track23.title = Intensive Care (Intro)
track24.title = The Meat Business #1 (Intro)
track25.title = The Meat Business #2 (Entering Abattoir)
track26.title = The Meat Business #3 (Johnny's Heart Attack)
track27.title = Fish in a Barrel
track28.title = Freefall #1 (Intro, Salvatore meets Maria)
track29.title = Freefall #2 (Intro, Salvatore meets CJ)
track30.title = First Date
track31.title = First Base
track32.title = Gone Courting
track33.title = Made in Heaven
track34.title = High Stakes, Low Rider (Intro)
track35.title = Unused #1 (Impound Lot)
track36.title = Burning Desire (Intro)
track37.title = Unused #2 (Doberman; rant by Tenpenny)
track38.title = Gray Imports (Intro)
track39.title = Misappropriation (Intro)
track40.title = High Noon #1 (Intro)
track41.title = High Noon #2 (Just before Pulaski runs)
track42.title = Green Goo #1 (Alternate Intro, Too Fat)
track43.title = Black Project #1 (Alternate Intro, Too Fat)
track44.title = Dinner Date (Unsuccessful, Killing in the Name clip)
track45.title = Dinner Date (Successful)
track46.title = Monster (Intro)
track47.title = Highjack (Intro)
track48.title = Interdiction (Intro)
track49.title = Verdant Meadows
track50.title = N.O.E. (Intro)
track51.title = Black Project #2 (Intro)
track52.title = Stowaway (Intro)
track53.title = Green Goo #2 (Intro)
track54.title = Green Goo #3 (Outro)
track55.title = Madd Dogg (Intro)
track56.title = End of the Line #7 ("We gotta stay on top of our game")
track57.title = T-Bone Mendez (Intro)
track58.title = Mike Toreno #1 (Intro)
track59.title = Mike Toreno #2 (Toreno says to destroy the van)
track60.title = Ran Fa Li (Intro)
track61.title = Lure (Intro)
track62.title = Reuniting the Families (Intro)
track63.title = Green Sabre #1 (Intro)
track64.title = Green Sabre #2 (CJ meets with Cesar)
track65.title = Wear Flowers in Your Hair #1 (Intro)
track66.title = Wear Flowers in Your Hair #2 (Outro)
track67.title = Deconstruction (Intro)
track68.title = Beat Down on B-Dup #1 (Intro)
track69.title = Beat Down on B-Dup #2 (Dealer at B-Dup's Old Place)
track70.title = Beat Down on B-Dup #3 (Outro)
track71.title = Grove 4 Life (Intro)
track72.title = Architectural Espionage (Intro)
track73.title = Key to Her Heart (Intro)
track74.title = Dam and Blast (Intro)
track75.title = Cop Wheels (Intro)
track76.title = Up, Up, and Away (Intro)
track77.title = Breaking the Bank at Caligula's (Intro)
track78.title = Big Smoke #1 (Intro)
track79.title = Big Smoke #2 (Sweet and Kendl)
track80.title = Ryder (Intro)
track81.title = Intro Movie #1 ("After 5 years on the East Coast")
track82.title = Intro Movie #2 (CJ quietly gets into cab)
track83.title = Intro Movie #3 (Tenpenny pulls over CJ's cab)
track84.title = Riot #1 (Intro, Awaiting the verdict)
track85.title = Riot #2 (Intro, Tenpenny gets off)
track86.title = Los Desperados (Intro)
track87.title = End of the Line #1 (Intro)
track88.title = End of the Line #2 (In front of the crack palace)
track89.title = End of the Line #3 (Confrontation with Big Smoke)
track90.title = End of the Line #4 (Confrontation with Tenpenny)
track91.title = End of the Line #5 (Tenpenny's last words)
track92.title = End of the Line #6 ("See you around, officer")
track93.title = Home Invasion (Intro)
track94.title = Robbing Uncle Sam (Intro)
track95.title = Catalyst (Intro)
track96.title = 555-We-Tip (Intro)
track97.title = Snail Trail (Intro)
track98.title = O.G. Loc #1 (Intro)
track99.title = O.G. Loc #2 (Outside the Police Station)
track100.title = Running Dog #1 (Intro)
track101.title = Running Dog #2 ("Coughio up el weedo")
track102.title = Wrong Side of the Tracks (Intro)
track103.title = Just Business (Intro)
track104.title = Zeroing In (Intro)
track105.title = Test Drive (Intro)
track106.title = Customs Fast Track (Intro)
track107.title = Puncture Wounds (Intro)
track108.title = Life's a Beach (Intro)
track109.title = Madd Dogg's Rhymes (Intro)
track110.title = Management Issues (Intro)
track111.title = House Party #1 (Intro, at Burger Shot)
track112.title = House Party #2 (Intro, OG Loc on stage)
track113.title = House Party #3 (Ballas on the way)
track114.title = Tagging Up Turf (Intro)
track115.title = Cleaning the Hood #1 (Intro)
track116.title = Cleaning the Hood #2 (B-Dup's Place)
track117.title = Drive Thru #1 (Intro)
track118.title = Drive Thru #2 (Ordering the food)
track119.title = Nines and AK's #1 (Intro)
track120.title = Nines and AK's #2 (Emmet's Place)
track121.title = Drive By (Intro)
track122.title = Sweet's Girl (Intro)
track123.title = Cesar Vialpando #1 (Intro)
track124.title = Cesar Vialpando #2 (Outro)
track125.title = Los Sepulcros (Intro)
track126.title = Jizzy #1 (Intro)
track127.title = Jizzy #2 (Pleasure Domes Club)
track128.title = Outrider (Gas Station)
track129.title = Ice Cold Killa #1 (Intro)
track130.title = Ice Cold Killa #2 (Pleasure Domes Club)
track131.title = Yay Ka-Boom-Boom (Intro)
track132.title = Are You Going to San Fierro (Intro)
track133.title = Body Harvest (Intro)
track134.title = Amphibious Assault #1 (Alternate Intro, Can't Swim)
track135.title = Amphibious Assault #2 (Intro)
track136.title = Mountain Cloud Boys #1 (Intro, Downstairs)
track137.title = Mountain Cloud Boys #2 (Intro, Woozie's Office)
track138.title = The Da Nang Thang (Intro)
track139.title = Air Raid (Intro)
track140.title = Supply Lines (Intro)
track141.title = New Model Army (Intro)
[bbf21458f45989c1edaab9a61b13878b]
stream = DS
station = Bounce FM
track1.title = (Bridge Announce #1) Can access LS only
track2.title = (Bridge Announce #2) Can access LS and SF
track3.title = (Bridge Announce #3) Can access LS, SF, and LV
track4.title = (DJ) "Shake your ass"
track5.title = (DJ) "Primordial funk"
track6.title = (DJ) "Smelling like the funk"
track7.title = (DJ) "Stop funking around"
track8.title = (DJ) "Back up into something wet"
track9.title = (DJ) "Take it off baby"
track10.title = (DJ) Blunted
track11.title = (DJ) "A B C D Me"
track12.title = (DJ) "Party 'til you poop"
track13.title = (DJ) "You lost the funk"
track14.title = (DJ) "No mental hospital can hold me"
track15.title = (DJ) "A shitty outlook on life"
track16.title = (DJ) "What have you been smoking?"
track17.title = (DJ) "Proper preparation prevent piss poor performance"
track18.title = (DJ) "Can you imagine me in handcuffs?"
track19.title = (DJ) "I can't believe my lyin' eyes"
track20.title = (DJ) "I'm not saying please"
track21.title = (DJ) "Doing it to you in your earhole"
track22.title = (DJ) "You know you want it"
track23.title = (DJ) "Stop towing the Funktipus mobile"
track24.title = (DJ) "Would you believe they're paying me for this?"
track25.title = (DJ) "So you wanna be me?"
track26.title = (DJ) "Like a choo-choo"
track27.title = (DJ) "If I look back I'll see me coming"
track28.title = (DJ) "There's a lot of stress out there"
track29.title = (DJ) "The Funktapus is like sushi"
track30.title = (DJ) "Those casinos is getting crazy"
track31.title = (DJ) "I know all about that prune"
track32.title = (DJ) "Do fries go with that shake?"
track33.title = (DJ) "Funk is the DNA in rap"
track34.title = (Caller) "Everyone here is so fake"
track35.title = (Caller) "Sounds like you have a bipolar disorder"
track36.title = (Caller) "How do I get on the party ship?"
track37.title = (Story) Lights in Desert
track38.title = (Story) Lost Jumpjet
track39.title = (Atmosphere) Evening #1
track40.title = (Atmosphere) Evening #2
track41.title = (Atmosphere) Morning #1
track42.title = (Atmosphere) Morning #2
track43.title = (Atmosphere) Morning #3
track44.title = (Atmosphere) Night #1
track45.title = (Atmosphere) Night #2
track46.title = (Atmosphere) Fog #1
track47.title = (Atmosphere) Fog #2
track48.title = (Atmosphere) Smog
track49.title = (Atmosphere) Rain #1
track50.title = (Atmosphere) Rain #2
track51.title = (Atmosphere) Sunny #1
track52.title = (Atmosphere) Sunny #2
track53.title = (ID) "Party ship's crash landed"
track54.title = (ID) "Until everyone's pregnant"
track55.title = (ID) "The party never stops"
track56.title = (ID) "Share your stash with everyone, baby"
track57.title = (ID) "What did I do last night?"
track58.title = (ID) "Ready to fly into space?"
track59.title = (ID) "Who's next on my wife?"
track60.title = (ID) "Nobody's sober at the party"
track61.title = Love Rollercoaster (Mid)
track62.title = Love Rollercoaster (Intro)
track63.title = Love Rollercoaster (Intro DJ #1)
track64.title = Love Rollercoaster (Intro DJ #2)
track65.title = Love Rollercoaster (Outro)
track66.title = Love Rollercoaster (Outro DJ #1)
track67.title = Love Rollercoaster (Outro DJ #2)
track68.title = Loopzilla (Mid)
track69.title = Loopzilla (Intro)
track70.title = Loopzilla (Intro DJ #1)
track71.title = Loopzilla (Intro DJ #2)
track72.title = Loopzilla (Outro)
track73.title = Loopzilla (Outro DJ #1)
track74.title = Loopzilla (Outro DJ #2)
track75.title = Candy (Mid)
track76.title = Candy (Intro)
track77.title = Candy (Intro DJ #1)
track78.title = Candy (Intro DJ #2)
track79.title = Candy (Outro)
track80.title = Candy (Outro DJ #1)
track81.title = Candy (Outro DJ #2)
track82.title = You Dropped a Bomb on Me (Mid)
track83.title = You Dropped a Bomb on Me (Intro)
track84.title = You Dropped a Bomb on Me (Intro DJ #1)
track85.title = You Dropped a Bomb on Me (Intro DJ #2)
track86.title = You Dropped a Bomb on Me (Outro)
track87.title = You Dropped a Bomb on Me (Outro DJ #1)
track88.title = You Dropped a Bomb on Me (Outro DJ #2)
track89.title = Cold Blooded (Mid)
track90.title = Cold Blooded (Intro)
track91.title = Cold Blooded (Intro DJ #1)
track92.title = Cold Blooded (Intro DJ #2)
track93.title = Cold Blooded (Outro)
track94.title = Cold Blooded (Outro DJ #1)
track95.title = Cold Blooded (Outro DJ #2)
track96.title = I Can Make You Dance (Mid)
track97.title = I Can Make You Dance (Intro)
track98.title = I Can Make You Dance (Intro DJ #1)
track99.title = I Can Make You Dance (Intro DJ #2)
track100.title = I Can Make You Dance (Outro)
track101.title = I Can Make You Dance (Outro DJ #1)
track102.title = I Can Make You Dance (Outro DJ #2)
track103.title = Hollywood Swingin' (Mid)