-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGTASA.text
16588 lines (16588 loc) · 798 KB
/
GTASA.text
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
WRN2_2P // 2 player - Press the ~h~SELECT button~w~ to toggle focus on an individual player.
PU_2PLN // Press any button on the DUALSHOCK# analog controller or DUALSHOCK#2 analog controller in controller port 2 to activate 2 player game.
PU_2PL // Press any button on the analog controller (DUALSHOCK#) or analog controller (DUALSHOCK#2) in controller port 2 to activate 2 player game.
CINCAM // Cinematic Camera (Use ~k~~VEHICLE_TURRETLEFT~ to change cinematic camera type.)
FEG_HOW // To take a photo with a camera press ~k~~PED_FIREWEAPON~.
FE_HLPN // Esc key Back to game
PROP_3 // Press ~k~~PED_ANSWER_PHONE~ to buy this property.
GA_7 // Arm with ~k~~PED_FIREWEAPON~. Bomb will go off when engine is started.
GA_7B // Arm with ~k~~PED_FIREWEAPON~. Bomb will go off when engine is started.
PU_CF1 // Press ~k~~PED_ANSWER_PHONE~ to pick up this weapon. It will replace any weapon you have of the same type.
PU_CF3 // Press ~k~~PED_ANSWER_PHONE~ to replace current weapon in this slot.
PU_CF4 // Press ~k~~PED_ANSWER_PHONE~ to replace current weapon in this slot.
ANSWER // Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
ANSWER0 // It's a call from Denise. Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
ANSWER1 // It's a call from Michelle. Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
ANSWER2 // It's a call from Helena. Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
ANSWER3 // It's a call from Barbara. Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
ANSWER4 // It's a call from Katie. Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
ANSWER5 // It's a call from Millie. Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
GA_8 // Use the detonator to activate the bomb.
GA_6 // Park it, prime it by pressing ~k~~PED_FIREWEAPON~ and LEG IT!
GA_6B // Park it, prime it by pressing ~k~~PED_FIREWEAPON~ and LEG IT!
CRED000 // ROCKSTAR NORTH
CRED001 // Producer
CRED002 // Leslie Benzies
CRED003 // Art Director
CRED004 // Aaron Garbut
CRED005 // Technical Directors
CRED006 // Adam Fowler
CRED007 // Obbe Vermeij
CRED008 // Senior Programmer
CRED009 // Alexander Roger
CRD009A // Written by
CRD009B // Dan Houser
CRD009C // James Worrall
CRD009D // DJ Pooh
CRED010 // Lead Character Art
CRED011 // Ian McQue
CRED012 // Character Art
CRED013 // Alan Davidson
CRED014 // Alisdair Wood
CRD014A // Rick Stirling
CRED015 // Toks Solarin
CRED016 // Countryside Art
CRD016A // Michael Pirso
CRED017 // Scott Wilson
CRED018 // Stuart Macdonald
CRED019 // Creative Writer
CRED020 // James Worrall
CRED021 // Lead Interior Art
CRED022 // Andy Hay
CRED023 // Interior Environment Art
CRED024 // Alan Burns
CRED025 // C-J Dick
CRED026 // Lee Montgomery
CRED027 // Michael Pirso
CRED028 // Lead Animator
CRED029 // Duncan Shields
CRED030 // Lead Cut Scene Animator
CRED031 // Mondo Ghulam
CRED032 // Animation
CRED033 // Gus Braid
CRED034 // Iwan Scheer
CRED035 // Mark Tennant
CRED036 // Terry Kenny
CRED037 // Lead Audio Designer
CRED038 // Allan Walker
CRED039 // Lead Music Producer
CRED040 // Craig Conner
CRED041 // Audio Designer
CRED042 // Jonathan McCavish
CRED043 // Will Morton
CRED044 // Audio Programming
CRED045 // Colin Entwistle
CRED046 // Matthew Smith
CRED047 // Lead Los Santos Artist
CRED048 // Nik Taylor
CRED049 // Los Santos Artist
CRED050 // James Allan
CRED051 // Steven Mulholland
CRED052 // Simon Little
CRED053 // Lead San Fierro Artist
CRED054 // Gary McAdam
CRED055 // San Fierro Artist
CRED056 // Christopher Marshall
CRED057 // Wayland Standing
CRED058 // Lead Las Venturas Artist
CRED059 // Adam Cochrane
CRED060 // Las Venturas Artist
CRED061 // Andrew Soosay
CRED062 // David Cooper
CRED063 // Gillian Bertram
CRED064 // Lead Vehicle Art
CRED065 // Paul Kurowski
CRED066 // Vehicle Art
CRED067 // Alan Duncan
CRED068 // Jolyon Orme
CRED069 // Lead Level Design
CRED070 // Craig Filshie
CRED071 // Senior Level Design
CRED072 // Andrew Duthie
CRED073 // Chris Rothwell
CRED074 // Imran Sarwar
CRED075 // William Mills
CRED076 // Level Design
CRED077 // Chris McMahon
CRED078 // Christian Cantamessa
CRED079 // David Beddoes
CRED080 // John Haime
CRED081 // Judith George
CRED082 // Kevin Bolt
CRED083 // Kevin Wong
CRED084 // Neil Ferguson
CRED085 // Paul Davis
CRED086 // Simon Lashley
CRED087 // Steven Taylor
CRED088 // Programming
CRED089 // Alexander Illes
CRED090 // Andrzej Madajczyk
CRED091 // Barane Chan
CRED092 // Derek Payne
CRED093 // Derek Ward
CRED094 // Gordon Yeoman
CRED095 // Graeme Williamson
CRED096 // Greg Smith
CRED097 // James Broad
CRED098 // John Gurney
CRED099 // John Whyte
CRED100 // Keith McLeman
CRED101 // Mark Nicholson
CRED102 // Shaun McKillop
CRED103 // QA Tools
CRED104 // Alex Carter
CRED105 // Front-end Design
CRED106 // Stuart Petri
CRED107 // QA Manager
CRED108 // Craig Arbuthnott
CRED109 // Senior Test Analyst
CRED110 // Neil Corbett
CRED111 // Lead Mission Analyst / Build Coordinator
CRED112 // David Watson
CRED113 // Lead Test Analyst
CRED114 // David Murdoch
CRED115 // Neil Meikle
CRED116 // Standards Testing
CRED117 // Brenda Carey
CRED118 // Test
CRD118A // Alex Paterson
CRED119 // Alistair Gorman
CRED120 // Barry Clark
CRD120A // Ben Barclay
CRED121 // Ben Greenall
CRD121A // Ben McCluskey
CRED122 // Brian Kelly
CRED123 // Chris Wood
CRED124 // David Murdoch
CRED125 // David Watson
CRED126 // Eugene Kuczerepa
CRD126A // Finlay Duff
CRD126B // Garry Reynolds
CRED127 // Ivor Williams
CRED128 // Jim McMahon
CRED129 // Lindsay Robertson
CRD129A // Louis Dinan
CRED130 // Mark McMichael
CRED131 // Matthew Clark
CRED132 // Michael Chan
CRED133 // Neil Meikle
CRED134 // Neil Walker
CRD134A // Oliver Elliot
CRED135 // Paul Green
CRED136 // Pedro Correia
CRD136A // Philip Holden
CRED137 // Robyn Milne
CRED138 // Ross Wallace
CRD138A // Simon King
CRED139 // Stephen Anderson
CRED140 // Steev Douglas
CRED141 // Sundram Soosay
CRED142 // Thomas Phillips
CRED143 // Tony Stewart
CRED144 // Test & Test Tool Support
CRED145 // James Whitcroft
CRED146 // Audio Testing
CRED147 // George Williamson
CRED148 // Studio Director
CRED149 // Andrew Semple
CRED150 // Office Administrator
CRED151 // Kim Gurney
CRED152 // Administration Support
CRED153 // Charlene Maguire
CRD153A // Milly Cottam
CRED154 // Sonya Willmann
CRD154A // Una Cruickshank
CRED155 // IT Manager
CRED156 // Lorraine Roy
CRED157 // IT Support
CRED158 // Christine Chalmers
CRED159 // Dave Bruce
CRED199 // ROCKSTAR NEW YORK
CRED200 // Executive Producer
CRED201 // Sam Houser
CRED202 // Producer
CRED203 // Dan Houser
CRED204 // VP of Development
CRED205 // Jamie King
CRED206 // Art Director
CRED207 // Alex Horton
CRED208 // Chief Technology Officer
CRED209 // Gary J. Foreman
CRED210 // Director of Quality Assurance
CRED211 // Jeff Rosa
CRED212 // Associate Producer
CRED213 // Lee Cummings
CRED214 // Lead Analysts
CRED215 // Elizabeth Satterwhite
CRED216 // Lance Williams
CRED217 // Richard Huie
CRED218 // Rockstar Test Team
CRED219 // Brian Alcazar
CRED220 // Brian Planer
CRED221 // Chris Choi
CRED222 // Christopher Plummer
CRED223 // Crystal Bahmaie
CRED224 // Devin Smither
CRED225 // Ethan Abeles
CRED226 // Gene Overton
CRED227 // Jameel Vega
CRED228 // Jay Capozello
CRED229 // Mike Hong
CRED230 // Mike Nathan
CRED231 // Scott Peterman
CRED232 // Sean Flaherty
CRED233 // Thomas O'Donnell
CRED234 // William Rompf
CRED235 // Business Development Manager
CRED236 // Sean Macaluso
CRED237 // Soundtrack supervisors
CRED238 // Tim Sweeney
CRED239 // Heinz Henn
CRED240 // Research and Analysis
CRED241 // Joe Howell
CRED242 // Gregory Johnson
CRED243 // Sanford Santacroce
CRED244 // Nicole Whelan
CRED245 // Ayana Osada
CRED246 // Executive Consultant
CRED247 // DJ Pooh
CRED248 // Consultants
CRED249 // Estevan Oriol
CRED250 // Mister Cartoon (SA Studios)
CRED251 // Audio directed by
CRED252 // Dan Houser
CRED253 // Navid Khonsari
CRED254 // Cutscene Mocap directed by
CRED255 // Navid Khonsari
CRED256 // Alex Horton
CRED257 // Voice Over Production by
CRED258 // Noelle Sadler
CRED259 // Script Supervision by
CRED260 // Kerry Shaw
CRED261 // Cutscene Supervising Sound Editor
CRED262 // Nicholas Montgomery
CRED263 // Cutscene Sound Designer
CRED264 // Brian Scibinico
CRED265 // Dialogue Edited by
CRED266 // Marilyn Teorey
CRED267 // Anthony Litton
CRED268 // Production Department
CRED269 // Eli Weissman
CRED270 // Franceska Clemens
CRED271 // John Zurhellen
CRED272 // Lyonel Tollemache
CRED273 // Phil Poli
CRED274 // Motion Graphics
CRED275 // Jon Dorfman
CRED276 // Maryam Parwana
CRED277 // THE CAST
CRED278 // Voice Over Actors
CRED279 // Carl "CJ" Johnson - Chris Bellard aka Young Maylay
CRED280 // Sean "Sweet" Johnson - Faizon Love
CRED281 // Kendl Johnson - Yo Yo
CRED282 // Melvin "Big Smoke" Harris - Clifton Powell
CRED283 // Lance "Ryder" Wilson - MC Eiht
CRED284 // OG Loc - Jas Anderson
CRED285 // Mark "B Dup" Wayne - The Game
CRED286 // Barry "Big Bear" Thorne - Big Boy
CRED287 // Emmet - Eugene Jeter Jr
CRED288 // Madd Dogg - Ice T
CRED289 // Cesar Vialpando - Clifton Collins, Jr.
CRED290 // Officer Tenpenny - Samuel L. Jackson
CRED291 // Officer Pulaski - Chris Penn
CRED292 // Officer Hernandez - Armando Riesco
CRED293 // Catalina - Cynthia Farrell
CRED294 // The Truth - Peter Fonda
CRED295 // Jizzy B - Charlie Murphy
CRED296 // T-Bone - Kid Frost
CRED297 // Mike Toreno - James Woods
CRED298 // Woozie - James Yaegashi
CRED299 // Su Xi Mu (Suzie) - Richard Chang
CRED300 // Ran Fa Li (Farlie) - Hunter Platin
CRED301 // Zero - David Cross
CRED302 // Kent Paul - Danny Dyer
CRED303 // Maccer - Shaun Ryder
CRED304 // Ken Rosenberg - Bill Fichtner
CRED305 // Salvatore Leone - Frank Vincent
CRED306 // Maria - Debi Mazar
CRED307 // Johnny Sindacco - Casey Siemaszko
CRED308 // Jimmy Silverman - Gary Yudman
CRD308A // Bettina - Noelle Sadler
CRD308B // Jethro - John Zurhellen
CRD308C // Dwaine - Navid Khonsari
CRD308D // Millie Perkins - Orfeh
CRD308E // Barbara Schternvart - Danielle Lee Greaves
CRD308F // Denise Robinson - Heather Alicia Simms
CRD308G // Michelle Cannes - Vanessa Aspillaga
CRD308H // Helena Wankstein - Bijou Phillips
CRD308I // Katie Zhan - China Chow
CRD308J // KDST DJ - Axl Rose
CRD308K // Modern Hip Hop DJ - Julio G
CRD308L // Classic Hip Hop DJ - Chuck D
CRD308M // Grove Street Families Gang - Solo, A da Business, Vincent Lomax, Gregory Johnson, Ricky Harris
CRD308N // Ballas Gang - Donnie Anderson, Michael Ralph, Ricky Harris, Darreck Burns, Derrick Edmond
CRED309 // Recorded at
CRED310 // Rockstar NYC; Juice West, LA
CRED311 // Directed by
CRED312 // Dan Houser
CRED313 // Navid Khonsari
CRED314 // Pedestrian VO Talent
CRED315 // Adam G, Adam Sietz,
CRED316 // Adrian Guzman (aka Transcend)
CRED317 // Aldis Hodge, Alexandra Ortiz,
CRED318 // Alexis Camins, Alice Liu,
CRED319 // Alonzo Williams, Andrea Kessler
CRED320 // Angelo Perez, Anna Curtis,
CRED321 // Anouchka Benson, Antonio Charity,
CRED322 // Armando Riesco, Asa Sommers,
CRED323 // Ben Wang, Benjamin Davis, Bigg Giant,
CRED324 // Bill Buell, Billy Griffith, Brad Abrell,
CRED325 // Cara Cooper, Carlos Carrasco,
CRED326 // Carolyn Lawson, Casey Siemaszko,
CRED327 // Catherine Kung, Chad Doreck,
CRED328 // Charlene Carabeo, Chris Lucas,
CRED329 // Chris Tardio, Columbus Short,
CRED330 // CS Lee, Daniel Larlham, Daniel Lee,
CRED331 // Daniel Venegas, Daniel Whitner,
CRED332 // David Lopez, David Shatraw, David Shih,
CRED333 // Dawn Jamieson, Dennis Ostermaier,
CRED334 // Derek Basco, Don Nahaku, Donna Cross,
CRED335 // Duane Shepard, Ed Seamon, Edwin Hodge,
CRED336 // Evelyn Page, Frank Nitty, Frank Sims,
CRED337 // Fred Berman, Gary Yudman,
CRED338 // Geoffrey Arend, Gil Silverbird,
CRED339 // Gisele Richardson, Gordana Rashovich,
CRED340 // Gustavo Rex, Hanson Tse,
CRED341 // Holly Lewis, Hoon Lee, Horacio Romero,
CRED342 // Isabella Donato, Ivelka Reyes,
CRED343 // Jack Luceno, Jackson Loo, Jameel Vega,
CRED344 // James Kennedy, Jamil Smith,
CRED345 // Janora McDuffie, Jason Alan Smith,
CRED346 // Jayson Gladstone, Jeff Gurner,
CRED347 // Jerry Diner, Jesse Perez, Jessica Lugo,
CRED348 // Jesus Flores (aka Oppose Da Silence),
CRED349 // Jinn S. Kim, Joe Abbate, Joe Holt,
CRED350 // John Zurhellen, Jordi Caballero,
CRED351 // Jordin Ruderman, Jose Martinez,
CRED352 // Julie J. Hafner, Kathy Rossetter,
CRED353 // Ken Foree, Kenn Michael, Kenneth Choi,
CRED354 // Kevin Mambo, Kinley Doucette,
CRED355 // Lance Williams, Lee Rosen, Lee Wong,
CRED356 // Lenny Grossi, Leonardo Tejeda,
CRED357 // Lloyd Floyd, Lou Martini, Jr.,
CRED358 // Mamie-Louise Anderson,
CRED359 // Marchand Odette, Marcus Ho,
CRED360 // Marina Pincus, Mark Casella,
CRED361 // Matt Eyde, Matthew Ballard,
CRED362 // Melania Hall, Mella Fazzoli,
CRED363 // Messeret Stroman, Michael Cullen,
CRED364 // Michael Goz, Michael Winslow,
CRED365 // Mike Smith, Mikka Orenstein,
CRED366 // Millicent Cho, Monique Lea, Mr. Ko-Bra,
CRED367 // Natalie Belcon, Nick Bosco,
CRED368 // Nika Futterman, Nina Siemaszko,
CRED369 // Noelle Sadler, Oliver Wyman,
CRED370 // Omar Scroggins, Pat Nesbitt,
CRED371 // Paul Cicero, Paul McCarthy Boyington,
CRED372 // Paymon Bahadoran, Philip Cruise,
CRED373 // Phillip Jeanmarie, Raynor Scheine,
CRED374 // Rick Negron, Rocco Sisto,
CRED375 // Rodd Houston, Roderick Covington,
CRED376 // Ron Foster, Ron Nakahara,
CRED377 // Russell Koplin, Ruth Livier,
CRED378 // Ruth Zhang, Sam Reich, Sami Sargent,
CRED379 // Sanford Santacroce, Sara Tanaka,
CRED380 // Sarah Sido, Shawn Curran, Sonya Walger,
CRED381 // Stacey Newman, Stanton Sarjeant,
CRED382 // Steve Cirbus, Stevie Ray Dallimore,
CRED383 // Sue Jean Kim, Susan Spano, Ted Koch,
CRED384 // Tom Sminkey, Tony Romero, Toru Ohno,
CRED385 // Toy Connor, Tyler Bunch, Ursula Abbott,
CRED386 // Valyn Hall, Vanese Smith,
CRED387 // Vernee Watson Johnson, Victor Lirio,
CRED388 // Victor Verhaeghe, Vincenetta Gunn,
CRED389 // Wai Ching Ho, Wass Stevens,
CRED390 // Wilhelm Lewis, Xavier Cadeau
CRED391 // Daniel Einzig, Chris Carro,
CRED392 // Ryan Rayhill, Anthony Carvalho,
CRED393 // Phil Poli, Carmelo Gaeta,
CRED394 // Gregg Sanderson, Elizabeth Satterwhite,
CRED395 // Francescka Clemens, Oswald Greene,
CRED396 // Rich Rosado, Kerry Shaw, Ethan Abeles,
CRED397 // Richard Huie
CRED398 // Casting by
CRED399 // Judy Henderson & Associates
CRED400 // Recorded at
CRED401 // Digital Arts (NYC)
CRED402 // Audio Banks (LA)
CRED403 // Pedestrian V.O.s Written by
CRED404 // Dan Houser
CRED405 // James Worrall
CRED406 // DJ Pooh
CRED407 // Gregory Johnson
CRED408 // Nicole Whelan
CRED409 // Sanford Santacroce
CRED410 // With help from
CRED411 // Noelle Sadler
CRED412 // Navid Khonsari
CRED413 // Ayana Osada
CRED414 // John Zurhellen
CRED415 // Kerry Shaw
CRED416 // Will Morton
CRED417 // Motion Capture Actors
CRED418 // Eddie Goines, Billy Griffith,
CRED419 // Mustafa Shakir, Ephraim Benton,
CRED420 // Jonathan Anderson, Sophina Brown,
CRED421 // Kiki Goins, David Anzuelo, Wilhelm Lewis,
CRED422 // Darren Lenz, Omar Soriano,
CRED423 // Danny Johnson, Mtume Gant,
CRED424 // Jose Hernandez, Jr., William McCall,
CRED425 // Chandler Parker, David Zayas,
CRED426 // Frederick Owens, Charles Loflin,
CRED427 // Flora Diaz, Kurt Rhoads, James Yaegashi,
CRED428 // Gilbert Cruz, Loose Cannon,
CRED429 // Daniel Larlham, Elliot Joseph,
CRED430 // Nicole Alifante, Jeffrey C. Hawkins,
CRED431 // Chris Tardio, Reza Garakani,
CRED432 // Violeta Galagarza, Andrew Dowdey,
CRED433 // Av Berkovitz, Blake Remer, Calvin Wilds,
CRED434 // Daniel Chanis, Daniel Larlham,
CRED435 // Danny Chanis, Elena Goode, Ford Harris,
CRED436 // Gable Frazier, Heather Catania,
CRED437 // Jay Zaretsky, Jaymie Wisneski,
CRED438 // Jayson Gladstone, Jeremy Schaller,
CRED439 // Jesse Denes, Jonathan Kurt,
CRED440 // Julia Tcharfas, Kareem L. Bunton,
CRED441 // Lindsay King Wisneski,
CRED442 // M. Russell Foreman,
CRED443 // Mary Zielinski, Molly Byrnes,
CRED444 // Quindell Willis, Ryan Minnaugh,
CRED445 // Tara K. Spencer, Taron Benson,
CRED446 // Tiombe Lockhart, Wyatt Knaster,
CRED447 // KR3T'S Dance Company www.kr3ts.com,
CRED448 // Yoshito Mizutani, Maria Ramos,
CRED449 // Julio Samuel Heredia, Jocelyn Rivera
CRED450 // Choreographer
CRED451 // Violeta Galagarza
CRED452 // Casting by
CRED453 // Bernard Telsey Casting
CRED454 // Recorded at
CRED455 // Perspective Studios
CRD455A // Facial Tracking & Animation
CRD455B // Image Metrics PLC
CRD455C // Motion Capture Coordinator
CRD455D // Manny Siviero
CRED456 // Models
CRED457 // Bart Larson, Carrie Simmons,
CRED458 // Casey Adler, Da Vinci, David Parry,
CRED459 // DJ Rabiola, Eliot Lee Hazel, Erl,
CRED460 // Gabby Tary, Gina Diaz, I Wei Lai,
CRED461 // Jeffrey Damnit, Joel Huggins,
CRED462 // Leona Babette, Lester Roque, Liz Ard,
CRED463 // Vanessa Christel, Vylette Fagerholm,
CRED464 // Wayne Rambharose, Armando Cantina,
CRED465 // Armando "Wolf" Garcia, Danny Martinez,
CRED466 // Eduardo Meza, Frank Alvarez,
CRED467 // Kattia M. Ortiz Escobar, Luis Moncada,
CRED468 // Michael "Shagg" Washington,
CRED469 // Nikki Shandasani aka "DJ Tribe",
CRED470 // Roy Garcia, Jr., Trina Vela,
CRED471 // Anthony Washington, Briggette Brooks,
CRED472 // Chris "Maylay" Bellard,
CRED473 // Darius Henderson aka "Black",
CRED474 // Darreck Burns, Derrick Edmond,
CRED475 // Derrick Ford, Donnie Anderson,
CRED476 // George "Tone" Henderson, Jody Terrell,
CRED477 // Kenneth Morris, Lashelle Danee Sanders,
CRED478 // Marvin C. Watkins, Jr.,
CRED479 // Marvin C. Watkins, Sr.,
CRED480 // Michael "Mykestro" Gilliam,
CRED481 // Rodney Williams, Shamika Shirley,
CRED482 // Silvia Mayo, Tony Rushing,
CRED483 // Walter "Oowee" Tucker, Billy Griffith,
CRED484 // Brad Kagawa, Brian Yang, Bruce Ho,
CRED485 // Cheng-Nan Chen, Chris Choi,
CRED486 // Chris Plummer, Christina P. Chen,
CRED487 // Clint Chin, Daniel Lee, Dave Kim,
CRED488 // Diego P. Chen, Ephraim Benton,
CRED489 // Futaba Hayashi, Gerri Igrashi,
CRED490 // Harvey Fung, Jackson Ning,
CRED491 // Jaz Anderson, Jo Yang, Joe LaRue,
CRED492 // Kathy Chan, Lance Williams,
CRED493 // Liliana Chen, Mark Azarcon,
CRED494 // Mayumi Kobayashi, Michael Lew,
CRED495 // Mike Hong, Rain Noe, Renaud Sebbane,
CRED496 // Rich Huie, Roberto Melendez,
CRED497 // Scott Peterman, Steve Knezevich,
CRED498 // Sueane Mun, Tim Sweeney
CRED499 // Photographers
CRED500 // Will Blochinger
CRED501 // Dedjora Jutaz / Quad Photo
CRED502 // Stylists
CRED503 // Daria Hines
CRED504 // Evan Ross
CRED505 // Publishing team
CRED506 // Terry Donovan
CRED507 // Jenefer Gross
CRED508 // Jennifer Kolbe
CRED509 // Jeff Castaneda
CRED510 // Adam Tedman
CRED511 // Laura Paterson
CRED512 // Devin Winterbottom
CRED513 // Lucien King
CRED514 // Nijiko Walker
CRED515 // Andrea Borsuku
CRED516 // Jordan Chew
CRED517 // Hosi Simon
CRED518 // Paul Yeates
CRED519 // Gauri Khindaria
CRED520 // Bill Woods
CRED521 // Dave Kim
CRED522 // Daniel Einzig
CRED523 // Chris Carro
CRED524 // Devin Bennett
CRED525 // Ryan Rayhill
CRED526 // Harry Allen
CRED527 // Michael Carnevale
CRED528 // Stu Petri
CRED529 // Robert Botsford
CRED530 // Jerry Luna
CRED531 // Alice Chuang
CRED532 // Futaba Hayashi
CRED533 // Jake King
CRED534 // Richard Kruger
CRED535 // John Schuhmann
CRED536 // Mike Torok
CRED537 // Anthony Carvalho
CRED538 // Nick Giovanetti
CRED539 // Stanton Sargeant
CRED540 // Marlene Yamaguchi
CRED541 // Mike Cala
CRD541A // Susan Lewis
CRD541B // Larry Conti
CRD541C // Brian Noto
CRED542 // Cover art
CRED543 // Steven Olds
CRED544 // Stephen Bliss
CRED545 // Anthony McBain
CRED600 // ROCKSTAR LINCOLN
CRED601 // QA Manager
CRED602 // Mark Lloyd
CRED603 // Deputy QA Manager
CRED604 // Tim Bates
CRED605 // QA Supervisors
CRED606 // Kevin Hobson
CRED607 // Kit Brown
CRED608 // Charlie Kinloch
CRED609 // Test Team
CRED610 // Matt Hewitt
CRED611 // Phil Alexander
CRED612 // Jonathan Stones
CRED613 // Steve Bell
CRED614 // Eddie Gibson
CRED615 // Andy Webster
CRED616 // Will Riggott
CRED617 // Jon Gittus
CRED618 // Dave Lawrence
CRED619 // Mike Bennett
CRED620 // Localization Test Team
CRED621 // Antoine Cabrol
CRED622 // Chris Welsh
CRED623 // Alain Dellepiane
CRED624 // Dominic Garcia
CRED625 // François-Xavier Fouchet
CRED626 // Stefano Moretti
CRED627 // Carsten Arnold
CRED628 // Salvador Tintoré
CRED629 // I.T Supervisor
CRED630 // Nick McVey
CRED700 // Thanks To
CRED701 // Chris McCallum
CRED702 // Chris Morton
CRED703 // Deep Sea
CRED704 // Jennifer Arthur
CRED705 // Jumbos Clownroom
CRED706 // Kay Payne
CRED707 // Lorna "H-D"
CRED708 // Martin & Claire Logan
CRED709 // Mike Patton
CRED710 // Officer Gregory hue SFPD
CRED711 // Pivo
CRED712 // Sandy Hutton
CRED713 // Sarah Oram
CRED714 // Smoke Stack
CRED715 // Trattoria Siciliana
CRED716 // Black Bull
CRED999 // DJ Banter and Commercials Produced by
CRED998 // Lazlow
CRED997 // Alex Bazlinton
CRED996 // Ben Abbott
CRED995 // Bobby Wright
CRED994 // Chris Thomson
CRED993 // Surian Christopher Soosay
CRED992 // Nick Rees
CRED991 // Alastair MacGregor
RATNG53 // Playa-hater
RATNG54 // Scandalous
RATNG55 // Off-Brand
RATNG56 // Bitch-made
RATNG57 // Crackhead
RATNG1 // Vic
RATNG2 // Square
RATNG3 // Civilian
RATNG4 // Rat
RATNG5 // Snitch
RATNG6 // Dry Snitch
RATNG7 // Transformer
RATNG8 // Punk-ass Bitch
RATNG9 // Sucka
RATNG10 // Poot Butt
RATNG11 // Buster
RATNG12 // Mark
RATNG13 // Chump
RATNG14 // Trick
RATNG15 // Red-headed Stepchild
RATNG16 // Peon
RATNG17 // Pee-Wee
RATNG18 // Prankster
RATNG19 // Fool
RATNG20 // Street Cat
RATNG21 // Thug
RATNG22 // Hustler
RATNG23 // Playa
RATNG24 // Playa Partner
RATNG25 // Mack
RATNG26 // Pimp
RATNG27 // Crime Partner
RATNG28 // Homeboy
RATNG29 // Homie
RATNG30 // Road Dawg
RATNG31 // Hoodsta
RATNG32 // Hard-ass
RATNG33 // 'Banger
RATNG34 // Lil' G
RATNG35 // Loc
RATNG36 // Jacker
RATNG37 // Shooter
RATNG38 // Foot-soldier
RATNG39 // Hoo-rider
RATNG40 // Soldier
RATNG41 // Hawg
RATNG42 // Gangsta
RATNG43 // Ghetto Star
RATNG44 // Monster
RATNG45 // Big Homie
RATNG46 // Boss Hawg
RATNG47 // Shot Caller
RATNG48 // OG
RATNG49 // High Roller
RATNG50 // Four-Star General
RATNG51 // Godfather
RATNG52 // King of San Andreas
FE_HLPX // ~X~ Yes
FE_HLPY // ~T~ No
FES_LOC // Load Failed! Save game is not compatible with this version of Grand Theft Auto: San Andreas.~n~~n~Now restarting game.
STAT337 // Territory under control
CHEAT8 // Cheat deactivated
FEC_DUW // Dive underwater
FEC_SWF // Swim forward
FEC_HCD // Descend (Helicopter)
FEC_HCA // Ascend (Helicopter)
FEC_RL // Rotate Left (flying)
FEC_RR // Rotate Right (flying)
FEC_HOV // Hover (Helicopter) ~k~~VEHICLE_HORN~
FEC_ALW // Alternate weapon (plane)
FEC_GER // Landing gear (plane) ~k~~TOGGLE_SUBMISSIONS~
FEC_THR // Thrust (plane)
SADLSHI // Sadler
SHESPT0 // ~h~Health~w~ - Upgraded. You can take more damage before dying.
SHESPT1 // ~h~Health~w~ - Upgraded. Maximum reached.
WRN1_2P // 2 player - Distance limit reached, please move towards other player.
SWPI_R // ~h~Pistol Skill~w~ - Upgraded. Keep practicing and you'll reach Hitman level, allowing you to wield two Pistols simultaneously.
SWSP_T // ~h~Silenced Pistol Skill~w~ - Upgraded. Keep practicing and you'll reach Gangster level.
SWSP_R // ~h~Silenced Pistol Skill~w~ - Upgraded. Keep practicing and you'll reach Hitman level.
SWDE_R // ~h~Desert Eagle Skill~w~ - Upgraded. Keep practicing and you'll reach Hitman level.
SWSG_R // ~h~Shotgun Skill~w~ - Upgraded. Keep practicing and you'll reach Hitman level.
SWSS_R // ~h~Sawn-Off Shotgun Skill~w~ - Upgraded. Keep practicing and you'll reach Hitman level, allowing you to wield two Sawn-off's simultaneously.
SWSZ_R // ~h~Combat Shotgun Skill~w~ - Upgraded. Keep practicing and you'll reach Hitman level.
SWMU_R // ~h~Machine Pistol Skill~w~ - Upgraded. Keep practicing and you'll reach Hitman level, allowing you to wield two Machine Pistols simultaneously.
SWM5_R // ~h~SMG Skill~w~ - Upgraded. Keep practicing and you'll reach Hitman level.
SWAK_R // ~h~AK-47 Skill~w~ - Upgraded. Keep practicing and you'll reach Hitman level.
SWM4_R // ~h~M4 Skill~w~ - Upgraded. Keep practicing and you'll reach Hitman level.
SWSR_T // ~h~Rifle Skill~w~ - Upgraded. Keep practicing and you'll reach Gangster level.
SWSR_R // ~h~Rifle Skill~w~ - Upgraded. Keep practicing and you'll reach Hitman level.
SHAMAL // Shamal
GA_1B // ~r~I don't do toys!
LG_64 // Player target
LG_66 // Quarry
LG_67 // Diner
STAT336 // Gang strength
FIRELA // Fire Truck
SUSFBG // Safe House
8TRACK // 8-Track Stadium
ABATOIR // Sindacco Abattoir
AMMUN1 // Ammu-Nation
AMMUN2 // Ammu-Nation
AMMUN3 // Ammu-Nation
AMMUN4 // Ammu-Nation
AMMUN5 // Ammu-Nation
ATRIUME // Atrium
ATRIUMX // Attrium
BAR1 // Club
BAR2 // Bar
BARBERS // Barber
BARBER2 // Barber
BARBER3 // Barber
BDUPS // B Dup's apartment
BDUPS1 // B Dup's Crack Palace
BIKESCH // Bike School
BROTHEL // Whore House
BROTHL2 // Brothel
BURHOUS // Colonel Fuhrberger's
CARLS // The Johnson House
CARMOD1 // TransFender
CARMOD2 // Loco Low Co.
CARMOD3 // Wheel Arch Angels
CARTER // Smoke's Crack Palace
CARTERX // Smoke's Crack Palace
CASINO2 // Casino Floor
CLOTHGP // Zip
CSCHP // Binco
CSSPRT // Pro-Laps
CSDESGN // Victim
CSEXL // Didier Sachs
DESHOUS // Abandoned AC tower
CHANGER // Wardrobe
DAMIN // Generator Hall
DINER1 // Diner
DINER2 // Diner
DIRBIKE // Dirt Stadium
DRIVES // Driving School
FDCHICK // Cluckin' Bell
FDBURG // Burger Shot
FDPIZA // Pizza Stack
FDDONUT // Rusty Brown's
FDREST1 // World of Coq
GANG // Vagos Gang House
GENOTB // Inside Track Betting
GENWRHS // Warehouse
GYM1 // Ganton Gym
GYM2 // Cobra Marital Arts
GYM3 // Below the Belt Gym
JUMP1 // Caligula's Roof
JUMP2 // Caligula's Roof
KICKSTA // Trials Stadium
LACRAK // Crack Den
LACS1 // Sub Urban
LAHS1A // House
LAHS1B // House
LAHS2A // House
LAHS2B // House
LAHSB1 // House
LAHSB2 // House
LAHSB3 // House
LAHSB4 // House
LAHSS6 // House
LASTRIP // Strip Club
MADDOGS // Madd Dogg's Crib
MAFCAS // Caligula's Casino
MAFCAS2 // Penthouse Suites
MDDOGS // Madd Dogg's Crib
MOTEL1 // Jefferson Motel
OGLOCS // OG Loc's
PAPER // Planning Department
PDOMES // The Pleasure Domes
PDOMES2 // The Pleasure Domes
POLICE1 // LSPD HQ
POLICE2 // SFPD HQ
POLICE3 // LVPD HQ
POLICE4 // LVPD HQ
RCPLAY // Zero's RC Shop
REST2 // Secret Valley
RYDERS // Ryder's Place
SEXSHOP // Sex Shop
SFHSB1 // House
SFHSB2 // House
SFHSB3 // House
SFHSM1 // House
SFHSM2 // House
SFHSS1 // House
SFHSS2 // House
STRIP2 // Strip Club
SVCUNT // Safe House
SVGNMT1 // Motel room
SVGNMT2 // Motel room
SVHOT1 // Hotel Suite
SVLABIG // Safe House
SVLAMD // Safe House
SVLASM // Safe House
SVSFBIG // Safe House
SVSFBG // Safe House
SVSFMD // Safe House
SVSFSM // Safe House
SVVGHO1 // Hotel Suite
SVVGHO2 // Hotel Suite
SVVGMD // Safe House
SWEETS // Sweet's House
TATTO2 // Tattoo Parlor
TATTO3 // Tattoo Parlor
TATTOO // Tattoo Parlor
TATTOO3 // Tattoo Parlor
TRICAS // The Four Dragons
TSDINER // Truck Stop
UFOBAR // Lil' Probe Inn
VGHSB1 // House
VGHSB3 // House
VGHSM2 // House
VGHSM3 // House
VGHSS1 // House
VGSHM2 // House
VGSHM3 // House
VGSHS2 // House
WUZIBET // Wu Zi Mu's
X7_11B // 24-7
X7_11C // 24-7
X7_11D // 24-7
X7_11S // 24-7
X711S2 // 24-7
X711S3 // 24-7
7_11S // 24-7
7_11B // 24-7
7_11C // 24-7
711_D // 24-7
711S2 // 24-7
711S3 // 24-7
LG_63 // Mystery
STAT229 // Bike skill
LG_58 // Varrios Los Aztecas
LG_59 // Ballas
LG_60 // Los Santos Vagos
LG_61 // San Fierro Rifa
LG_62 // Families
RUSTLER // Rustler
GA_XX // New engine and paint job: $100
STAT213 // Number of vehicles exported
STAT214 // Number of vehicles imported
SBOMUS6 // ~h~Body Muscle~w~ - Upgraded. You can now learn new fight moves at the gym.
WRN_2P // Any further and the 2 player game will end
FED_BL5 // Gang Area
HYDRA // Hydra
FEA_ART // RADIO AUTO-TUNE
FEA_BAS // Radio EQ
STAT029 // Distance travelled on exercise bike
STAT045 // Longest exercise bike time
LG_57 // Car impound
LG_52 // Race Tournament
FEG_PSU // Photo space in use:
STAT048 // Best time in 8-Track
STAT172 // Best position in 8-Track
STAT212 // Best lap time in 8-Track
STAT219 // Best lap time in dirt track
STAT220 // Best time in dirt track
STAT221 // Best position in dirt track
STAT258 // Best position in Lowrider Race
STAT259 // Best time in Lowrider Race
STAT260 // Best position in Little Loop
STAT261 // Best time in Little Loop
STAT262 // Best position in Backroad Wanderer
STAT263 // Best time in Backroad Wanderer
STAT264 // Best position in City Circuit
STAT265 // Best time in City Circuit
STAT266 // Best position in Vinewood
STAT267 // Best time in Vinewood
STAT268 // Best position in Freeway
STAT269 // Best time in Freeway
STAT270 // Best position in Into the Country
STAT271 // Best time in Into the Country
STAT272 // Best position in Badlands A
STAT273 // Best time in Badlands A
STAT274 // Best position in Badlands B
STAT275 // Best time in Badlands B
STAT276 // Best position in Dirtbike Danger
STAT277 // Best time in Dirtbike Danger
STAT278 // Best position in Bandito County
STAT279 // Best time in Bandito County
STAT280 // Best position in Go-Go-Kart
STAT281 // Best time in Go-Go-Kart
STAT282 // Best position in San Fierro Fastlane
STAT283 // Best time in San Fierro Fastlane
STAT284 // Best position in San Fierro Hills
STAT285 // Best time in San Fierro Hills
STAT286 // Best position in Country Endurance
STAT287 // Best time in Country Endurance
STAT288 // Best position in SF to LV
STAT289 // Best time in SF to LV
STAT290 // Best position in Dam Rider
STAT291 // Best time in Dam Rider
STAT292 // Best position in Desert Tricks
STAT293 // Best time in Desert Tricks
STAT294 // Best position in LV Ringroad
STAT295 // Best time in LV Ringroad
STAT296 // Best time in World War Aces
STAT297 // Best time in Barnstorming
STAT298 // Best time in Military Service
STAT299 // Best time in Chopper Checkpoint
STAT300 // Best time in Whirly Bird Waypoint
STAT301 // Best time in Heli Hell
DRIVES2 // Driving School
TAG_ONE // Tags sprayed~n~~1~ out of ~1~
TAG_ALL // All tags sprayed!
STAT129 // Tires popped with gunfire
STAT033 // Prostitute budget
STAT008 // Distance travelled by helicopter
STAT224 // Respect Mission
STAT228 // Respect Mission Total
STAT161 // Number of Truck missions passed
STAT162 // Money made in Truck
FE_HLPL // ~t~ Back to game
STAT334 // Money lost gambling
KILLPA // KILL FRENZY PASSED!
WESTP // Queens
FE_HLPB // ~M~~V~ Zoom in/out
FE_HLPC // ~o~ Target on/off
FE_HLPP // ~K~ Skip back
FE_HLPQ // ~J~ Skip forward
FE_HLPD // ~<~~>~ Adjust
FE_HLPF // ~<~~>~ Scroll
FE_HLPO // ~u~~d~~<~~>~ Scroll
FE_HLPG // ~u~~d~~<~~>~ Move
FE_HLPI // ~u~~d~ Move
FE_HLPR // ~u~~d~~<~~>~ Adjust
FE_HLPS // ~o~ COPY PHOTO
FEC_RSC // Next radio station
FEC_RSP // Previous radio station
FEC_TSK // Trip Skip
FEC_ANP // Answer phone
FEC_REV // Reverse
FEC_TUC // Turret control
FEC_MCA // Manual camera
FEC_MSC // Move scope
FEC_LOF // Look forward
FEC_VST // View Stats
FEC_FWT // Fire when targeting
FEC_GAM // Gang active mode
FEC_GPM // Gang passive mode
FEC_TKP // Positive talk
FEC_TKN // Negative talk
FEC_JUM // Jump
FEC_CLB // Climb
FEC_ENV // Enter vehicle
FEC_PKU // Pickup item
FEC_USE // Use item
FEC_ATT // Attack
FEC_FWE // Fire weapon
FEC_RUN // Sprint
FEC_RN2 // Tap - Sprint faster
FEC_CWL // Cycle weapon left
FEC_ZSI // Zoom scope in
FEC_CWR // Cycle weapon right
FEC_ZSO // Zoom scope out
FEC_CR3 // Crouch ~A~
FEC_DK3 // Duck ~A~
FEC_STR // 1st person strafe
PROP_4 // You cannot buy this property yet.
FES_SGL // Do you wish to save this photograph?
FES_PM1 // Are you sure you wish to copy this photograph?
WRCNT2 // The controller connected to controller port 2 is an unsupported controller. Grand Theft Auto: San Andreas requires an analog controller (DUALSHOCK#) or analog controller (DUALSHOCK#2).
WRCNT2E // The controller connected to controller port 2 is an unsupported controller. Grand Theft Auto: San Andreas requires an analog controller (DUALSHOCK#) or analog controller (DUALSHOCK#2).
FEM_PWT // Please wait...
FE_HLPM // ~x~ Delete
LG_45 // Disco Date
LG_46 // Drinking Date
LG_47 // Restaurant
LG_48 // Trucking
LG_49 // Destination
LG_50 // Object
LG_54 // Friend
LG_55 // Threat
LG_56 // Player interest
LG_51 // Robbery
STAT326 // Most Favorite Radio Station