-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdatabase.bin.txt
6659 lines (6658 loc) · 162 KB
/
database.bin.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
identity_quaternion:quaternion
default_Gravity:vector
default_timestep:number
radian_to_degrees:number
null_string:string
dont_fix_orient:truth
torso_vertical_orient:quaternion
legs_vertical_orient:quaternion
subdir:Entity
foundancester:truth
PLAYER_NODE:Entity
GENERAL_CUTSCENEPLAYING:truth
LAST_DYNAMIC_SOUNDENTITY:Entity
GENERAL_NONSHOOTING_ENEMY:truth
DEFAULT_VEHICLE_OFFSET:number
EMPTY_STRING:string
DB_ANIMDICT:Entity
NODE_DISABLE:integer
NODE_DYNAMIC:integer
NODE_INVISIBLE:integer
NODE_COLL_DISABLE:integer
NODE_FRAGMENT_UNLOADED:integer
NODE_PURGENAMES:integer
COLL_NONE:integer
COLL_SOLID:integer
COLL_BULLETPROOF:integer
COLL_OPAQUE:integer
COLL_CAMERABLOCK:integer
COLL_TRIGGER:integer
COLL_NAVIGATIONBLOCK:integer
COLL_PHYSICSONLY:integer
COLL_ACTIVATE_TRIGGER:integer
COLL_ALL:integer
BIT1:integer
BIT2:integer
BIT3:integer
BIT4:integer
BIT5:integer
BIT6:integer
BIT7:integer
BIT8:integer
BIT9:integer
BIT10:integer
BIT11:integer
BIT12:integer
BIT13:integer
GOD_MODE_LIMIT:number
MAX_TIME_ZONES:integer
PIVOT_NORMAL:integer
PIVOT_FREEFALL:integer
PIVOT_ABSOLUTE:integer
PIVOT_SLIDE:integer
PIVOT_TAKEOFF:integer
PIVOT_DEFAULT:integer
BASE_TYPES_MAX_NUM:integer
CHARACTER_TYPES_MAX_NUM:integer
ANIMAL_SUB_TYPES_MAX_NUM:integer
TARGET_DUMMY_SUB_TYPES_MAX_NUM:integer
CAMERA_SUB_TYPES_MAX_NUM:integer
OBJECT_SUB_TYPES_MAX_NUM:integer
PLACEHOLDER_SUB_TYPES_MAX_NUM:integer
PLACEHOLDER_PRIORITIES_MAX_NUM:integer
RESOURCE_TYPES_MAX_NUM:integer
MOD_TYPES_MAX_NUM:integer
NUM_STATISTICS_MENU_ENTRIES:integer
NUM_STATISTICS_SKILL_ENTRIES:integer
CHARACTER_ANIMATION_TYPES_MAX_NUM:integer
WEAPON_CLASSES_MAX_NUM:integer
WEAPON_SUB_TYPES_MAX_NUM:integer
MELEE_WEAPON_TYPES_MAX_NUM:integer
MOUNTED_WEAPON_SUB_TYPES_MAX_NUM:integer
SHELL_SUB_TYPES_MAX_NUM:integer
WEAPON_AMMO_TYPES_MAX_NUM:integer
WEAPON_FLASH_TYPES_MAX_NUM:integer
SUB_BULLET:integer
BRACKET_MODELS_MAX_NUM:integer
NUM_OF_RELOAD_SYSTEM_TYPES:integer
NUM_OF_SHOOTDODGE_SYSTEM_TYPES:integer
NUM_OF_HEADAIM_TYPES:integer
NUM_OF_ZEN_MODE_TYPES:integer
NUM_OF_CONTROL_TYPES:integer
GOODIE_TYPES_MAX_NUM:integer
POWER_UP_TYPES_MAX_NUM:integer
TRACK_TYPES_MAX_NUM:integer
VEHICLE_SUB_TYPES_MAX_NUM:integer
VEHICLE_CONFIGURAION_NODES_MAX_NUM:integer
VEHICLE_ENGINE_TYPES_MAX_NUM:integer
VEHICLE_POSES_MAX_NUM:integer
COMBO_STRINGS_MAX_NUM:integer
COMBO_MOVES_MAX_NUM:integer
COMBO_ENEMY_STATE_MAX_NUM:integer
NormalKillColor:vector
ExplosionKillColor:vector
VehicleKillColor:vector
UniqueKillColor:vector
RaceBonusColor:vector
OverallBonusColor:vector
MAX_SUB_MOVE_CTRLS:integer
DECALS_MAX_NUM:integer
PARTICLE_EFFECTS_MAX_NUM:integer
SOUND_BACKGROUNDMUSIC_MAX_NUM:integer
GENERAL_AND_PLAYER_SOUND_EFFECTS_MAX_NUM:integer
UNIQUE_COMBO_MOVE_SOUNDS_MAX_NUM:integer
BULLET_SOUND_EFFECTS_MAX_NUM:integer
MAX_MISSION_TAUNTS:integer
MAX_SUB_MISSION_TAUNTS:integer
MAX_RANDOM_TAUNTS:integer
COMBO_MUSIC_MAX_NUM:integer
VEHICLE_SOUNDS_MAX_NUM:integer
VEHICLE_ENGINE_SOUNDS_MAX_NUM:integer
DEST_OBJECTS_SOUND_DICTS_MAX_NUM:integer
DEST_OBJECT_SOUNDS_MAX_NUM:integer
WEAPON_SOUNDS_MAX_NUM:integer
SHELL_SOUNDS_MAX_NUM:integer
TARGET_ANY:integer
FACTION_MODIFIED_INDEX:integer
FACTION_MAX:integer
RELATION_ANY:integer
PHYSIC_TYPES_MAX_NUM:integer
WEAPON_ANIM_TYPES_MAX_NUM:integer
RELOAD_ANIM_TYPES_MAX_NUM:integer
CLOSE_COMBAT_MAX_MOVES:integer
JUMP_SUB_TYPES_MAX_NUM:integer
TAKE_A_HIT_AIRBORNE_POSITIONS_MAX_NUM:integer
TAKE_A_HIT_AIRBORNE_STATES_MAX_NUM:integer
TAKE_A_HIT_POSITIONS_MAX_POS:integer
TAKE_A_HIT_TYPES_MAX_NUM:integer
JUMP_STATES_MAX_NUM:integer
ANIMATION_IDLE_POSES_MAX_NUM:integer
ANIMATION_PLAYER_IDLE_POSES_MAX_NUM:integer
ANIMATION_FACIALS_MAX_NUM:integer
RUMBLE_TYPES_MAX_NUM:integer
CTRL_BONE_INDEX_MAX_NUM:integer
PROP_TYPES_MAX_NUM:integer
HUD_MENU_OPTIONS_MAX_NUM:integer
MENU_LIST_NUMBER_MAX_NUM:integer
HUD_SCORE_BAR_MAX_NUM:integer
BLIP_TYPES_MAX_NUM:integer
HUD_MAINMENU_GFX_TYPES_MAX_NUM:integer
TUTORIAL_MENU_MAX_NUM:integer
TUTORIAL_ENTRIES_MAX_NUM:integer
SPECIFIC_MISSION_LAST_MAIN_MISSION:integer
SPECIFIC_MISSION_MAX_NUM:integer
AWARD_TYPE_MAX_NUM:integer
PLAYER_INPUT_ACTIONS_MAX_NUM:integer
KEYSTRING_INDEX_MAX_NUM:integer
MODEL_CHARACTER_MAX_NUM:integer
MODEL_WEAR_MAX_NUM:integer
LOADING_BLOCK_ID_MAX:integer
MAPS_MAX:integer
SUBMAPS_MAX:integer
LOCATIONS_MAX_NUM:integer
NEIGHBORHOODS_MAX:integer
NEIGHBORHOOD_SUPMAPS_INDEX:integer
CHARACTER_TYPES_MAX:integer
PEDESTRIAN_TYPES_MAX:integer
PEDESTRIAN_WEAPON_TYPES_MAX:integer
PEDESTRIAN_WEAR_TYPES_MAX:integer
PEDESTRIAN_DISCUSSION_TYPES_MAX:integer
PEDESTRIAN_CHILL_WALL_TYPES_MAX:integer
PEDESTRIAN_PANIC_TYPES_MAX:integer
PEDESTRIAN_INTEREST_POINT_TYPES_MAX:integer
RELEASE_CHEATS_MAX_NUM:integer
SIZE_STANDARD_ODPS2_FONT:vector
SIZE_LARGE_ODPS2_FONT:vector
SPACING_STANDARD_ODPS2_FONT:number
config_nr:integer
Sub_Type:integer
UsableByPlayer:truth
StoppedByAI:truth
Resource:Entity
AICtrl:Entity
Base_Type:integer
civil_driver:Entity
InputKey_RUN:integer
InputKey_RUN_BACKWARDS:integer
InputKey_JUMP:integer
InputKey_CROUCH:integer
InputKey_USE:integer
InputKey_USE_VEHICLE:integer
InputKey_RELOAD:integer
InputKey_AIM_DOWN:integer
InputKey_AIM_RIGHT:integer
InputKey_AIM_UP:integer
InputKey_AIM_LEFT:integer
InputKey_DO_EXIT_STUNT:integer
InputKey_PREPARE_EXIT_STUNT:integer
InputKey_USE_POWER_UP:integer
InputKey_REWIND:integer
InputKey_SELECT_HAND_GUNS:integer
InputKey_SELECT_RIFLES:integer
InputKey_SELECT_SHOTGUNS:integer
InputKey_SELECT_SMGS:integer
InputKey_SELECT_AUTOMATICS:integer
InputKey_SELECT_LAUNCHERS:integer
InputKey_SELECT_EXPLOSIVES:integer
InputKey_SELECT_MELEE:integer
InputKey_ACCELERATE:integer
InputKey_DECELERATE:integer
InputKey_BRAKE:integer
InputKey_SLIDE:integer
InputKey_VEHICLE_TURN_RIGHT:integer
InputKey_VEHICLE_TURN_LEFT:integer
InputKey_FREEZE_TIME:integer
InputKey_CHANGE_POWER_UP_LEFT:integer
InputKey_CHANGE_POWER_UP_RIGHT:integer
InputKey_MENU_UP:integer
InputKey_MENU_DOWN:integer
InputKey_MENU_LEFT:integer
InputKey_MENU_RIGHT:integer
InputKey_MENU_BACK:integer
InputKey_MENU_SELECT:integer
InputKey_MENU_CANCEL:integer
InputKey_MENU_SHOW:integer
InputKey_MENU_DELETE:integer
InputKey_SHOOTDODGE:integer
InputKey_SHOOT:integer
InputKey_HEADSHOT:integer
InputKey_CHANGE_WEAPON_UP:integer
InputKey_CHANGE_WEAPON_DOWN:integer
InputKey_VEHICLE_OPR_UP:integer
InputKey_VEHICLE_OPR_DOWN:integer
InputKey_VEHICLE_WHEELIE:integer
InputKey_VEHICLE_EFFECT:integer
InputKey_GAME_PAUSE:integer
SCREEN_SIZE_X:number
SCREEN_SIZE_Y:number
SCREEN_HALF_SIZE_X:number
SCREEN_HALF_SIZE_Y:number
BORDER_PERCENTAGE:number
BORDER_X:number
BORDER_Y:number
TRUE_SCREEN_SIZE_X:number
TRUE_SCREEN_SIZE_Y:number
PLATFORM:integer
CONTROL_TYPE:integer
PROPERTY_AICTRL:integer
PROPERTY_DESTROYABLE_OBJECT:integer
PROPERTY_LIFTABLE:integer
PROPERTY_BONECTRL:integer
PROPERTY_AIType:integer
PROPERTY_MOVETYPE:integer
PROPERTY_HEALTH:integer
PROPERTY_TARGETCTRL:integer
PROPERTY_BASE_TYPE:integer
PROPERTY_WORLDPOS:integer
PROPERTY_SUB_TYPE:integer
PROPERTY_MoveCtrlType:integer
PROPERTY_MOVECTRL:integer
PROPERTY_ANIMATION_TYPE:integer
PROPERTY_DOOR_OPEN_SOUND:integer
PROPERTY_ANIMATION:integer
PROPERTY_TRIGGERLIST:integer
PROPERTY_RESOURCE:integer
PROPERTY_RESOURCETYPE:integer
PROPERTY_ACTUALRESOURCETYPE:integer
PROPERTY_OPACITY:integer
PROPERTY_CAM_SUB_TYPE:integer
PROPERTY_ACTIVE_TEXTURE_SET:integer
PROPERTY_WEAPONCTRL:integer
PROPERTY_TELEPORTTO:integer
PROPERTY_TARGETNAME:integer
PROPERTY_WEAPONCLASS:integer
PROPERTY_SHADOWRADIUS:integer
PROPERTY_MOVIE:integer
PROPERTY_ACT_ON_INSIDE:integer
PROPERTY_IS_VEHICLE:integer
PROPERTY_PROP_WEAR_SUB_TYPE:integer
PROPERTY_SPECIFIC_ID:integer
PROPERTY_TARGET_SPEED:integer
PROPERTY_IS_HERE_DIST:integer
PROPERTY_COLLISION_FLAGS:integer
PROPERTY_DYNAMICALLY_LIT:integer
PROPERTY_BLOCK_ID:integer
PROPERTY_FACTION_ID:integer
PROPERTY_ACTIVATOR_TYPE:integer
PROPERTY_LOOP_TRACK:integer
PROPERTY_MARCO_DIST:integer
PROPERTY_CAMERA_CTRL:integer
PROPERTY_DEFAULT_CAMERA_PIVOT:integer
PROPERTY_MISSION:integer
PROPERTY_TRIG_AMOUNT:integer
PROPERTY_CAMERA_ACTION:integer
PROPERTY_COLLISIONPIVOT:integer
PROPERTY_FACTIONID:integer
PROPERTY_TRAFICBLOCKER:integer
PROPERTY_PATHTYPE:integer
PROPERTY_ACTIVE:integer
PROPERTY_ENABLE3D:integer
PROPERTY_HASUSECONDITION:integer
PROPERTY_REACTIVATE:integer
PROPERTY_TRAFFIC_MAX_DENSITY:integer
PROPERTY_TRAFFIC_CURRENT_DENSITY:integer
PROPERTY_HASUSEVEHICLECONDITION:integer
PROPERTY_SPATIALBLOCKEDTIME:integer
PROPERTY_RANDOM_SOUNDS:integer
PROPERTY_SOLO_PIVOT:integer
PROPERTY_IS_POOL_WATER:integer
PROPERTY_COLLECT_ID:integer
PROPERTY_PHYSIC_CTRL:integer
PROPERTY_ALWAYS_GLUE_TO:integer
PROPERTY_ACTION_TYPE:integer
PROPERTY_PLACEHOLDER:integer
PROPERTY_TRIG_COUNTER:integer
PROPERTY_STOPFORPLAYER:integer
PROPERTY_PASSENGER_SEAT:integer
PROPERTY_LADDER_PIVOT:integer
PROPERTY_DAMAGEMOD:integer
PROPERTY_REFNODE:integer
PROPERTY_SIGNINDEX:integer
PROPERTY_STORE_BONE_CONTROL:integer
PROPERTY_STORECOMMANDACTIVATE:integer
MESSAGE_ID_COMMAND_WALK:integer
MESSAGE_ID_COMMAND_RUN:integer
MESSAGE_ID_COMMAND_SPRINT:integer
MESSAGE_ID_PATH_ENDED:integer
MESSAGE_ID_PATH_END:integer
MESSAGE_ID_AT_LAST_POINT:integer
MESSAGE_ID_AT_FIRST_POINT:integer
MESSAGE_ID_AT_POINT:integer
MESSAGE_ID_FIN:integer
MESSAGE_ID_HALF_FIN:integer
MESSAGE_ID_FIN_LOOK:integer
MESSAGE_ID_BL_FIN:integer
MESSAGE_ID_AL_FIN:integer
MESSAGE_ID_WIRE_END_INTO:integer
MESSAGE_ID_WIRE_END_OUTOF:integer
MESSAGE_ID_CUTSCENE_SOUND_PLAYED:integer
MESSAGE_ID_MISSION_SOUND_PLAYED:integer
MESSAGE_ID_FINISH_EVENT:integer
MESSAGE_ID_SKIDDING_FINISHED:integer
MESSAGE_ID_VEHICLESOUNDSTOPPED:integer
MESSAGE_ID_COMBO_ALL_DONE:integer
MESSAGE_ID_TRACK_FINISHED:integer
MESSAGE_ID_COMBO1FINISHED:integer
MESSAGE_ID_COMBO2FINISHED:integer
MESSAGE_ID_COMBO4FINISHED:integer
MESSAGE_ID_FINISH_AREA:integer
MESSAGE_ID_SPEAK_PLAYED:integer
MESSAGE_ID_PLAYER_SPEAK_PLAYED:integer
MESSAGE_ID_CUTSCENE_FINISHED:integer
MESSAGE_ID_VIDEO_ALLOCATE_FINISHED:integer
MASTER_CTRL:Entity
PLAYER_NODE_AICTRL:Entity
GLOBAL_MISSION_CONTROL:Entity
CAMERA_NODE:Entity
HUD:Entity
COMBO_CTRL:Entity
TARGET_DB:Entity
FACTION_DB:Entity
TIMESTAMP:Entity
TARGET_SYSTEM:Entity
TARGET_VISIBILITY_CTRL:Entity
TIME_CTRL:Entity
SHARED_SOUND_EMITTER:Entity
SHARED_SOUND_EMITTER_2:Entity
PEDESTRIAN_SYSTEM:Entity
TRAFFIC_SYSTEM:Entity
TAXI_CTRL:Entity
MATERIAL_INTERACTION:Entity
GFX_CTRL:Entity
WIND_CTRL:Entity
MASTER_CTRL_PROPERTIES:Entity
LOOP_SOUND_EMITTERS:Entity
LIGHT_EMITTERS:Entity
PLAYER_STATUS:Entity
RESOURCE_CENTER:Entity
RESOURCES:Entity
COLLISION_CTRL:Entity
MASTER_BULLET_DROP:Entity
DEATH_POSE_PLACEHOLDERS:Entity
MEMORYCARD_NODE:Entity
GLOBAL_FOG_CTRL:Entity
GLOBAL_BLEED_CTRL:Entity
MENU_TEXTSLOT:Entity
KEYBOARD_TEXTSLOT:Entity
HUD_TEXTSLOT:Entity
MISC_TEXTSLOT:Entity
MISSION_TEXTSLOT:Entity
TUTORIAL_TEXTSLOT:Entity
TUTORIAL_MENU_TEXTSLOT:Entity
OBJ_TEXTSLOT:Entity
CREDITS_TEXTSLOT:Entity
TOPSHUTTER:Entity
BOTTOMSHUTTER:Entity
SUBTITLE_HUD:Entity
CONTROLLER_CTRL:Entity
SESSION_LOG:Entity
OBJ_DEMONODE:Entity
TUTORIAL_CTRL:Entity
UBERBLACKSCREEN:Entity
DB_COMBOMOVEDICT:Entity
DB_UNIQUECOMBOMOVESDICT:Entity
DB_COMBOENEMYSTATEDICT:Entity
DB_COMBOMISCSTRINGDICT:Entity
DB_COMBOAWARDDICT:Entity
DB_CHARACTERDICT:Entity
DB_CONTROLDICT:Entity
DB_WEAPONDICT:Entity
DB_MOUNTEDWEAPONDICT:Entity
DB_TRACKDICT:Entity
DB_SOUNDDICT:Entity
DB_GOODIESDICT:Entity
DB_TEXTUREDICT:Entity
DB_CAMERADICT:Entity
DB_PARTICLEDICT:Entity
DB_DECALDICT:Entity
DB_AMBIENTSOUNDDICT:Entity
DB_HAVOCDICT:Entity
DB_PHYSICDICT:Entity
DB_MODELDICT:Entity
DB_MISSIONDICT:Entity
DB_MODIFYDICT:Entity
DB_AWARDDICT:Entity
DB_MODELSTAT:Entity
DB_CUTSCENE:Entity
DB_LOADSCREENDICT:Entity
DB_RAM_STUFF:Entity
DB_TIMECTRLDICT:Entity
DB_MEMORYDICT:Entity
DB_STRINGDICT:Entity
DB_ZAP_DICT:Entity
DB_SETTINGS_NODE:Entity
DB_COMBOMOVEDICT_LIST:list(Entity)
DB_COMBOENEMYSTATE_LIST:list(Entity)
DB_COMBOMISCSTRING_LIST:list(Entity)
DB_CHARACTERDICT_LIST:list(Entity)
DB_CONTROLDICT_LIST:list(Entity)
DB_INPUTCONTROL_LIST:list(Entity)
DB_KEYSTRING_TO_LOCALIZATION_INDEX_DICT:dict(integer)
DB_KEY_INDEX_TO_KEYSTRING_LIST:list(string)
DB_WEAPONDICT_LIST:list(Entity)
DB_MOUNTEDWEAPONDICT_LIST:list(Entity)
DB_ANIMDICT_LIST:list(Entity)
DB_ANIMATION_IDLES_LIST:list(Entity)
DB_LONG_IDLES_LIST:list(Entity)
DB_RELOADANIM_LIST:list(Entity)
DB_TRACKDICT_LIST:list(Entity)
DB_SOUNDDICT_LIST:list(Entity)
DB_TEXTUREDICT_LIST:list(Entity)
DB_NUMBER_SPRITES_LIST:list(Entity)
DB_CAMERADICT_LIST:list(Entity)
DB_STRUCTUREDICT_LIST:list(Entity)
DB_VEHICLEDICT_LIST:list(Entity)
DB_PARTICLEDICT_LIST:list(Entity)
DB_DECALDICT_LIST:list(Entity)
DB_SOUND_UNARMED_COMBATDICT_LIST:list(Entity)
DB_BULLETSOUNDDICT_LIST:list(Entity)
DB_COMBOMUSICDICT_LIST:list(Entity)
DB_VEHICLESOUNDDICT_LIST:list(Entity)
DB_DESTROYABLE_OBJECTS_SOUNDDICT_LIST:list(list(Entity))
DB_WEAPONSOUNDDICT_LIST:list(list(Entity))
DB_SHELLSOUNDDICT_LIST:list(Entity)
DB_VEHICLE_ENGINESOUNDDICT_LIST:list(list(Entity))
DB_VEHICLE_ENGINELOOP_LIST:list(number)
DB_HAVOCDICT_LIST:list(Entity)
DB_MODELDICT_CHARACTER_LIST:list(Entity)
DB_MODELDICT_WEAPON_LIST:list(Entity)
DB_MODELDICT_MELEE_WEAPON_LIST:list(Entity)
DB_MODELDICT_WEAPON_FLASH_LIST:list(Entity)
DB_MODELDICT_GOODIE_LIST:list(Entity)
DB_MODELDICT_SHELL_LIST:list(Entity)
DB_MODELDICT_VEHICLE_LIST:list(Entity)
DB_MODELDICT_VEHICLE_BACKUP_LIST:list(Entity)
DB_MODELDICT_WEAR_LIST:list(Entity)
DB_MODELDICT_DESTRUCTABLE_OBJECT_LIST:list(Entity)
DB_MODELDICT_ANIMAL_LIST:list(Entity)
DB_MODELDICT_AIM_BRACKET_LIST:list(Entity)
DB_MISSIONDICT_LIST:list(Entity)
DB_MODIFYDICT_LIST:list(Entity)
DB_PHYSICDICT_LIST:list(Entity)
DB_AWARDDICT_LIST:list(Entity)
DB_MAP_LIST:list(Entity)
DB_SUBMAP_LIST:list(Entity)
DB_PLAYER_BLOCK_LIST:list(Entity)
DB_DAMAGEMOD_LIST:list(Entity)
DB_MODELSTAT_LIST:list(Entity)
DB_SOUND_RANDOM_TAUNTS_LIST:list(Entity)
DB_SOUND_SUB_RANDOM_TAUNTS_LIST:list(Entity)
DB_SOUND_POWER_TAUNTS_LIST:list(Entity)
DB_SOUND_ENEMY_FRENZYING_LIST:list(Entity)
DB_SOUND_VIRGILLO_GIVING_ORDER_LIST:list(Entity)
DB_SOUND_VIRGILLO_REPLYING_LIST:list(Entity)
DB_SOUND_VIRGILLO_SPOTTING_RAM_LIST:list(Entity)
DB_SOUND_MORALEZ_GIVING_ORDER_LIST:list(Entity)
DB_SOUND_MORALEZ_REPLYING_LIST:list(Entity)
DB_SOUND_MORALEZ_SPOTTING_RAM_LIST:list(Entity)
DB_SOUND_MILITARY_GIVING_ORDER_LIST:list(Entity)
DB_SOUND_MILITARY_REPLYING_LIST:list(Entity)
DB_SOUND_MILITARY_SPOTTING_RAM_LIST:list(Entity)
DB_SOUND_DEA_GIVING_ORDER_LIST:list(Entity)
DB_SOUND_DEA_REPLYING_LIST:list(Entity)
DB_SOUND_DEA_SPOTTING_RAM_LIST:list(Entity)
DB_SOUND_BIKINIBABE_GIVING_ORDER_LIST:list(Entity)
DB_SOUND_BIKINIBABE_REPLYING_LIST:list(Entity)
DB_SOUND_BIKINIBABE_SPOTTING_RAM_LIST:list(Entity)
DB_SOUND_ENEMY_MAN_DYING:list(Entity)
DB_SOUND_ENEMY_WOMAN_DYING:list(Entity)
DB_SOUND_PASSENGER_STEALCAR:list(Entity)
DB_SOUND_PASSENGER_DAMAGED:list(Entity)
DB_SOUND_PASSENGER_PANIC:list(Entity)
DB_SOUND_CAR_HORNS_LIST:list(Entity)
DB_SOUND_MALE_DISCUSSION_LIST:list(Entity)
DB_SOUND_MALE_INTEREST_LIST:list(Entity)
DB_SOUND_MALE_LAUGHING_LIST:list(Entity)
DB_SOUND_MALE_WALKAROUND_LIST:list(Entity)
DB_SOUND_MALE_PHONETALK_LIST:list(Entity)
DB_SOUND_MALE_PANIC_LIST:list(Entity)
DB_SOUND_FEMALE_DISCUSSION_LIST:list(Entity)
DB_SOUND_FEMALE_INTEREST_LIST:list(Entity)
DB_SOUND_FEMALE_LAUGHING_LIST:list(Entity)
DB_SOUND_FEMALE_WALKAROUND_LIST:list(Entity)
DB_SOUND_FEMALE_PHONETALK_LIST:list(Entity)
DB_SOUND_FEMALE_PANIC_LIST:list(Entity)
DB_SOUND_UNIQUE_MOVES:list(Entity)
DB_SOUND_GENERIC_MOVES:list(Entity)
DB_DEFAULT_VEHICLE_PLACEHOLDERS:list(Entity)
DB_DEFAULT_PEDESTRIAN_PLACEHOLDERS:list(Entity)
DB_CLOSE_COMBAT_MOVES_LIST:list(Entity)
DB_VEHICLE_POSES_LIST:list(Entity)
DB_FORKLIFT_VEHICLE_POSES_LIST:list(Entity)
DB_TRUCK_VEHICLE_POSES_LIST:list(Entity)
DB_JUMP_ANIMS:list(list(Entity))
DB_DEATH_FLY_ANIMS:list(list(Entity))
DB_TAKE_A_HIT_ANIMS:list(list(Entity))
DB_PEDESTRIAN_GROUP_LIST:list(Entity)
DB_CHARACTER_TYPE_LIST:list(Entity)
DB_FACIAL_ANIMATION_LIST:list(Entity)
DB_ZAP_DICT_LIST:list(Entity)
GLOBAL_WEAPON_LIST_NODE:Entity
GLOBAL_WEAPON_LIST:list(Entity)
GLOBAL_SHELL_LIST_NODE:Entity
GLOBAL_SHELL_LIST:list(Entity)
GLOBAL_PROP_LIST:list(Entity)
GLOBAL_DIRECTIONAL_LIGHT:Entity
GLOBAL_AMBIENT_LIGHT:Entity
GLOBAL_INSIDE_FOG_TRIGGER_COUNT:integer
GLOBAL_INSIDE_COLOR_TRIGGER_COUNT:integer
GLOBAL_INSIDE_CAMERA_SHAKE_COUNT:integer
WEAPON_SPRITE_LIST:list(Entity)
DUAL_WEAPON_SPRITE_LIST:list(Entity)
MELEE_WEAPON_SPRITE_LIST:list(Entity)
AMMO_SPRITE_LIST:list(Entity)
GOODIE_SPRITE_LIST:list(Entity)
POWERUP_SPRITE_LIST:list(Entity)
DB_VIGNETTE_TEXTURES:list(Entity)
DB_NOISE_TEXTURES:list(Entity)
next_vehicle_placeholder:integer
last_selected_vehicle_model:integer
LOWER_WORLD_BOUND:number
Vehicle_toggle_fx_sounds:list(Entity)
VEHICLE_GIB_DAMAGE_LEVEL:number
PLAYER_SPEED_MULT:number
ENEMY_SPEED_MULT:number
PLATFORM_TUTORIAL_INDEX_DELTA:integer
Current_Area_node:Entity
Vehicle_sound_slot:Entity
ComboMusicLevel:integer
BackgroundMusicEntity:Entity
BackgroundMusicList:list(Entity)
Global_Allow_Combo_to_stop_Music:truth
resume_area_after_load_name:string
resume_area_after_load_parent_name:string
default_Gore_level:integer
default_Allow_Vibration:truth
default_Difficulty_level:integer
default_Allow_Subtitles:truth
default_InvertX:truth
default_InvertY:truth
default_autosave:truth
default_Weap_Autoswitch:truth
default_fx_volume:number
default_ambience_volume:number
default_music_volume:number
default_speaks_volume:number
default_PC_Screen_Size:integer
default_PC_LOD_Setting:number
default_PC_MouseSensitivity_Setting:number
default_InputKey_RUN:integer
default_InputKey_RUN_BACKWARDS:integer
default_InputKey_JUMP:integer
default_InputKey_CROUCH:integer
default_InputKey_USE:integer
default_InputKey_USE_VEHICLE:integer
default_InputKey_RELOAD:integer
default_InputKey_AIM_DOWN:integer
default_InputKey_AIM_RIGHT:integer
default_InputKey_AIM_UP:integer
default_InputKey_AIM_LEFT:integer
default_InputKey_DO_EXIT_STUNT:integer
default_InputKey_PREPARE_EXIT_STUNT:integer
default_InputKey_USE_POWER_UP:integer
default_InputKey_REWIND:integer
default_InputKey_SELECT_HAND_GUNS:integer
default_InputKey_SELECT_RIFLES:integer
default_InputKey_SELECT_SHOTGUNS:integer
default_InputKey_SELECT_SMGS:integer
default_InputKey_SELECT_AUTOMATICS:integer
default_InputKey_SELECT_LAUNCHERS:integer
default_InputKey_SELECT_EXPLOSIVES:integer
default_InputKey_SELECT_MELEE:integer
default_InputKey_ACCELERATE:integer
default_InputKey_DECELERATE:integer
default_InputKey_BRAKE:integer
default_InputKey_SLIDE:integer
default_InputKey_VEHICLE_TURN_RIGHT:integer
default_InputKey_VEHICLE_TURN_LEFT:integer
default_InputKey_FREEZE_TIME:integer
default_InputKey_CHANGE_POWER_UP_LEFT:integer
default_InputKey_CHANGE_POWER_UP_RIGHT:integer
default_InputKey_MENU_UP:integer
default_InputKey_MENU_DOWN:integer
default_InputKey_MENU_LEFT:integer
default_InputKey_MENU_RIGHT:integer
default_InputKey_MENU_BACK:integer
default_InputKey_MENU_SELECT:integer
default_InputKey_MENU_CANCEL:integer
default_InputKey_MENU_SHOW:integer
default_InputKey_MENU_DELETE:integer
default_InputKey_SHOOTDODGE:integer
default_InputKey_SHOOT:integer
default_InputKey_HEADSHOT:integer
default_InputKey_CHANGE_WEAPON_UP:integer
default_InputKey_CHANGE_WEAPON_DOWN:integer
default_InputKey_GAME_PAUSE:integer
default_InputKey_VEHICLE_OPR_UP:integer
default_InputKey_VEHICLE_OPR_DOWN:integer
default_InputKey_VEHICLE_WHEELIE:integer
default_InputKey_VEHICLE_EFFECT:integer
anim_walk_pr_type:list(Entity)
anim_idle_stand_pr_type:list(Entity)
anim_idle_stand:Entity
anim_idle_crouch:Entity
anim_idle_stand_weapon:Entity
anim_idle_crouch_weapon:Entity
anim_walk:Entity
anim_run:Entity
anim_run_lean_left:Entity
anim_run_lean_right:Entity
anim_run_land:Entity
anim_sprint:Entity
anim_run_backwards:Entity
anim_strafe_left:Entity
anim_strafe_right:Entity
anim_alerted_back:Entity
anim_alerted_front_gather:Entity
anim_alerted_front_reload:Entity
anim_get_up_face_up:Entity
anim_get_up_face_down:Entity
anim_action_break_point_left:Entity
anim_action_break_summonwave:Entity
anim_shoot_dodge_jump:list(Entity)
anim_shoot_dodge_midair:list(Entity)
anim_shoot_dodge_land:list(Entity)
anim_shoot_dodge_panic:list(Entity)
anim_ram_loco_move:Entity
anim_ram_move_idle:Entity
anim_ram_move_run:Entity
anim_ram_move_run_lean_left:Entity
anim_ram_move_run_lean_right:Entity
anim_ram_move_run_hit_front:list(Entity)
anim_ram_move_run_hit_left:list(Entity)
anim_ram_move_run_hit_right:list(Entity)
anim_ram_sombrero_move_aim:Entity
anim_ram_sombrero_move_throw:Entity
anim_grab_hat:Entity
anim_smoking:Entity
anim_smoking_coughing:Entity
anim_smoking_draft:Entity
anim_smoking_lighting:Entity
anim_smoking_putout:Entity
anim_discussion:list(Entity)
anim_chill_back:Entity
anim_chill_left:Entity
anim_chill_Right:Entity
anim_climb_up:Entity
anim_exit_up:Entity
anim_enter_down:Entity
anim_slide:Entity
anim_slide_stop:Entity
anim_wire_glide:Entity
anim_wire_lift:Entity
anim_wire_lift_into:Entity
anim_wire_lift_outof:Entity
anim_stand_grenade:Entity
anim_slidestop_leftfoot:Entity
anim_slidestop_rightfoot:Entity
anim_obstacle_climb_up:Entity
anim_wall_vault_left:Entity
anim_wall_vault_right:Entity
anim_wall_vault_front_left_jump:Entity
anim_wall_vault_front_left_midair:Entity
anim_wall_vault_front_right_jump:Entity
anim_wall_vault_front_right_midair:Entity
anim_aim:list(Entity)
anim_shoot:list(Entity)
anim_bike_enter:Entity
anim_bike_exit:Entity
anim_bike_prepare_stunt:Entity
anim_bike_turn:list(Entity)
anim_bike_lean_sides:list(Entity)
anim_bike_lean_forward_back:list(Entity)
anim_bike_backend_and_frontend:list(Entity)
anim_bike_in_air:Entity
anim_bike_pushback:Entity
anim_bike_throttle:Entity
anim_bike_idle:Entity
anim_bike_cancel_stunt:Entity
anim_sit_relax:Entity
anim_sit_forward:Entity
anim_sedan_passenger:Entity
anim_Vehicle_enter_left:Entity
anim_Vehicle_enter_right:Entity
anim_Vehicle_exit_left:Entity
anim_Vehicle_exit_right:Entity
anim_after_jump_pose:Entity
sound_marco_squeel01:Entity
sound_marco_squeel02:Entity
sound_marco_squeel03:Entity
bullet_model_realtime:Entity
bullet_model_slowdown:Entity
model_phone_handle:Entity
FADING_UBERBLACK_SCREEN:truth
MENU_IS_ACTIVE:truth
WorldTime:number
TIME_CTRL_DesiredMultiplier:number
TIME_CTRL_DeltaChange:number
TIME_CTRL_TimeToUse:number
TIME_CTRL_ExplosionSize:number
TIME_CTRL_ExclusiveMode:truth
TIME_CTRL_UseMotionBlur:truth
TIME_CTRL_slide_slow_illegal:truth
time_since_start:integer
Setting_effects:number
Setting_ambiance:number
Setting_music:number
Setting_speak:number
Setting_Gore:integer
Setting_difficulty:integer
Setting_Allow_subtitles:truth
Setting_Allow_vibration:truth
Setting_autosave:truth
Setting_invertX:truth
Setting_invertY:truth
Setting_Weap_Autoswitch:truth
Setting_ScreenSize:integer
Setting_PCLod:number
Setting_PCMouseSensitivity:number
AllowActivate:truth
TargetEntity:Entity
ActivateWho:integer
TargetName:string
ActionType:integer
ActionList:list(Entity)
Reactivate:truth
SoundEntity:Entity
AmbientSoundCtrl:Entity
APBonus:integer
ComboInputCtrl:Entity
Activated:truth
Actor:Entity
CurrentAnimSlot:Entity
MAIN_NODE:Entity
Smoke_Start:number
SingleEmitter:Entity
loopEmitter:Entity
WheelsEmitter:Entity
CollisionEmitter:Entity
LoopPlaceholder:Entity
SoundDict:Entity
BrakeSound:Entity
PeelSound:Entity
ExplosionSound:Entity
Sound_Brakes:Entity
Sound_Asphalt_loop:Entity
Sound_ignition:Entity
Sound_Cardoor_open:Entity
Sound_Cardoor_close:Entity
EngineStarted:truth
Starting_accelerated:truth
DustParticles:Entity
ExhaustParticle:Entity
ExhaustParticle_02:Entity
ExhaustPointUsed:Entity
LeftTireSmoke:Entity
RightTireSmoke:Entity
EngineSmoke:Entity
Flicker_light:Entity
Left_Back_Light_narrow:Entity
Right_Back_Light_narrow:Entity
Left_Back_Light_wide:Entity
Right_Back_Light_wide:Entity
Left_Front_Light_narrow:Entity
Right_Front_Light_narrow:Entity
Left_Front_Light_wide:Entity
Right_Front_Light_wide:Entity
Left_Back_Light:Entity
Right_Back_Light:Entity
Left_Front_Light:Entity
Right_Front_Light:Entity
Left_Front_Glare:Entity
Right_Front_Glare:Entity
LeftTireSmoking:truth
RightTireSmoking:truth
Engine_Smoking:truth
dual_exhaust:truth
exhaust_type:integer
FirstTime:truth
FirstFlight:truth
skidding:truth
local_time_stamp:integer
accel_start_time:integer
dustblowing:truth
braking:truth
hit_Entity:Entity
hit_Impulse:vector
hit_Location:vector
Hit_Normal:vector
m_AICtrl:Entity
m_MoveCtrl:Entity
m_AmbientSound:Entity
m_LocalsoundList:list(Entity)
m_burnout_left_particle:Entity
m_burnout_right_particle:Entity
has_left_back_light:truth
has_right_back_light:truth
has_front_light:truth
lights_on:truth
last_fork_move:truth
last_collision_time_sound:integer
last_collision_time_sfx:integer
in_pause_mode:truth
restart_sound:truth
ParticleDamCtrl:Entity
key_decelerate:truth
Light_Tail_Left:Entity
Light_Tail_Right:Entity
rear_wheel_turn_speed:number
key_slide:truth
Engine_SoundID:integer
sirens:truth
vehicle_node:Entity
RumbleCtrl:Entity
Max_Opacity:number
distance_fade:number
no_backside:truth
default_max_opacity:number
Placeholder:Entity
LoopSoundPlaceholder:Entity
DamageTaken:number
Health:number
Light_Front_Left:Entity
Light_Front_Right:Entity
ControlState:integer
key_accelerate:truth
SUB_CTRL_LIST:list(Entity)
is_cab:truth
control_state:integer
StreamEmitter06:Entity
in_control:truth
CameraCtrl:Entity
DoorCtrl:Entity
TargetCtrl:Entity
TrafficData:Entity
TrafficCollisionProbe:Entity
last_break_time:integer
ground_offset:vector
ActualResourceType:integer
ResourceStatus:integer
Navigator:Entity
SoundCtrl:Entity
InterestPointNode:Entity
MyUseTrigger:Entity
IsVehicle:truth
OldPlaceholder:Entity
WindShield:Entity
CollisionWarning:Entity
Roof_grab_position:Entity
Roof_grabbed:truth
IsResource:truth
not_placeholder:truth
cam_subtype:integer
destroyable_object:truth
current_passenger_sample:Entity
Back_Shadow:Entity
stored_traffic_world_pos:vector
bike_gravity_adjustment:number
trailer:Entity
ProbeUpdateCtrl:Entity
ResourceCtrl:Entity
offset_scale:number
rewind_reset_pos_list:list(vector)
rewind_reset_orient_list:list(quaternion)
number_of_units_to_move:integer
cm_elements:list(Entity)
Player_Flee_time:number
my_Player_Flee_time:integer
SectionStatus:integer
StructureDamMod:number
Take_a_hit_damage:number
Take_a_hit_owner:Entity
Take_a_hit_inflictor:Entity
Take_a_hit_collisionvolume:Entity
Take_a_hit_impulse:vector
Take_a_hit_pos:vector
Take_a_hit_damtype:integer
target_point:vector
target_speed:number
slag_dist:number
last_point:truth
traffic:truth
probe_from_point:vector
probe_to_point:vector
NextPoint:Entity
Road_blocked:truth
key_brake:truth
rolling_res:number
drag_coeff:number
max_engine_force:number
engine_force:number
max_reverse_force:number
reverse_force:number
key_left:truth
key_right:truth
key_left_number:number
key_right_number:number
Wheel_RF:Entity
Navprobe:Entity
ReactOnNavigationBlocks:truth
LookAheadDistance:number
LookAheadRadius:number
AI_Passengers_list:list(s_AIPassenger)
Problem_point_distance:number
Problem_point_half_angle:number
wheel_angle:number
EscapeShootOut:truth
evil:truth
passive:truth
real_brakepower:number
brakepower:number
LeaveAiVehicleWhenBlocked:truth
PrintDebug:truth
Alive:truth
Team:number
Activator:Entity
PreviousActivator:Entity
rotation_angle:number
track_controller:Entity
trackpoint:Entity
track:Entity
speed_multiplier:number
Wheel_RR:Entity
Wheel_LF:Entity
Wheel_LR:Entity
wheelorient:quaternion
damagectrl_active:truth
ExplosionDamage:number
ExplosionRange:number
CollisionDamage:number
Destroyed:truth
ExplosionTimer:integer
freeing_track:truth
GibVehicle:truth
trigger:Entity
trigger_alternative:Entity
Screem_list:list(Entity)
AI_Track:Entity
AI_Track_list:list(Entity)
AI_Track_Current_Index:integer
m_SoundCtrl:Entity
m_Navigator:Entity
last_passenger_whine_time:integer
passenger_exit_time_delay:number
the_collision_pivot:Entity
CurrentPoint:Entity
MoveState:integer
temp_passenger_ignore_node_list:list(Entity)
PhysicCtrl:Entity
dynamic_contact_node:Entity
dynamic_contact_logic_node:Entity
cp:Entity
world_velocity:vector
torso_cs:Entity
car_length:number
Animation:Entity
accelerate_number:number
decelerate_number:number
Physics_02:Entity
Physics_03:Entity
Physics_Driverdoor:Entity
hinge_elements:list(Entity)
InterestPointType:integer
real_mass:number
HasUseCondition:truth
HasUseVehicleCondition:truth
FactionTable:Entity
FactionRelations:list(list(integer))
GoodieCtrl:Entity
InGodMode:truth
SectionIndex:integer