This repository has been archived by the owner on Dec 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpersistent_player_data_version_231.pdef
1515 lines (1338 loc) · 29.8 KB
/
persistent_player_data_version_231.pdef
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
int initializedVersion
int announcementVersionSeen
int xp
int previousXP
int credits
int xp_match[20]
int xp_count[20]
int netWorth
bool matchWin
bool matchScoreEvent
bool matchComplete
bool matchSquadBonus
bool showGameSummary
bool regenShowNew
bool spawnAsTitan
bool haveSeenCustomCoop
bool factionGiftsFixed
bool isACheater
bool spendDoubleColiseumTickets
int privateMatchState
int playlistShuffle_seed
bool playlistShuffle_seedFlip
int playlistShuffle_curIndex
// we don't use titanClasses for this because it doesn't contain an entry that would equal null/none
string{16} lastFDTitanRef
int lastFDDifficulty
bool ultimateEdition
//#############################
// LISTS OF THINGS IN THE GAME
//#############################
//All game modes in the game, including riffs.
$ENUM_START gameModes
tdm
cp
at
ctf
lts
ps
ffa
coliseum
aitdm
speedball
mfd
ttdm
fra
fd
$ENUM_END
// enum used for stats. mp_box and mp_test_engagement_range are
// in this list so I can test stat tracking in those maps
// add new maps to the bottom of this list...DO NOT CHANGE ORDER!!
$ENUM_START maps
mp_box
mp_test_engagement_range
// R2
mp_forwardbase_kodai
mp_grave
mp_homestead
mp_thaw
mp_black_water_canal
mp_eden
mp_drydock
mp_crashsite3
mp_complex3
mp_coliseum
// R2 DLC
mp_angel_city
mp_colony02
mp_relic02
mp_glitch
mp_lf_stacks
mp_lf_meadow
mp_lf_deck
mp_lf_traffic
mp_lf_township
mp_lf_uma
mp_coliseum_column
mp_wargames
mp_rise
$ENUM_END
$ENUM_START loadoutWeaponsAndAbilities
NULL
melee_pilot_emptyhanded
melee_pilot_sword
melee_titan_sword
melee_titan_sword_aoe
mp_ability_cloak
mp_ability_grapple
mp_ability_heal
mp_ability_holopilot
mp_ability_phase_rewind
mp_ability_shifter
mp_titanability_ammo_swap
mp_titanability_basic_block
mp_titanability_gun_shield
mp_titanability_hover
mp_titanability_laser_trip
mp_titanability_particle_wall
mp_titanability_phase_dash
mp_titanability_power_shot
mp_titanability_slow_trap
mp_titanability_smoke
mp_titanability_sonar_pulse
mp_titanability_tether_trap
mp_titanability_rearm
mp_titancore_flame_wave
mp_titancore_flight_core
mp_titancore_laser_cannon
mp_titancore_salvo_core
mp_titancore_shift_core
mp_titancore_siege_mode
mp_titancore_upgrade
mp_titanweapon_40mm
mp_titanweapon_arc_wave
mp_titanweapon_flame_wall
mp_titanweapon_heat_shield
mp_titanweapon_homing_rockets
mp_titanweapon_dumbfire_rockets
mp_titanweapon_laser_lite
mp_titanweapon_leadwall
mp_titanweapon_meteor
mp_titanweapon_particle_accelerator
mp_titanweapon_predator_cannon
mp_titanweapon_rocket_launcher
mp_titanweapon_rocketeer_rocketstream
mp_titanweapon_salvo_rockets
mp_titanweapon_sniper
mp_titanweapon_sticky_40mm
mp_titanweapon_stun_laser
mp_titanweapon_tracker_rockets
mp_titanweapon_vortex_shield
mp_titanweapon_vortex_shield_ion
mp_titanweapon_xo16
mp_titanweapon_xo16_shorty
mp_titanweapon_xo16_vanguard
mp_weapon_alternator_smg
mp_weapon_arc_launcher
mp_weapon_autopistol
mp_weapon_car
mp_weapon_defender
mp_weapon_deployable_cover
mp_weapon_dmr
mp_weapon_doubletake
mp_weapon_epg
mp_weapon_esaw
mp_weapon_frag_drone
mp_weapon_frag_grenade
mp_weapon_g2
mp_weapon_grenade_electric_smoke
mp_weapon_grenade_emp
mp_weapon_grenade_gravity
mp_weapon_grenade_sonar
mp_weapon_hemlok
mp_weapon_hemlok_smg
mp_weapon_lmg
mp_weapon_lstar
mp_weapon_mastiff
mp_weapon_mgl
mp_weapon_pulse_lmg
mp_weapon_r97
mp_weapon_rocket_launcher
mp_weapon_rspn101
mp_weapon_rspn101_og
mp_weapon_satchel
mp_weapon_semipistol
mp_weapon_shotgun
mp_weapon_shotgun_pistol
mp_weapon_smart_pistol
mp_weapon_smr
mp_weapon_sniper
mp_weapon_softball
mp_weapon_thermite_grenade
mp_weapon_vinson
mp_weapon_wingman
mp_weapon_wingman_n
melee_titan_punch_ion
melee_titan_punch_legion
melee_titan_punch_northstar
melee_titan_punch_scorch
melee_titan_punch_tone
melee_titan_punch_vanguard
$ENUM_END
$ENUM_START pilotMod
NULL
aog
automatic_fire
burn_mod_rspn101
burn_mod_g2
burn_mod_hemlok
burn_mod_vinson
burn_mod_lstar
burn_mod_car
burn_mod_r97
burn_mod_alternator_smg
burn_mod_lmg
burn_mod_esaw
burn_mod_pulse_lmg
burn_mod_sniper
burn_mod_dmr
burn_mod_doubletake
burn_mod_mastiff
burn_mod_shotgun
burn_mod_softball
burn_mod_shotgun_pistol
burn_mod_autopistol
burn_mod_wingman
burn_mod_semipistol
burn_mod_smart_pistol
burn_mod_emp_grenade
burn_mod_frag_grenade
burn_mod_satchel
burn_mod_proximity_mine
burn_mod_grenade_electric_smoke
burn_mod_grenade_gravity
burn_mod_thermite_grenade
burn_mod_defender
burn_mod_rocket_launcher
burn_mod_arc_launcher
burn_mod_smr
burn_mod_mgl
burst
enhanced_targeting
extended_ammo
fast_lock
fast_reload
guided_missile
hcog
high_density
holosight
iron_sights
long_fuse
powered_magnets
scope_4x
scope_6x
scope_8x
scope_10x
scope_12x
silencer
sniper_assist
stabilizer
single_shot
slammer
stabilized_warhead
tank_buster
amped_wall
short_shift
burn_mod_epg
ricochet
ar_trajectory
redline_sight
threat_scope
smart_lock
pro_screen
delayed_shot
pas_run_and_gun
tactical_cdr_on_kill
pas_fast_ads
pas_fast_swap
pas_fast_reload
jump_kit
quick_charge
rocket_arena
$ENUM_END
$ENUM_START titanClasses
ion
scorch
ronin
tone
northstar
legion
vanguard
$ENUM_END
$ENUM_START titanMod
NULL
accelerator
afterburners
arc_triple_threat
burn_mod_titan_40mm
burn_mod_titan_arc_cannon
burn_mod_titan_sniper
burn_mod_titan_triple_threat
burn_mod_titan_xo16
burn_mod_titan_dumbfire_rockets
burn_mod_titan_homing_rockets
burn_mod_titan_salvo_rockets
burn_mod_titan_shoulder_rockets
burn_mod_titan_vortex_shield
burn_mod_titan_smoke
burn_mod_titan_particle_wall
burst
capacitor
extended_ammo
fast_lock
fast_reload
instant_shot
overcharge
quick_shot
rapid_fire_missiles
stryder_sniper
$ENUM_END
$ENUM_START pilotPassive
NULL
pas_stealth_movement
pas_ordnance_pack
pas_power_cell
pas_wallhang
pas_fast_health_regen
pas_minimap_ai
pas_longer_bubble
pas_run_and_gun
pas_dead_mans_trigger
pas_wall_runner
pas_fast_hack
pas_cloaked_wallrun
pas_cloaked_wallhang
pas_smoke_sight
pas_fast_embark
pas_cdr_on_kill
pas_at_hunter
pas_ordnance_beam
pas_fast_rodeo
pas_phase_eject
pas_ads_hover
pas_enemy_death_icons
pas_off_the_grid
$ENUM_END
$ENUM_START pilotSuit
medium
geist
stalker
light
heavy
grapple
nomad
$ENUM_END
$ENUM_START pilotRace
race_human_male
race_human_female
$ENUM_END
$ENUM_START pilotExecution
execution_neck_snap
execution_face_stab
execution_backshot
execution_combo
execution_knockout
execution_telefrag
execution_stim
execution_grapple
execution_pulseblade
execution_random
execution_cloak
execution_holopilot
execution_ampedwall
$ENUM_END
$ENUM_START titanExecution
execution_ion
execution_ion_prime
execution_tone
execution_tone_prime
execution_ronin
execution_ronin_prime
execution_northstar
execution_northstar_prime
execution_legion
execution_legion_prime
execution_vanguard
execution_scorch
execution_scorch_prime
execution_random_0
execution_random_1
execution_random_2
execution_random_3
execution_random_4
execution_random_5
execution_random_6
$ENUM_END
$ENUM_START titanPassive
NULL
pas_enhanced_titan_ai
pas_auto_eject
pas_dash_recharge
pas_defensive_core
pas_shield_regen
pas_assault_reactor
pas_hyper_core
pas_anti_rodeo
pas_build_up_nuclear_core
pas_offensive_autoload
pas_offensive_hitnrun
pas_offensive_regen
pas_defensive_tacload
pas_defensive_quickdash
pas_defensive_domeshield
pas_mobility_dash_capacity
pas_warpfall
pas_bubbleshield
pas_ronin_weapon
pas_northstar_weapon
pas_ion_weapon
pas_tone_weapon
pas_scorch_weapon
pas_legion_weapon
pas_ion_tripwire
pas_ion_vortex
pas_ion_lasercannon
pas_tone_rockets
pas_tone_sonar
pas_tone_wall
pas_ronin_arcwave
pas_ronin_phase
pas_ronin_swordcore
pas_northstar_cluster
pas_northstar_trap
pas_northstar_flightcore
pas_scorch_firewall
pas_scorch_shield
pas_scorch_selfdmg
pas_legion_spinup
pas_legion_gunshield
pas_legion_smartcore
pas_ion_weapon_ads
pas_tone_burst
pas_legion_chargeshot
pas_ronin_autoshift
pas_northstar_optics
pas_scorch_flamecore
pas_vanguard_coremeter
pas_vanguard_shield
pas_vanguard_rearm
pas_vanguard_doom
pas_vanguard_core1
pas_vanguard_core2
pas_vanguard_core3
pas_vanguard_core4
pas_vanguard_core5
pas_vanguard_core6
pas_vanguard_core7
pas_vanguard_core8
pas_vanguard_core9
$ENUM_END
$ENUM_START titanIsPrimeTitan //Really should be bool, but script for loadouts is not easily set up to handle bools unfortunately...
titan_is_not_prime
titan_is_prime
$ENUM_END
$ENUM_START faction
faction_apex
faction_64
faction_vinson
faction_marauder
faction_aces
faction_ares
faction_marvin
$ENUM_END
// This entire thing is legacy support for a DLC7 menu bug
$ENUM_START ownedEntitlements
ET_DLC7_WEAPON_BUNDLE // BUNDLE MUST BE FIRST!!!!
ET_DLC7_R201_WARPAINT
ET_DLC7_G2A5_WARPAINT
ET_DLC7_FLATLINE_WARPAINT
ET_DLC7_CAR_WARPAINT
ET_DLC7_ALTERNATOR_WARPAINT
ET_DLC7_EVA8_WARPAINT
ET_DLC7_WINGMAN_WARPAINT
ET_DLC7_ARCHER_WARPAINT
$ENUM_END
//######################
// LOADOUTS
//######################
$STRUCT_START spawnLoadout
int index
$STRUCT_END
$STRUCT_START pilotLoadout
string{42} name
pilotSuit suit
pilotRace race
pilotExecution execution
loadoutWeaponsAndAbilities primary
pilotMod primaryAttachment
pilotMod primaryMod1
pilotMod primaryMod2
pilotMod primaryMod3
loadoutWeaponsAndAbilities secondary
pilotMod secondaryMod1
pilotMod secondaryMod2
pilotMod secondaryMod3
loadoutWeaponsAndAbilities weapon3
pilotMod weapon3Mod1
pilotMod weapon3Mod2
pilotMod weapon3Mod3
loadoutWeaponsAndAbilities ordnance
pilotPassive passive1
pilotPassive passive2
int skinIndex
int camoIndex
int primarySkinIndex
int primaryCamoIndex
int secondarySkinIndex
int secondaryCamoIndex
int weapon3SkinIndex
int weapon3CamoIndex
$STRUCT_END
$STRUCT_START titanLoadout
string{42} name // TODO: No need for this in persistent data any more
titanClasses titanClass
titanMod primaryMod
loadoutWeaponsAndAbilities special
loadoutWeaponsAndAbilities antirodeo
titanPassive passive1
titanPassive passive2
titanPassive passive3
titanPassive passive4
titanPassive passive5
titanPassive passive6
titanExecution titanExecution
int skinIndex
int camoIndex
int decalIndex
int primarySkinIndex
int primaryCamoIndex
titanIsPrimeTitan isPrime //Really should be bool, but script for loadouts is not easily set up to handle bools unfortunately...
int primeSkinIndex
int primeCamoIndex
int primeDecalIndex
int showArmBadge
$STRUCT_END
$STRUCT_START recentUnlock
int refGuid
int parentRefGuid
int count
$STRUCT_END
int randomColiseumUnlocks
int randomPlayerLevelUnlocks
int randomTitanLevelUnlocks[titanClasses]
int randomWeaponLevelUnlocks[loadoutWeaponsAndAbilities]
int randomFactionLevelUnlocks[faction]
int doubleXP
int coliseumTickets
int coliseumWinStreak
int coliseumBestStreak
int coliseumTotalWins
int coliseumTotalLosses
recentUnlock recentUnlocks[10]
bool hasBeenIntroducedToComms
int lastCommsUseDate
int numTimesUsedComms
bool custom_emoji_initialized
int custom_emoji[4]
int burnmeterSlot
$STRUCT_START pveData
int version
int currency
int currencyInLatestMatch
int tacticalUnlocks[6]
int feathersForMap[maps]
$STRUCT_END
pveData pve
faction factionChoice
faction enemyFaction
bool persistentRewards[32]
int consumableRewards[32]
spawnLoadout pilotSpawnLoadout
spawnLoadout titanSpawnLoadout
pilotLoadout activePilotLoadout
titanLoadout activeTitanLoadout
int activeTitanLoadoutIndex
pilotLoadout pilotLoadouts[10]
titanLoadout titanLoadouts[10]
bool pinTrackedEntitlements[ownedEntitlements]
bool newPinTrackedEntitlements[ownedEntitlements]
$ENUM_START unlockRefs
edit_pilots // these two must come first
edit_titans
pilot_custom_loadout_1
pilot_custom_loadout_2
pilot_custom_loadout_3
pilot_custom_loadout_4
pilot_custom_loadout_5
titan_custom_loadout_1
titan_custom_loadout_2
titan_custom_loadout_3
titan_custom_loadout_4
titan_custom_loadout_5
burn_card_slot_1
burn_card_slot_2
burn_card_slot_3
burn_card_pack_1
burn_card_pack_2
burn_card_pack_3
burn_card_pack_4
burn_card_pack_5
challenges
$ENUM_END
//######################
// BURN CARDS
//######################
$ENUM_START burnCard
NULL
bc_conscription
bc_double_xp
bc_free_xp
bc_fast_cooldown1
bc_fast_cooldown2
bc_super_stim
bc_super_cloak
bc_super_sonar
bc_summon_ogre
bc_cloak_forever
bc_stim_forever
bc_sonar_forever
bc_summon_stryder
bc_spectre_virus
bc_play_spectre
bc_double_agent
bc_minimap
bc_summon_atlas
bc_megaturrets
bc_summon_dogfighter
bc_wifi_spectre_hack
bc_nuclear_core
bc_core_charged
bc_smart_pistol_m2
bc_r97_m2
bc_rspn101_m2
bc_dmr_m2
bc_shotgun_m2
bc_lmg_m2
bc_g2_m2
bc_car_m2
bc_hemlok_m2
bc_sniper_m2
bc_smr_m2
bc_mgl_m2
bc_defender_m2
bc_rocket_launcher_m2
bc_semipistol_m2
bc_autopistol_m2
bc_wingman_m2
bc_satchel_m2
bc_frag_m2
bc_arc_m2
bc_prox_m2
bc_pilot_warning
bc_rematch
bc_minimap_scan
bc_free_build_time_1
bc_free_build_time_2
bc_fast_build_1
bc_fast_build_2
bc_hunt_soldier
bc_hunt_spectre
bc_hunt_titan
bc_hunt_pilot
bc_auto_sonar
bc_fast_movespeed
bc_auto_refill
bc_dice_ondeath
bc_titan_40mm_m2
bc_titan_arc_cannon_m2
bc_titan_rocket_launcher_m2
bc_titan_sniper_m2
bc_titan_triple_threat_m2
bc_titan_xo16_m2
bc_titan_dumbfire_missile_m2
bc_titan_homing_rockets_m2
bc_titan_salvo_rockets_m2
bc_titan_shoulder_rockets_m2
bc_titan_vortex_shield_m2
bc_titan_electric_smoke_m2
bc_titan_shield_wall_m2
bc_titan_melee_m2
bc_extra_dash
bc_lstar_m2
bc_mastiff_m2
bc_vinson_m2
$ENUM_END
$STRUCT_START struct_activeBurnCardData
burnCard cardRef
burnCard lastCardRef
bool clearOnStart // player has used this match long burn card
$STRUCT_END
$STRUCT_START struct_historyBurnCardData
int collected
int spent
$STRUCT_END
$STRUCT_START struct_blackMarketBurnCardUpgrades
burnCard cardRef
$STRUCT_END
int activeBCID
int activeCallingCardIndex
int activeCallsignIconIndex
int activeCallsignIconStyleIndex
int gen // as in, what generation player?
//#########################
// Faction XP
//#########################
int factionXP[faction]
int previousFactionXP[faction]
//#########################
// Titan XP
//#########################
int titanXP[titanClasses]
int previousTitanXP[titanClasses]
int fdTitanXP[titanClasses]
int fdPreviousTitanXP[titanClasses]
int titanFDUnlockPoints[titanClasses]
int previousFDUnlockPoints[titanClasses]
int fd_match[20]
int fd_count[20]
int titanClassLockState[titanClasses]
int fdTutorialBits
int fdPlaylistBits
//################################################
// CHAD'S STAT TRACKING STUFF - DON'T MESS WIT IT
//################################################
$STRUCT_START sMapStats
int gamesJoined[gameModes]
int gamesCompleted[gameModes]
int gamesWon[gameModes]
int gamesLost[gameModes]
int topPlayerOnTeam[gameModes]
int top3OnTeam[gameModes]
float hoursPlayed[gameModes]
int timesScored100AttritionPoints_byMap
int winsByDifficulty[5]
int matchesByDifficulty[5]
int perfectMatchesByDifficulty[5]
$STRUCT_END
$STRUCT_START sGameStats
int modesPlayed[gameModes]
int previousModesPlayed[gameModes]
int modesWon[gameModes]
int mvp_total
int gamesCompletedTotal
int gamesWonTotal
int gamesWonAsIMC
int gamesWonAsMilitia
int gamesCompletedAsIMC
int gamesCompletedAsMilitia
int pvpKills[gameModes]
int timesKillDeathRatio2to1[gameModes]
int timesKillDeathRatio2to1_pvp[gameModes]
int timesScored100AttritionPoints_total
$STRUCT_END
$STRUCT_START sHoursPlayed
float total
float asTitan[titanClasses]
float asPilot
float asTitanTotal
float dead
float wallhanging
float wallrunning
float inAir
$STRUCT_END
$STRUCT_START sMilesTraveled
float total
float asTitan[titanClasses]
float asPilot
float asTitanTotal
float wallrunning
float inAir
float ziplining
float onFriendlyTitan
float onEnemyTitan
$STRUCT_END
$STRUCT_START sWeaponStats
float hoursUsed
float hoursEquipped
int shotsFired
int shotsHit
int headshots
int critHits
int titanDamage
$STRUCT_END
$STRUCT_START sWeaponKillStats
int total
int pilots
int ejecting_pilots
int spectres
int marvins
int grunts
int ai
int titansTotal
int titans[titanClasses]
int npcTitans[titanClasses]
int assistsTotal
int killingSprees
$STRUCT_END
$STRUCT_START sKillStats
int total
int totalWhileUsingBurnCard
int titansWhileTitanBCActive
int totalPVP
int pilots
int spectres
int marvins
int grunts
int totalTitans
int totalTitansWhileDoomed
int totalPilots
int totalNPC
int asPilot
int asTitan[titanClasses]
int firstStrikes
int ejectingPilots
int whileEjecting
int cloakedPilots
int whileCloaked
int wallrunningPilots
int whileWallrunning
int wallhangingPilots
int whileWallhanging
int pilotExecution
int pilotExecutePilot
int pilotExecutePilotByType[pilotExecution]
int pilotKickMelee
int pilotKickMeleePilot
int titanMelee
int titanMeleePilot
int titanStepCrush
int titanStepCrushPilot
int titanExocutionIon
int titanExocutionScorch
int titanExocutionNorthstar
int titanExocutionRonin
int titanExocutionTone
int titanExocutionLegion
int titanExocutionVanguard
int titanFallKill
int petTitanKillsFollowMode
int petTitanKillsGuardMode
int rodeo_total
int rodeo_stryder
int rodeo_buddy
int rodeo_atlas
int rodeo_ogre
int pilot_headshots_total
int evacShips
int flyers
int nuclearCore
int evacuatingEnemies
int exportTrapKills
int coopChallenge_NukeTitan_Kills
int coopChallenge_MortarTitan_Kills
int coopChallenge_EmpTitan_Kills
int coopChallenge_BubbleShieldGrunt_Kills
int coopChallenge_CloakDrone_Kills
int coopChallenge_Dropship_Kills
int coopChallenge_SuicideSpectre_Kills
int coopChallenge_Turret_Kills
int coopChallenge_Sniper_Kills
int ampedVortexKills
int meleeWhileCloaked
int pilotKillsWhileUsingActiveRadarPulse
int titanKillsAsPilot
int pilotKillsWhileStimActive
int pilotKillsAsTitan
int totalAssists
int killingSprees[titanClasses]
int pilotKillsAsPilot
int titanKillsAsTitan
int telefragKils
int grappleKills
int throughAWallKills
int distractedKills
int pilotExecutePilotWhileCloaked
int pilotKillsWithHoloPilotActive
int pilotKillsWithAmpedWallActive
$STRUCT_END
$STRUCT_START sDeathStats
int total
int totalPVP
int asPilot
int asTitan[titanClasses]
int byPilots
int bySpectres
int byGrunts
int byTitans[titanClasses]
int byNPCTitans[titanClasses]
int suicides
int whileEjecting
$STRUCT_END
$STRUCT_START sMiscStats
int titanFalls
int titanFallsFirst
int titanEmbarks
int rodeos
int rodeosFromEject
int timesEjected
int timesEjectedNuclear
int burnCardsEarned
int burnCardsSpent
int boostsActivated
int spectreLeeches
int spectreLeechesByMap[maps]
int evacsAttempted
int evacsSurvived
int flagsCaptured
int flagsReturned
int arcCannonMultiKills
int gruntsConscripted
int hardpointsCaptured
int challengeTiersCompleted
int challengesCompleted
int dailyChallengesCompleted
int timesLastTitanRemaining
int killingSprees
int coopChallengesCompleted
int forgedCertificationsUsed
int regenForgedCertificationsUsed
$STRUCT_END
$STRUCT_START sFDStats
int arcMinesPlaced
int turretsPlaced
int rodeos
int rodeoNukes
int arcMineZaps
int turretKills
int harvesterBoosts
int wavesComplete