-
Notifications
You must be signed in to change notification settings - Fork 0
/
sagxtdiff.txt
3855 lines (3047 loc) · 107 KB
/
sagxtdiff.txt
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
different on pc
MAIN 2047492952
Cinematic Camera (Use ~h~right analog stick~w~ to change cinematic camera type.)
Cinematic Camera (Use ~k~~VEHICLE_TURRETLEFT~ to change cinematic camera type.)
different on pc
MAIN 2668047189
To take a photo with a camera press ~o~ OR you can take the photo by pressing ~k~ and it will be added to your Gallery.
To take a photo with a camera press ~k~~PED_FIREWEAPON~.
different on pc
MAIN 2892076722
START button Back to game
Esc key Back to game
different on pc
MAIN 760777814
Press ~K~ to buy this property.
Press ~k~~PED_ANSWER_PHONE~ to buy this property.
different on pc
MAIN 750666500
Arm with ~o~. Bomb will go off when engine is started.
Arm with ~k~~PED_FIREWEAPON~. Bomb will go off when engine is started.
different on pc
MAIN 2677234406
Arm with ~J~. Bomb will go off when engine is started.
Arm with ~k~~PED_FIREWEAPON~. Bomb will go off when engine is started.
different on pc
MAIN 2752500420
Press ~K~ to pick up this weapon. It will replace any weapon you have of the same type.
Press ~k~~PED_ANSWER_PHONE~ to pick up this weapon. It will replace any weapon you have of the same type.
different on pc
MAIN 1241625576
Press ~t~ to replace current weapon in this slot.
Press ~k~~PED_ANSWER_PHONE~ to replace current weapon in this slot.
different on pc
MAIN 3563398731
Press ~o~ to replace current weapon in this slot.
Press ~k~~PED_ANSWER_PHONE~ to replace current weapon in this slot.
different on pc
MAIN 3587863132
Press ~K~ to answer your cell phone.
Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
different on pc
MAIN 1154610945
It's a call from Denise. Press ~K~ to answer your cell phone.
It's a call from Denise. Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
different on pc
MAIN 869713815
It's a call from Michelle. Press ~K~ to answer your cell phone.
It's a call from Michelle. Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
different on pc
MAIN 2866779693
It's a call from Helena. Press ~K~ to answer your cell phone.
It's a call from Helena. Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
different on pc
MAIN 3721963195
It's a call from Barbara. Press ~K~ to answer your cell phone.
It's a call from Barbara. Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
different on pc
MAIN 1136407320
It's a call from Katie. Press ~K~ to answer your cell phone.
It's a call from Katie. Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
different on pc
MAIN 884671374
It's a call from Millie. Press ~K~ to answer your cell phone.
It's a call from Millie. Press ~k~~PED_ANSWER_PHONE~ to answer your cell phone.
different on pc
MAIN 1538880402
Park it, prime it by pressing the ~o~ or ~K~ and LEG IT!
Park it, prime it by pressing ~k~~PED_FIREWEAPON~ and LEG IT!
different on pc
MAIN 2257087399
Park it, prime it by pressing ~J~ and LEG IT!
Park it, prime it by pressing ~k~~PED_FIREWEAPON~ and LEG IT!
different on pc
MAIN 1770874456
Gustavo Rex, Hanson Tse, Hanson Tse,
Gustavo Rex, Hanson Tse,
missing on ps2
MAIN 1339033696
Alex Bazlinton
missing on ps2
MAIN 953628918
Ben Abbott
missing on ps2
MAIN 2715707724
Bobby Wright
missing on ps2
MAIN 3604568538
Chris Thomson
missing on ps2
MAIN 1220398201
Surian Christopher Soosay
missing on ps2
MAIN 1069219055
Nick Rees
missing on ps2
MAIN 2796793173
Alastair MacGregor
different on pc
MAIN 494976259
Hover (Helicopter) ~A~
Hover (Helicopter) ~k~~VEHICLE_HORN~
different on pc
MAIN 3948861101
Landing gear (plane) ~C~
Landing gear (plane) ~k~~TOGGLE_SUBMISSIONS~
missing on ps2
MAIN 744323479
Tattoo Parlor
different on pc
MAIN 2423001149
Load failed!~n~~n~A memory card (8MB) (for PlayStation#2) containing the current Mission Pack is not inserted into MEMORY CARD slot 1. Please re-insert the current Mission Pack or start a new game.
Load failed!~n~~n~The current Mission Pack is not available. Please recheck that the current Mission Pack is installed correctly or start a new game.
different on pc
MAIN 2782017625
Save failed! memory card (8MB) (for PlayStation#2) containing current Mission Pack is not inserted into MEMORY CARD slot 1. Please try again.
Save failed! The current Mission Pack is not available. Please recheck that the current Mission Pack is installed correctly.
different on pc
MAIN 531109942
Next weapon
Next weapon/target
different on pc
MAIN 152081996
Previous weapon
Previous weapon/target
different on pc
MAIN 1935125528
CSR 103.2
CSR 103.9
different on pc
MAIN 568179146
San Fiero Rifa
San Fierro Rifa
different on pc
MAIN 298407770
Longest chase time with 5 stars
Longest chase time with 5 or more stars
different on pc
MAIN 2294286048
Last chase time with 5 stars
Last chase time with 5 or more stars
different on pc
MAIN 2858418903
Save failed! Check the memory card (8MB) (for PlayStation#2) in MEMORY CARD slot 1 and please try again.
Save failed! There was an error while saving the current game. Please check your savegame directory and try again.
different on pc
MAIN 4275553155
Load Failed! Check memory card (8MB) (for PlayStation#2) in MEMORY CARD slot 1 and please try again.~n~~n~Now restarting game.
Load Failed! There was an error while loading the current game. Please check your savegame directory.~n~~n~Now restarting game.
different on pc
MAIN 1382190223
Load Failed! Check memory card (8MB) (for PlayStation#2) in MEMORY CARD slot 1 and please try again.
Load Failed! There was an error while loading the current game. Please check your savegame directory and try again.
different on pc
MAIN 170621617
Deleting Failed! Please check memory card (8MB) (for PlayStation#2) in MEMORY CARD slot 1 and try again.
Deleting Failed! There was an error while deleting the current game. Please check your savegame directory and try again.
different on pc
MAIN 3600888582
Saving data. Do not remove memory card (8MB) (for PlayStation#2), controller, or reset/switch off the console.
Saving data, please wait...
different on pc
MAIN 2228687865
Loading data. Do not remove memory card (8MB) (for PlayStation#2), controller, or reset/switch off the console.
Loading data, please wait...
different on pc
MAIN 1897099479
Deleting data. Do not remove memory card (8MB) (for PlayStation#2), controller, or reset/switch off the console.
Deleting data, please wait...
different on pc
MAIN 4192164979
Loading Mission Pack Game. Do not remove memory card (8MB) (for PlayStation#2), controller, or reset/switch off the console.
Loading Mission Pack Game, please wait...
different on pc
MAIN 3299607799
~z~Catalina! You're sick! Get help!
~z~Catalina! You sick! Get help!
different on pc
MAIN 3037139938
~z~Hey, CJ, is Cesar.
~z~Hey, Cesar.
different on pc
MAIN 76423282
~z~Whatever else went down,
~z~Whatever else went down,I know I gotts do
different on pc
MAIN 2642899400
~z~I knew I would do anything I could to avoid
~z~anything I can to avoid hanging out with
different on pc
MAIN 4268461702
~z~Hey!
~z~Eh.
different on pc
MAIN 3850609124
~z~Millie?
~z~Millie, whassup?
different on pc
MAIN 193839304
~z~Likewise, Miss Perkins, likewise.
~z~Likewise, baby, likewise.
different on pc
MAIN 3896619148
~z~Come on, dude, get in!
~z~Come on, playa, get in!
different on pc
MAIN 1488470287
~z~All aboard - heh heh!
~z~All aboard!
missing on ps2
MAIN 350008893
~k~~PED_SPRINT~
different on pc
MAIN 2728973393
To auto-level a helicopter, press ~A~.
To auto-level a helicopter, press ~k~~VEHICLE_HORN~.
different on pc
MAIN 3228454582
Press ~t~ to look at the wanted car list.
Press ~k~~VEHICLE_ENTER_EXIT~ to look at the wanted car list.
different on pc
MAIN 505386337
Press ~t~ to play pool.
Press ~k~~VEHICLE_ENTER_EXIT~ to play pool.
different on pc
MAIN 3033322650
To board a train press ~t~ next to a passenger carriage door.
To board a train press ~k~~VEHICLE_ENTER_EXIT~ next to a passenger carriage door.
different on pc
MAIN 2935329178
People on the streets will talk to Carl.~n~You can respond to these comments: Use ~<~ for a negative reply or use ~>~ to reply positively.
People on the streets will talk to Carl.~n~You can respond to these comments: Use ~k~~CONVERSATION_NO~ for a negative reply or use ~k~~CONVERSATION_YES~ to reply positively.
different on pc
MAIN 1535796164
Press ~X~ to skip to the next station.
Press ~k~~VEHICLE_ACCELERATE~ to skip to the next station.
different on pc
MAIN 1250608889
Press ~K~ to have your picture taken.
Press ~k~~PED_ANSWER_PHONE~ to have your picture taken.
different on pc
MAIN 3548616515
Press ~K~ to take the picture.~n~~t~ To get the camera back.
Press ~k~~PED_ANSWER_PHONE~ to take the picture.~n~~k~~VEHICLE_ENTER_EXIT~ To get the camera back.
different on pc
MAIN 3930414379
When on foot, press ~U~ to call Ryder back to your side if he gets too involved in a fight.
When on foot, press ~k~~GROUP_CONTROL_FWD~ to call Ryder back to your side if he gets too involved in a fight.
different on pc
MAIN 3999989563
Push the left analog stick right or left to rotate the crane.
Use ~k~~GO_LEFT~ and ~k~~GO_RIGHT~ to rotate the crane.
different on pc
MAIN 3309808888
Push the left analog stick up or down to move the magnet closer or further away.
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to move the magnet closer or further away.
different on pc
MAIN 3697057209
Press ~q~ to raise the magnet.
Press ~k~~PED_JUMPING~ to raise the magnet.
different on pc
MAIN 2468154238
Press ~x~ to lower the magnet.
Press ~k~~PED_SPRINT~ to lower the magnet.
different on pc
MAIN 4161722774
Use the ~h~left analog stick~w~ or ~u~ and ~d~ to select a weapon.~N~~X~ View~N~~T~ Back.
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select a weapon.~N~~k~~PED_SPRINT~ View~N~~k~~VEHICLE_ENTER_EXIT~ Back.
different on pc
MAIN 2399791360
~X~ Buy~N~~T~ Back.
~k~~PED_SPRINT~ Buy~N~~k~~VEHICLE_ENTER_EXIT~ Back.
different on pc
MAIN 3772765417
Press ~o~ or ~K~ to activate the car's nitrous.
Press ~k~~PED_FIREWEAPON~ to activate the car's nitrous.
different on pc
MAIN 4266101085
To stop Carl from entering a car once he has opened the door or dragged out a driver or passenger, move the left analog stick or press ~o~.
To stop Carl from entering a car once he has opened the door or dragged out a driver or passenger, use the movement controls or press ~k~~PED_FIREWEAPON~.
different on pc
MAIN 415335641
~o~ Change view~n~~t~ Quit the private dance.
~k~~PED_FIREWEAPON~ Change view.~n~~k~~VEHICLE_ENTER_EXIT~ Quit the private dance.
different on pc
MAIN 578944144
~x~ SELECT ~t~ EXIT ~<~~>~~u~~d~ NAVIGATE
~k~~PED_SPRINT~ SELECT ~k~~VEHICLE_ENTER_EXIT~ EXIT Movement Controls NAVIGATE
different on pc
MAIN 209433278
Press ~X~ to skip to the end of the flight.
Press ~k~~PED_SPRINT~ to skip to the end of the flight.
different on pc
MAIN 2507334404
Press ~X~ to skip to the end of the flight.~N~Press ~T~ to jump from the plane.
Press ~k~~PED_SPRINT~ to skip to the end of the flight.~N~Press ~k~~VEHICLE_ENTER_EXIT~ to jump from the plane.
different on pc
MAIN 3499430413
While targeting an opponent press ~t~ for a special attack and ~q~ to block.
While holding ~k~~PED_LOCK_TARGET~ press ~k~~VEHICLE_ENTER_EXIT~ for a special attack and ~k~~PED_JUMPING~ to block.
different on pc
MAIN 587332317
Are you sure? ~N~~x~ Confirm and quit.~N~~t~ Back to dance.
Are you sure? ~N~~k~~PED_SPRINT~ Confirm and quit.~N~~k~~VEHICLE_ENTER_EXIT~ Back to dance.
different on pc
MAIN 1947270634
To use the sniper rifle's scope press ~J~. Pressing ~M~ zooms in and pressing ~V~ zooms out.
To use the sniper rifle's scope press ~k~~PED_LOCK_TARGET~. Pressing ~k~~PED_SNIPER_ZOOM_IN~ zooms in and pressing ~k~~PED_SNIPER_ZOOM_OUT~ zooms out.
different on pc
MAIN 3977882704
Press ~o~ or ~K~ to fire.
Press ~k~~PED_FIREWEAPON~ to fire.
different on pc
MAIN 977339943
~t~ To skip a cellphone call.
~k~~VEHICLE_ENTER_EXIT~ To skip a cellphone call.
different on pc
MAIN 223950331
If you have previously completed a journey in a mission that you failed you may press ~>~ to activate a 'Trip Skip'.
If you have previously completed a journey in a mission that you failed you may press ~k~~CONVERSATION_YES~ to activate a 'Trip Skip'.
different on pc
MAIN 998193245
To raise or lower the suspension, press ~A~.
To raise or lower the suspension, press ~k~~VEHICLE_HORN~.
different on pc
MAIN 139673023
Use the left analog stick or ~u~ and ~d~ to select a haircut.~n~~x~ = View~n~~T~ = Quit
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select a haircut.~n~~k~~PED_SPRINT~ = View~n~~k~~VEHICLE_ENTER_EXIT~ = Quit
different on pc
MAIN 2438622213
~x~ = Buy~N~~T~ = Back
~k~~PED_SPRINT~ = Buy~N~~k~~VEHICLE_ENTER_EXIT~ = Back
different on pc
MAIN 4243598291
Press ~T~ to remove the jet pack.
Press ~k~~VEHICLE_ENTER_EXIT~ to remove the jet pack.
different on pc
MAIN 4015445894
Use ~u~ or ~d~ to change radio station.
Use ~k~~VEHICLE_RADIO_STATION_UP~ and ~k~~VEHICLE_RADIO_STATION_DOWN~ to change radio station.
different on pc
MAIN 1667182987
Use the ~H~left analog stick~W~ or ~u~ and ~d~ to select an area.~N~~X~ Select~N~~T~ Quit
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select an area.~N~~k~~PED_SPRINT~ Select~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 4199964721
Use the ~H~left analog stick~W~ or ~u~ and ~d~ to select a tattoo.~N~~X~ Buy~N~~T~ Quit
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select a tattoo.~N~~k~~PED_SPRINT~ Buy~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 3160382971
Use the ~h~left analog stick~w~ or ~<~ and ~>~ to select a meal.~N~~X~ Buy~N~~T~ Quit
Use ~k~~GO_LEFT~ or ~k~~GO_RIGHT~ to select a meal.~N~~k~~PED_SPRINT~ Buy~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 3791922569
Use the ~h~left analog stick~w~ or ~<~ and ~>~ to select a meal.~N~~T~ Quit
Use ~k~~GO_LEFT~ or ~k~~GO_RIGHT~ to select a meal.~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 1819803631
Use the ~h~left analog stick~w~ or ~u~ and ~d~ to select a weapon.~N~~X~ Select~N~~T~ Quit.
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select a weapon.~N~~k~~PED_SPRINT~ Select~N~~k~~VEHICLE_ENTER_EXIT~ Quit.
different on pc
MAIN 1171009768
Use the ~H~left analog stick~W~ or ~u~ and ~d~ to select a shop.~N~~X~ Select~N~~T~ Quit
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select a shop.~N~~k~~PED_SPRINT~ Select~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 3703923026
Use the ~H~left analog stick~W~ or ~u~ and ~d~ to select an area.~N~~X~ Select~N~~T~ Back
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select an area.~N~~k~~PED_SPRINT~ Select~N~~k~~VEHICLE_ENTER_EXIT~ Back
different on pc
MAIN 2881638852
Use the ~H~left analog stick~W~ or ~u~ and ~d~ to select an item.~N~~X~ View~N~~T~ Back
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select an item.~N~~k~~PED_SPRINT~ View~N~~k~~VEHICLE_ENTER_EXIT~ Back
different on pc
MAIN 900121703
~X~ Wear~N~~T~ Back
~k~~PED_SPRINT~ Wear~N~~k~~VEHICLE_ENTER_EXIT~ Back
different on pc
MAIN 3410749914
Use the ~H~left analog stick~W~ or ~u~ and ~d~ to select area.~N~~X~ Select~N~~T~ Quit
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select area.~N~~k~~PED_SPRINT~ Select~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 1380104288
Use the ~H~left analog stick~W~ or ~u~ and ~d~ to select clothing.~N~~X~ View Item~N~~T~ Back
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select clothing.~N~~k~~PED_SPRINT~ View Item~N~~k~~VEHICLE_ENTER_EXIT~ Back
different on pc
MAIN 3836653491
Use the ~H~left analog stick~W~ or ~u~ and ~d~ to select an area.~N~~X~ Remove Item~N~~T~ Back
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select an area.~N~~k~~PED_SPRINT~ Remove Item~N~~k~~VEHICLE_ENTER_EXIT~ Back
different on pc
MAIN 2108161545
~X~ Keep~N~~T~ Back
~k~~PED_SPRINT~ Keep~N~~k~~VEHICLE_ENTER_EXIT~ Back
different on pc
MAIN 625314038
~X~ Buy~N~~T~ Back
~k~~PED_SPRINT~ Buy~N~~k~~VEHICLE_ENTER_EXIT~ Back
different on pc
MAIN 1143225434
Use the ~H~left analog stick~W~ or ~u~ and ~d~ to select an upgrade.~N~~X~ Select~N~~T~ Quit
Use ~k~~VEHICLE_STEERUP~ and ~k~~VEHICLE_STEERDOWN~ to select an upgrade.~N~~k~~PED_SPRINT~ Select~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 3710741984
Use the ~H~left analog stick~W~ or ~u~ and ~d~ to select an upgrade.~N~~X~ Buy Item~N~~T~ Back
Use ~k~~VEHICLE_STEERUP~ and ~k~~VEHICLE_STEERDOWN~ to select an upgrade.~N~~k~~PED_SPRINT~ Buy Item~N~~k~~VEHICLE_ENTER_EXIT~ Back
different on pc
MAIN 2854903158
Use the ~H~left analog stick~W~ or ~u~ and ~d~ to select an upgrade.~N~~X~ View Item~N~~T~ Back
Use ~k~~VEHICLE_STEERUP~ and ~k~~VEHICLE_STEERDOWN~ to select an upgrade.~N~~k~~PED_SPRINT~ View Item~N~~k~~VEHICLE_ENTER_EXIT~ Back
different on pc
MAIN 877578453
Use the ~H~left analog stick~W~ or ~u~, ~d~, ~<~ and ~>~ to select a color.~N~~X~ Buy Item~N~~T~ Back
Use the movement controls to select a color.~N~~k~~PED_SPRINT~ Buy Item~N~~k~~VEHICLE_ENTER_EXIT~ Back
different on pc
MAIN 1128921155
Use the ~H~left analog stick~W~ or ~u~ and ~d~ to select a an area.~N~~X~ Select~N~~T~ Back
Use ~k~~VEHICLE_STEERUP~ and ~k~~VEHICLE_STEERDOWN~ to select an area.~N~~k~~PED_SPRINT~ Select~N~~k~~VEHICLE_ENTER_EXIT~ Back
different on pc
MAIN 3661670905
Use the ~H~left analog stick~W~ or ~u~, ~d~, ~<~ and ~>~ to select a color.~N~~X~ Buy~N~~T~ Back
Use the movement controls to select a color.~N~~k~~PED_SPRINT~ Buy~N~~k~~VEHICLE_ENTER_EXIT~ Back
different on pc
MAIN 2201692667
Press ~K~ to give the gift.
Press ~k~~PED_ANSWER_PHONE~ to give the gift
different on pc
MAIN 3991068923
Press ~K~ to purchase the property.
Press ~k~~PED_ANSWER_PHONE~ to purchase the property.
different on pc
MAIN 3124612657
~<~ ~>~ Change wager~N~~x~ Place wager~N~~q~ Max wager
~k~~CONVERSATION_NO~ ~k~~CONVERSATION_YES~ Change wager~N~~k~~PED_SPRINT~ Place wager~N~~k~~PED_JUMPING~ Max wager
different on pc
MAIN 1767900116
~t~ Use keypad
~k~~VEHICLE_ENTER_EXIT~ Use keypad
different on pc
MAIN 2695481171
Press ~t~ to view the vehicles available to buy.
Press ~k~~VEHICLE_ENTER_EXIT~ to view the vehicles available to buy.
different on pc
MAIN 2237602978
Use the left analog stick or ~u~ and ~d~ to select a day.~N~~x~ Select~N~~t~ Exit
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select a day.~N~~k~~PED_SPRINT~ Select~N~~k~~VEHICLE_ENTER_EXIT~ Exit
different on pc
MAIN 4065864756
Use the left analog stick or ~u~ and ~d~ to select a vehicle.~N~~x~ Buy Car~N~~t~ Back
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select a vehicle.~N~~k~~PED_SPRINT~ Buy Car~N~~k~~VEHICLE_ENTER_EXIT~ Back
different on pc
MAIN 2677318641
Push the ~h~left analog stick~w~ up and down in rhythm~n~~o~ Change view~n~~q~ Change position~n~~t~ Quit
Push ~k~~GO_FORWARD~ and ~k~~GO_BACK~ in rhythm~n~~k~~PED_FIREWEAPON~ Change view~n~~k~~PED_JUMPING~ Change position~n~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 3901985639
Press ~K~ to kiss.
Press ~k~~PED_ANSWER_PHONE~ to kiss.
different on pc
MAIN 2257556144
Press ~>~ to agree or ~<~ to disagree
Press ~k~~CONVERSATION_YES~ to agree or ~k~~CONVERSATION_NO~ to disagree
different on pc
MAIN 1355240909
Press ~x~ when the power bar is full~n~~o~ Change view~n~~t~ Quit
Press ~k~~PED_SPRINT~ when the power bar is full~n~~k~~PED_FIREWEAPON~ Change view~n~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 548249922
~K~ - Change radio station~n~~t~ Quit
~k~~PED_ANSWER_PHONE~ - Change radio station~n~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 1933819279
Press ~K~ to give the gift to your girlfriend.
Press ~k~~PED_ANSWER_PHONE~ to give the gift to your girlfriend.
different on pc
MAIN 1688082240
Push the left analog stick right or left to rotate the wrecker ball crane.
Push ~k~~GO_LEFT~ and ~k~~GO_RIGHT~ to rotate the wrecker ball crane.
different on pc
MAIN 4254549754
Push the left analog stick up or down to move the wrecker ball closer or further away.
Push ~k~~GO_BACK~ to move the wrecker ball closer or ~k~~GO_FORWARD~ to move it further away.
different on pc
MAIN 2324723308
Press ~q~ to raise the wrecker ball.
Press ~k~~PED_JUMPING~ to raise the wrecker ball.
different on pc
MAIN 351593423
Press ~x~ to lower the wrecker ball.
Press ~k~~PED_SPRINT~ to lower the wrecker ball.
different on pc
MAIN 1676923737
Press the ~h~SELECT ~w~button to change camera view.
Press ~k~~CAMERA_CHANGE_VIEW_ALL_SITUATIONS~ to change camera view.
different on pc
MAIN 2738778534
Left/right on the left analog stick rotates crane.~N~ Up/down on the right analog stick raises/lowers magnet.
Push ~k~~GO_LEFT~ and ~k~~GO_RIGHT~ to rotate the crane.~N~Press ~k~~PED_JUMPING~ to raise the magnet and ~k~~PED_SPRINT~ to lower it.
different on pc
MAIN 1500594578
The left analog stick controls the crane.~N~~q~ Raise winch.~N~~x~ Lower winch.~N~~o~ Release objects.
The movement controls rotate the crane.~N~~k~~PED_JUMPING~ Raise winch.~N~~k~~PED_SPRINT~ Lower winch.~N~~k~~PED_FIREWEAPON~ Release objects.
different on pc
MAIN 3346157081
Use the ~h~left analog stick ~w~to select spot.~n~~q~ Increase Wager~n~~o~ Decrease Wager~n~~x~ Spin Wheel~n~~t~ Exit
Use the movement controls to select spot.~n~~k~~PED_JUMPING~ Increase Wager~n~~k~~PED_FIREWEAPON~ Decrease Wager~n~~k~~PED_SPRINT~ Spin Wheel~n~~k~~VEHICLE_ENTER_EXIT~ Exit
different on pc
MAIN 993992581
left analog stick: Rotate
Movement Controls: Rotate
different on pc
MAIN 1278750483
~t~ Exit
~k~~VEHICLE_ENTER_EXIT~ Exit
different on pc
MAIN 3576790697
~x~ Enter Number
~k~~PED_SPRINT~ Enter Number
different on pc
MAIN 790899052
left analog stick: Rotate~n~ ~x~ Enter Number~n~ ~t~ Exit
Movement Controls: Rotate~n~~k~~PED_SPRINT~ Enter Number~n~~k~~VEHICLE_ENTER_EXIT~ Exit
different on pc
MAIN 183992815
Use the ~h~left analog stick ~w~to select wager.~n~~q~ Increase Wager~N~~o~ Decrease Wager~N~~x~ Proceed~N~~t~ Quit
Use the movement controls to select wager.~n~~k~~PED_JUMPING~ Increase Wager~N~~k~~PED_FIREWEAPON~ Decrease Wager~N~~k~~PED_SPRINT~ Proceed~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 3704191260
Press ~x~ to continue.
Press ~k~~PED_SPRINT~ to continue.
different on pc
MAIN 1518509443
Press and hold ~x~ to shoot the ball. Release ~x~ at the peak of the jump for maximum accuracy.
Press and hold ~k~~PED_SPRINT~ to shoot the ball. Release ~k~~PED_SPRINT~ at the peak of the jump for maximum accuracy.
different on pc
MAIN 763735317
You must return to the court to continue playing basketball or press ~t~ to quit out.
You must return to the court to continue playing basketball or press ~k~~VEHICLE_ENTER_EXIT~ to quit out.
different on pc
MAIN 719874316
Stand near the ball, and CJ will automatically pick it up.~N~Press ~t~ to quit out of basketball.
Stand near the ball, and CJ will automatically pick it up.~N~Press ~k~~VEHICLE_ENTER_EXIT~ to quit out of basketball.
different on pc
MAIN 3126293661
Press ~x~ to pick up the ball.
Press ~k~~PED_SPRINT~ to pick up the ball.
different on pc
MAIN 3444589579
Press ~C~ to start the challenge mode.
Press ~k~~PED_LOOKBEHIND~ to start the challenge mode.
different on pc
MAIN 3789100840
~q~ Increase Wager~N~~o~ Decrease Wager~N~~x~ Proceed~N~~t~ Quit
~k~~PED_JUMPING~ Increase Wager~N~~k~~PED_FIREWEAPON~ Decrease Wager~N~~k~~PED_SPRINT~ Proceed~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 2026915474
~o~ Hit~N~~x~ Stick~N~~t~ Quit~N~~q~ Double
~k~~PED_FIREWEAPON~ Hit~N~~k~~PED_SPRINT~ Stick~N~~k~~PED_JUMPING~ Double~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 265778692
~o~ Hit~N~~x~ Stick~N~~t~ Quit~N~~q~ Double~N~~V~ Split
~k~~PED_FIREWEAPON~ Hit~N~~k~~PED_SPRINT~ Stick~N~~k~~PED_JUMPING~ Double~N~~k~~PED_CYCLE_WEAPON_RIGHT~ Split~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 2444485543
Press ~x~ to continue.
Press ~k~~PED_SPRINT~ to continue.
different on pc
MAIN 3870610225
~o~ Hit~N~~x~ Stick~N~~t~ Quit
~k~~PED_FIREWEAPON~ Hit~N~~k~~PED_SPRINT~ Stick~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 2088478801
To lift the dumbbells alternate between pressing ~x~ and ~o~~n~This will increase your power.
To lift the dumbbells alternate between pressing ~k~~PED_SPRINT~ and ~k~~PED_FIREWEAPON~.~n~This will increase your power.
different on pc
MAIN 192714951
~w~To lift the weight alternate between pressing ~x~ and ~o~~n~This will increase your power.
~w~To lift the weight alternate between pressing ~k~~PED_SPRINT~ and ~k~~PED_FIREWEAPON~.~n~This will increase your power.
different on pc
MAIN 3663305635
Press ~x~ rapidly to begin to pedal.
Press ~k~~PED_SPRINT~ rapidly to begin to pedal.
different on pc
MAIN 2908662581
To change the level press ~<~ or ~>~.
To change the level press ~k~~CONVERSATION_NO~ or ~k~~CONVERSATION_YES~.
different on pc
MAIN 878181007
To begin to run press ~x~ rapidly to run.
To begin running, press ~k~~PED_SPRINT~ rapidly.
different on pc
MAIN 1129368089
To change the level press ~<~ or ~>~ while on the treadmill.
To change the level press ~k~~CONVERSATION_NO~ or ~k~~CONVERSATION_YES~ while on the treadmill.
different on pc
MAIN 3711197114
To change the incline press ~U~ or ~D~ while on the treadmill.
To change the incline press ~k~~GROUP_CONTROL_FWD~ or ~k~~GROUP_CONTROL_BWD~ while on the treadmill.
different on pc
MAIN 3899652385
Push the ~h~left analog stick~w~ up or down to select level.~N~~X~ Select~N~~T~ Quit
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select level.~N~~k~~PED_SPRINT~ Select~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 2255747318
Push the ~H~left analog stick~W~ up or down to select a weight.~N~~X~ Select~N~~T~ Quit
Use ~k~~GO_FORWARD~ and ~k~~GO_BACK~ to select a weight.~N~~k~~PED_SPRINT~ Select~N~~k~~VEHICLE_ENTER_EXIT~ Quit
different on pc
MAIN 1753061850
Press ~<~ to answer 'NO' or press ~>~ to answer 'YES'.
Press ~k~~CONVERSATION_NO~ to answer 'NO' or press ~k~~CONVERSATION_YES~ to answer 'YES'.
different on pc
MAIN 636398939
To do a drive-by, first look left or right using ~M~ or ~V~
To do a drive-by, first look left or right using ~k~~VEHICLE_LOOKLEFT~ or ~k~~VEHICLE_LOOKRIGHT~
different on pc
MAIN 4009554489
Press ~t~ to apply the vehicle's handbrake.
Press ~k~~VEHICLE_HANDBRAKE~ to apply the vehicle's handbrake.
different on pc
MAIN 58083195
Press ~x~ to accelerate.
Press ~k~~VEHICLE_ACCELERATE~ to accelerate.
different on pc
MAIN 45362508
Press ~q~ to brake, or to reverse if the bike has stopped.
Press ~k~~VEHICLE_BRAKE~ to brake, or to reverse if the bike has stopped.
different on pc
MAIN 3169320161
Then fire using ~o~ OR ~K~
Then fire using ~k~~PED_FIREWEAPON~.
different on pc
MAIN 3420507255
Then fire using ~J~
Then fire using ~k~~PED_LOCK_TARGET~.
different on pc
MAIN 1901291352
Press ~C~ to toggle taxi missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle taxi missions on or off.
different on pc
MAIN 2903956257
Press ~q~ to toggle taxi missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle taxi missions on or off.
different on pc
MAIN 2489022016
Press ~C~ to toggle freight train missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle freight train missions on or off.
different on pc
MAIN 223487994
Press ~q~ to toggle fire freight train missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle freight train missions on or off.
different on pc
MAIN 1062061256
Press ~C~ to toggle fire truck missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle fire truck missions on or off.
different on pc
MAIN 1566004934
Press ~q~ to toggle fire truck missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle fire truck missions on or off.
different on pc
MAIN 1870681467
Press ~C~ to toggle Vigilante missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle Vigilante missions on or off.
different on pc
MAIN 258963809
Press ~q~ to toggle Vigilante missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle Vigilante missions on or off.
different on pc
MAIN 4025964766
Press ~q~ to toggle Paramedic missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle Paramedic missions on or off.
different on pc
MAIN 806429551
Press ~q~ to toggle Burglary missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle Burglary missions on or off.
different on pc
MAIN 2836951765
Press ~C~ to toggle Burglary missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle Burglary missions on or off.
different on pc
MAIN 2421546932
Press ~C~ to toggle pimping missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle pimping missions on or off.
different on pc
MAIN 157060622
Press ~q~ to toggle pimping missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle pimping missions on or off.
different on pc
MAIN 15897365
Press the ~J~ to apply the vehicle's back brake.
Press ~k~~VEHICLE_HANDBRAKE~ to apply the vehicle's back brake.
different on pc
MAIN 1889036186
Press ~K~ to apply the vehicle's back brake.
Press ~k~~VEHICLE_HANDBRAKE~ to apply the vehicle's back brake.
different on pc
MAIN 2727414201
Press ~K~ to jump on the bike.
Press ~k~~VEHICLE_ENTER_EXIT~ to jump on the bike.
different on pc
MAIN 718125725
Press ~K~ to exit a vehicle.
Press ~k~~VEHICLE_ENTER_EXIT~ to exit a vehicle.
different on pc
MAIN 3583392047
Push up or down on the ~h~left analog stick~w~, to shift your weight on the bike.
Push ~k~~VEHICLE_STEERUP~ and ~k~~VEHICLE_STEERDOWN~, to shift your weight on the bike.
different on pc
MAIN 579037506
Push left or right on the ~h~left analog stick~w~ to steer the vehicle.
Use ~k~~VEHICLE_STEERLEFT~ and ~k~~VEHICLE_STEERRIGHT~ to steer the vehicle.
different on pc
MAIN 3146397944
Push left or right on the ~h~left analog stick~w~ to steer the vehicle.
Use ~k~~VEHICLE_STEERLEFT~ and ~k~~VEHICLE_STEERRIGHT~ to steer the vehicle.
different on pc
MAIN 2597826536
Press ~U~ or ~D~ to change the camera mode.
Press ~k~~GROUP_CONTROL_FWD~ or ~k~~GROUP_CONTROL_BWD~ to change the camera mode.
different on pc
MAIN 2646240241
Press ~M~ or ~V~ to cycle through your available weapons.
Press ~k~~PED_CYCLE_WEAPON_LEFT~ or ~k~~PED_CYCLE_WEAPON_RIGHT~ to cycle through your available weapons.
different on pc
MAIN 1022729242
Press ~t~ to jump on the bike.
Press ~k~~VEHICLE_ENTER_EXIT~ to jump on the bike.
different on pc
MAIN 1703685210
Press ~t~ to exit a vehicle.
Press ~k~~VEHICLE_ENTER_EXIT~ to exit a vehicle.
different on pc
MAIN 1931260916
Push the right analog stick up to ~h~accelerate.
Push ~k~~VEHICLE_ACCELERATE~ to ~h~accelerate.
different on pc
MAIN 1927207363
Pull the right analog stick back to brake, or to reverse if the vehicle has stopped.
Use ~k~~VEHICLE_BRAKE~ to brake, or to reverse if the vehicle has stopped.
different on pc
MAIN 58119365
Move right analog stick up or down to move the winch close to a vehicle. ~N~Press ~O~ to release.
Use ~k~~VEHICLE_TURRETUP~ and ~k~~VEHICLE_TURRETDOWN~ to move the winch close to a vehicle. ~N~Press ~k~~PED_FIREWEAPON~ to release.
different on pc
MAIN 602907928
Use the ~H~left analog stick~W~ to move Carl.
Use ~k~~GO_FORWARD~, ~k~~GO_BACK~, ~k~~GO_LEFT~ and ~k~~GO_RIGHT~ to move Carl.
different on pc
MAIN 2101453121
To reply negatively press ~<~~n~To reply positively press ~>~
To reply negatively press ~k~~CONVERSATION_NO~~n~To reply positively press ~k~~CONVERSATION_YES~
different on pc
MAIN 3989872510
Press the ~h~SELECT~w~ button to change camera views. Push the ~h~left analog stick~w~ up or down to raise and lower the game camera.
Press ~k~~CAMERA_CHANGE_VIEW_ALL_SITUATIONS~ to change camera views. Use the mouse or right analog stick to raise and lower the game camera.
different on pc
MAIN 2519940923
Press ~K~ to view stats. This shows CJ's current condition. Whenever a stat changes it will appear at the top left of the screen.
Press ~k~~PED_ANSWER_PHONE~ to view stats. This shows CJ's current condition. Whenever a stat changes it will appear at the top left of the screen.
different on pc
MAIN 600616764
To pedal hold down ~X~
To pedal hold down ~k~~VEHICLE_ACCELERATE~.
different on pc
MAIN 1403411379
To pedal the bike faster repeatedly tap ~X~
To pedal the bike faster repeatedly tap ~k~~VEHICLE_ACCELERATE~.
different on pc
MAIN 1603897566
Press ~J~ to target and ~o~ to perform a melee attack.
Press ~k~~PED_FIREWEAPON~ to perform a melee attack.
different on pc
MAIN 2389635422
Use the ~h~left analog stick ~w~to move around in the water.
Use the movement controls to move around in the water.
different on pc
MAIN 4184457672
Tap ~X~ when swimming forwards to swim faster.
Tap ~k~~PED_SPRINT~ when swimming forwards to swim faster.
different on pc
MAIN 4261676497
Press ~O~ to dive underwater.
Press ~k~~PED_FIREWEAPON~ to dive underwater.
different on pc
MAIN 1728926827
Hold down ~X~ and use the ~h~left analog stick ~w~to swim around underwater.
Hold down ~k~~PED_SPRINT~ to swim around underwater.
different on pc
MAIN 575206512
Press ~C~ to toggle Paramedic missions on or off.
Press ~k~~TOGGLE_SUBMISSIONS~ to toggle Paramedic missions on or off.
different on pc
MAIN 3121130343
~t~ Hold to quit.
~k~~VEHICLE_ENTER_EXIT~ Hold to quit.
different on pc
MAIN 32236601
Press ~T~ to use this machine.
Press ~k~~VEHICLE_ENTER_EXIT~ to use this machine.
different on pc
MAIN 109453344
Press ~T~ to begin exercising.