-
Notifications
You must be signed in to change notification settings - Fork 11
/
reg_simulator_stub.txt
1756 lines (1568 loc) · 39.3 KB
/
reg_simulator_stub.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
mName 0x511dfb9
mDescription 0x511dfc3
mVolumes 0x4d81cfe
mAmbienceHistory 0x4226180
mRhythm 0x4226186
mInstrument 0x4226189
mNotePitches 0x4e551ee
mNoteDurations 0x4f7c02d
sPlanetKey 0x56e4a8b
sAvatarSpecies 0x56e4a9b
sGameViewManagerContainer 0x56e361d
sPlanetModelContainer 0x56e361f
sAnimalSpeciesManagerContainer 0x56e3621
sFruitManagerContainer 0x56e3622
sObstacleManagerContainer 0x56e3624
sPlantSpeciesManagerContainer 0x56e3626
sGameInputManagerContainer 0x56e3628
sAStarContainer 0x56e3629
sGameBehaviorManagerContainer 0x56e362b
sGameNounManagerContainer 0x56e362c
sBundleManagerContainer 0x56e362d
sStarManagerContainer 0x56e362f
sGonzagoPhysicsContainer 0x56e3630
sGameModeManagerContainer 0x56e3631
sSimTickerContainer 0x56e3633
sGamePersistenceManagerContainer 0x56e3635
sToolManagerContainer 0x56e3636
sCheatObjectManagerContainer 0x56e3637
sTerraformingManagerContainer 0x56e3639
sGamePlantManagerContainer 0x56e363a
sSpaceGfxContainer 0x56e363c
sCommGraphicsManagerContainer 0x56e363d
sCommManagerContainer 0x56e363f
sLivingUniverseContainer 0x56e3641
sSpaceTradingContainer 0x56e3642
sUIEventLogContainer 0x56e3644
sUITimelineContainer 0x56e3649
sCastingManagerContainer 0x56e364c
sSpeciesRelationshipManagerContainer 0x56e364d
sPlanetImpostorManagerContainer 0x56e3651
sBlobShadowManagerContainer 0x56e3652
sCinematicManagerContainer 0x56e3654
sEventLogCommManagerContainer 0x56e3655
sVignetteManagerContainer 0x56e3656
sNPCCityMusicManagerContainer 0x56e3658
sUIMissionLogContainer 0x56e3659
sAssetDiscoveryManagerContainer 0x74e1ab86
sMissionCardPanelContainer 0x34f5669b
sNanoDroneManagerContainer 0x6ef44f2
sScenarioVehicleTickerContainer 0x6fd969a
sGameEditModeStrategyContainer 0x56e37ca
sCreatureModeStrategyContainer 0x56e37d4
sTribeModeStrategyContainer 0x56e37dd
sCivModeStrategyContainer 0x56e37e7
sAppModeSpaceContainer 0x56e37ee
sTelemetryContainer 0x56e4605
sAppModeEditorBaseContainer 0x56e46cc
mExploreMissionState 0x3852454
mVisitCities 0x3852455
mVisitRadius 0x3852456
mNumVisitedCities 0x3852457
mCityVisitInfosInitialized 0x3852459
mEffectHeight 0x3852460
mNumCitiesToVisit 0x3852461
mExploreType 0x3852462
mCityVisitInfos 0x3852463
mState 0x5268a36e
mpHerd 0xd2afa598
mTimeToHatch 0xf301c18b
mBrokenTimer 0xd301c1ab
mpToHatch 0x5301c42e
mEffectScale 0x7301c22a
mBiosphereMissionState 0x437456f
mInitialTerraformScore 0x686fae9
mInitialNumPlants 0x686fb14
mInitialNumAnimals 0x686fb22
mCurrentBiosphereRow 0x686fd4f
mMaxNumDiseasedCreatures 0x43b48ea
mNumDiseasedKills 0x43b4913
mMaxNumHealthyKills 0x43b491e
mNumHealthyKills 0x43b4928
mCollapseTimer 0x686fd9a
mNextPosition 0x21fc170
mNextVelocity 0x58241ad
mNextOrientation 0x21fc172
mOffsetFromPosition 0x58241c6
mLastTangentialVelocity 0x21fc174
mDestination 0x21fc178
mAtDestination 0x21fc17c
mRotateTowardsDestination 0x5823f78
mOffsetDueToDamage 0x21fc17e
mUFOType 0x21fc17f
mDesiredModelKey 0x3868c14
mDesiredVisible 0x38784a4
mZoomAltitude 0x519c29e
mStartEndPoint 0x53eb2fe
mDestinationPlanet 0x53eb303
mPreviousPlanet 0x5823bff
sDestinationStarKey 0x5823cbd
mNPCFollowUFO 0x53ecd20
mNPCFollowOffset 0x53efa00
mNPCOrbitOffset 0x53ff93c
mNPCZoomOffset 0x5824001
mNPCFlockIndex 0x53ed0f8
mNPCWeapon 0x5823a4c
mNPCGroundWeapon 0x5823a79
mNPCNearAirWeapon 0x5823a7b
mNPCMediumAirWeapon 0x615d246
mNPCFarAirWeapon 0x615d248
mNPCAbductWeapon 0x5823a7d
sNPCHomeStarKey 0x5823afe
mEnergy 0x581e106
mMaxEnergy 0x581e107
mOwnerMission 0x644fb47
mType 0x553a0209
mTribe 0xf53a020a
mbEffectsApplied 0xb53f5257
mPrimaryType 0x41f80ad
mSecondaryType 0x41f80b0
mActivatedPlanets 0x3755020
mKey 0x355fa98
mSolarSystem 0x39d4a3f
mPlayerCanCapture 0x56cfe97
mCurrSubMissionIndex 0x2851967
mSubMissions 0x2851968
mDataRegister_PlanetKeys 0x285196a
mDataRegister_SpeciesIDs 0x285196b
mpPlanetSim 0x35d9760
mpVisiblePlanet 0x4457f99
mParent 0x30d5fd2
mOrbitedPlanetLastKnownPosition 0x37d2e7b
mTimeSinceLastColonyPlaced 0x57a58cf
mPlanetFlags 0x35d5a50
mPlanetKey 0x355f943
mNumSpecializedBehaviorUFOs 0x519a04c
mImpostorModel 0x3742a6e
mEffectScript 0x3742a83
mPlanetScale 0x3741dd7
mStarterWorldID 0x3742ea6
mBucketMaxPopulation[kListening] 0x68c49f8
mBucketMaxPopulation[kConverted] 0x68c49fd
mBucketPopulation[kListening] 0x68c4a01
mBucketPopulation[kConverted] 0x68c4a06
mBucketEmigration[kListening] 0x68c4a09
mBucketEmigration[kConverted] 0x68c4a0d
mBucketImmigration[kListening] 0x68c4a12
mBucketImmigration[kConverted] 0x68c4a15
mClearEverything 0x68c3c35
mAngryCrowdFraction 0x68c3c38
mDancingCrowdFraction 0x68c3c3b
mIndifferentCrowdFraction 0x68c3c3e
mConvertCheckTimer 0x68c3c41
mConvertedTimer 0x68c3c45
mAttackTargetChanged 0x68c3c48
mAttackTarget 0x68c3c4c
mCultureObject 0x68c3c4f
mBadgeMap 0x361b61b
mEventCounts 0x361b697
mStageMap 0x5ee5002
mCurrentBadgeCard 0x63a6ab5
mCurrentBrainLevel 0xb4177e0e
mAvatarNormalizingScale 0x61afd98
mNumFlapsAllowed 0x61afd99
mAbilityMode 0xb4177e0f
mEvolutionPoints 0x7220206f
DEPRECATED_mLearnedAbilities 0xb4177e0d
mLearnedAbilities 0x76b6609
mSelectionGroup 0x2e6e1b0
mFavoredGrasperlikeAppendage 0x2e6e1b1
mGrasperlikeAppendageForBundle 0x5f0d6f3
mSpecializedTool 0x2e6e1b2
mAffectedByRecruiting 0x2e6e1ab
mpOwnerCity 0x2e6e1ad
mpOwnerTribe 0x2e6e1af
mpHitSphere 0x6a814a9
mbDisplayingEvolutionButton 0x54aba85
sCreatureGameData 0x61afc2e
mAllPartsUnlockedColumn 0x66ce337
mType 0x4bfec52
mTimeStamp 0x57a4efc
mpTarget 0x4bfec53
mUserData1 0x4bfec54
mUserData2 0x4bfec55
mUserData3 0x4bfec56
mUserData4 0x4bfec57
mbHasTarget 0x4bfec58
mOriginalTargetPos 0x4bfec59
mpFindMission 0xf4d95c1a
bUnlockedPart 0x54e57b57
mKey 0x3d58bf2
mPosition 0x3d58bf1
mType 0x3e95e04
mTechLevel 0x3d58bf6
name 0x3d58bf4
mFlags 0x3d58bf3
citizenSpeciesKey 0x3d58bf5
mStarterWorldID 0x3d58bf7
empireID 0x3f1389b
lastObservedTime 0x3f1389a
savedGameTimeStamp 0x3f1389c
savedGameVersionMajor 0x3f1389d
savedGameVersionMinor 0x3f1389e
planetCount 0x51a1188
mInventoryItems 0x21ffbe8
mpGameDataOwner 0x240e421
mIsDestroyed 0x240e422
mPoliticalID 0x240e423
mDefinitionID 0x2e9efd3
mID 0x3cdd54b
mpTribe 0x33e0b60
mUndamagedModel 0x33e0b61
mDestructModelHi 0x33e0b62
mDestructModelLo 0x33e0b63
mDestructModelMd 0x33e0b64
mpHitSphere 0x5651e69
mCenterAxis 0x2f1a511
mpCity 0x2f1a512
mpDock 0x6567f8d
mWallSize 0x474ea17
mStyle 0x474ea18
mLevel 0x474ea19
mAppliedStamp 0x4dacb55
mWallOffset 0x50793d5
mpTribeToTribeMission 0xb43c938e
mTribeToTribeMissionMap 0x743c9504
mCurrentAmmoCount 0x385030d
mRechargeTimer 0x385031d
mAutoFireTimer 0x3850360
mChargeTimer 0x3850362
mMissCheckTimer 0x3850364
mpToolOwner 0x3850690
mpToolTarget 0x38506b6
mTargetDamagePointId 0x63fc849
mpArea 0x3850926
mpBeam 0x3850927
mpAppTarget 0x3850929
mInterruptedByDamage 0x3850952
mDamageMultiplier 0x38509c7
mRangeMultiplier 0x38509d5
mProjectileScale 0x39fb1a8
mIsInUse 0x57f830f
mpOwner 0x24162bf
mContainerCapacity 0x24162c0
mBundleCapacity 0x24162c1
mBundleList 0x24162c2
mUnlockPoints 0x3a3b30d
mItemStatusInfos 0x3a3b3d4
mUnlockedItems 0x6676971
mSimulators 0x21e8887
mIsTicking 0x21e8888
mpCity1 0x418d5cc
mpCity2 0x418d5cd
mRoadType 0x418d5ce
mWidth 0x418d5cf
mPathData 0x418d5d0
mpGroundContainer 0x225212b
mPlayerUFO 0x22556e7
mMaxDistance 0x436e7e0
mMaxScanDistance 0x436e7e1
mPosseUFOList 0x53e9f38
mType 0xd28eb9ac
mpWhoIsInteractingWithMe 0xd28eb9cd
mbHasAttractorEffects 0x5309d09
savedGameVersionOnSave 0x3f140b6
savedGameVersionOnGenerate 0x3f140b7
buildVersionOnSave 0x3f140b8
buildVersionOnGenerate 0x3f140b9
timestampOnSave 0x3f140ba
timestampOnGenerate 0x3f140bb
mModelTypeToKeyMap 0x3acc32f
mPos 0x6a7f2f9
mCurrentFood 0x6a7f2fa
mMaxFood 0x6a7f2fb
mResupplyRate 0x6a7f2fc
mCubeIndex 0x6a7f2fd
mpFishingHitSphere 0x6a7f2fe
mpFishingHotSpot 0x6a7f2ff
mStartTime 0x6a7f419
mbActive 0x6a7f41a
mbReplenishing 0x6a7f41b
mResourcePoints 0x403e5f1
mMaxResourcePoints 0x403e5f2
mpHitSphere 0x403e5f3
mbMineInitialized 0x521d43e
mMineState 0x521d43f
mMineStateTimer 0x521d440
mMineStateTimeout 0x521d441
mConstructingPoliticalID 0x521d442
mCapturePoliticalID 0x521d443
mConvertPoliticalID 0x521d444
mBuyPoliticalID 0x521d445
mCapturePercent 0x521d446
mConvertPercent 0x521d447
mBuyPercent 0x521d448
mConstructingVehicle 0x5776f58
mGateIndex 0x3dea810
mAttackState 0x3df32d5
mAttackState 0x3df32d6
mAttackerPoliticalID 0x3dad664
mAttackers 0x3e0c0b0
mpHitSphere 0x3df010d
mID 0x58b5360
mState 0x58b5361
mFrequency 0x58b5362
mCheckTime 0x58b5363
mFoodRequired 0x58b5364
mFoodAccumulated 0x58b5365
mbCheck 0x58b5366
mWorkers 0x58b536f
mpOwner 0x32128d8
mLastPosition 0x32128d9
mMinDamage 0x32128da
mMaxDamage 0x32128db
mDamageType 0x32128dc
mTool 0x32128dd
mPosition 0x2416c5e
mOrientation 0x2416c60
mScale 0x316f520
mIsInvalid 0xd24b464b
mIsRolledOver 0xb1a64f7b
mIsSelected 0x2416c61
mbPickable 0x2416c62
mbIsTangible 0x2416c63
mBoundingRadius 0x2416c64
mFootprintRadius 0x49100ec
mbIsBeingEdited 0x2416c65
mModelChanged 0x2416c66
mbTransformDirty 0x2416c67
mbFixed 0x2416c68
mbEnabled 0x2416c69
mbInView 0x2416c6a
mDistanceFromCamera 0x2416c6b
mbSupported 0x2416c6c
mFlags 0x2416c6d
mMaterialType 0x2416c6e
mbKeepPinnedToPlanet 0x445dc86
mModelKey 0x47df70d
mLocalExtents 0x47df723
mOriginalLocalExtents 0x5e8faa8
mbIsGhost 0x771d7b4
mKey 0x4164f8e
name 0x3d58b9a
type 0x3d58b9e
techLevel 0x3d58b9f
flags 0x3d58b99
orbit 0x3f6d6ba
rotationIsNull 0x417a8ca
rotationAxis 0x417a8e9
rotationPeriod 0x417a902
ringType 0x3f6d514
gasGiantType 0x3f6d526
mGeneratedTerrainKey 0x3d58b9b
mSpiceGen 0x3d58b9c
atmosphereScore 0x415fbbe
temperatureScore 0x415fbcd
waterScore 0x415fbdf
numDefenderUFOs 0x5c19861
timeLastBuiltUFOs 0x5c1a01b
timeCalledReinforcements 0x5c1a027
homeWorld 0x5c1a028
plantSpecies 0x4164f63
animalSpecies 0x4164f8d
mTerrainStampsToRemove 0x4164f9e
miMarkerID 0x4a3c9eb
mPosition 0x632c957
mOrientation 0x632c95d
miContinent 0x4a3bae4
mbIsPlayerCity 0x4a3baeb
mbIsNeutral 0x4a3c9bc
mbIsPlayerContinent 0x66ce9b5
miPersonality 0x4a3c9c0
miAppearanceOrder 0x4a3c9c3
mbHasAppeared 0x4a3c9c7
mbIsCoastalCity 0x50a4cd0
miWallOffset 0x50a4ceb
mpTribe 0x50f758c
mPoliticalID 0x52f20e5
miCivColorID 0x549651f
mWallPropKey 0x667bfd9
mCurrentCommEvent 0x361c378
mListCommEvents 0x361c379
mCommodityNodes 0x6ba6e9c
mRelationships 0x56920ba
mEmpiresToDecayPending 0x6538767
mEventLogCommItems 0x4474bd5
mStory201State 0x2385389d
mUFOWreckTargetPlanet 0x2385389e
mDelayScanCinematic1 0x680791f
mDelayScanCinematic2 0x6807924
mNumEditorEntries 0x5344d71
mActionStatus 0x5344d70
mNumEditorEntriesByEditor 0x63bdb1a
mActionStatusByEditor [kEditorTypeCell] 0x63bdb1b
mActionStatusByEditor [kEditorTypeCreature] 0x63bdb1c
mActionStatusByEditor [kEditorTypeBuilding] 0x63bdb1d
mActionStatusByEditor [kEditorTypeVehicle] 0x63bdb1e
mActionStatusByEditor [kEditorTypeAccessories] 0x63bdb1f
mPlayerAlertState 0xd2708c85
mNextSpecies 0x3f6565d
mHerd 0x72ae9fe0
mNoDamageTimer 0x5c02449
mLastAvatarDamageTimer 0x5ee740c
mPregnantEggs 0x52709079
mUntargetDistanceTime 0x21d2388
mOwnerMissionID 0x92709161
mPersonality 0x72709236
mColor 0x42a2b01
mCharmDamage 0x666441b
mCharmTime 0x6664451
mpCharmer 0x6664454
mToolType 0x2ca0e85
mCreationTimer 0x51c6c64
mDestroyedTimer 0x6a59db9
mhFootprint 0x6c0f3c9
mLevelsToUnlockOnActivateOrShutdown 0x66b980b
mLastSavedGame 0x66b980a
mNumCaptainsBroughtToLevel10 0x7ca2686
mNumAdventuresQuickplayed 0x7ca2687
mNumAdventuresCreated 0x7ca2688
mGGEScenarioTerrainDB 0x7ca2689
mArtifactCargoItemID 0x3853c9d
mMultiDeliveryMissionState 0x3853c9f
mBuyerList 0x3853ca0
mItemList 0x3853ca1
mDesiredSpeed 0x241568a
mStandardSpeed 0x241568c
mTurnRate 0x241568f
mAngleVelocity 0x37d3df5
mbSelfPowered 0x2415689
mNeighborCheckRadius 0x2415690
mVelocity 0x2415692
mAngularVelocity 0x49489a3
mInTransitTime 0x39a844f
mPlanetCorrection 0x4c919ab
mNeighbors 0x2415693
mMissionID 0x57a5308
mTimeSinceAddedToList 0x57a5309
mOwnerPlanetKey 0x5f2c298
mUseToolMissionState 0xf385389d
mToolUsed 0xf385389e
mLifetime 0x489213e
mFadeTimer 0x4892146
mFlags 0x489215a
mbTeleport 0x2415ec6
mbDead 0x2415ebc
mbUpdateInteractionEffect 0x2415ebd
mbUpdateMotiveEffect 0x2415ebe
mbIsDiseased 0x303fb98
mLastInteractionEffect 0x21d1baa
mLastMotiveState 0x21d1bab
mSpeciesKey 0x3f64a78
mProfileSeq 0x2415ec8
mAge 0x52773f6f
mbCasted 0x24cd902
mpWhoIsInteractingWithMe 0xb2774021
mbStealthed 0x6948b64
mCurrentLoudness 0xd277405a
mFoodValue 0x21d1ba5
mbHasBeenEaten 0x72774074
mStrengthRating 0x21d1bac
mSpeedState 0x2415eca
mCreatureName 0x3d97b19
mCurrentAttackIdx 0x21d239f
mCurrentAttackAnimId 0x547c1bf
mbColorIsIdentity 0x42a2b0e
mHunger 0x5501f64
mHungerDelta 0x5501f65
mHungerDelayTimer 0x4653b60
mArchetype 0x33ace6b5
mGeneralFlags 0x51b38ff
mNoAttackTimer 0x5242896a
DEPRECATED_mRechargingAbilityBits 0x528933e
DEPRECATED_mInUseAbilityBits 0x535a140
mRechargingAbilityBits 0x76c8f4d
mInUseAbilityBits 0x76c8f46
mIntentionTowardsTarget 0x5675535
mAbilityStates 0x521e608
mItemInventory 0x5ef360e
mSelectableMembers 0x6ba6e9a
mOffset 0x4458781
mWorldSpacePosition 0x4458782
mTurret 0x4458783
mpTribe 0x62d4f39
mFetchMissionState 0x385389d
mTypeOfFetch 0x385389e
mFetchArtifactCargoItemID 0x385389f
mFetchPlantSpeciesKey 0x3f69492
mFetchAnimalSpeciesKey 0x3f69497
mFetchCommodityKey 0x3f69498
mSamplerPlate 0x38538a3
mDropOffRequired 0x3f69499
mDropOffDistance 0x3f69500
mSpaceGameTime 0x5ff35fd
mEmpireGrowthSim 0x553fd49
mAmountInBundle 0x22553f2
mpContainer 0x22553f3
mType 0x22553f4
mDisplayType 0x22553f5
mLoose 0x6c3d90d
mIDColorID 0x5594700
mCachedColor 0x6cf7f50
mRadius 0x3e82d14
mMinScreenSize 0x3e82d15
mMaxScreenSize 0x3e82d16
mMinDistance 0x3e82d17
mMaxDistance 0x3e82d18
mpDelegate 0x3e82d19
mDroneOwnerMap 0x6ef53d5
mType 0x38cfe0e
mOrbit 0x38cfe26
mPosition 0x38cfe48
mRotationRate 0x38cfe5c
mName 0x38cfe6d
mHitSphereSize 0x38e5030
mpTarget 0x3b0990b
mAction 0x3b0990c
mMovePoint 0x5135515
mPlayerID 0x3b0990e
mChangeArchetypeState 0x3385389d
mProgressSoFar 0x3385389e
mChangeArchetypeTo 0x3385389f
mNumTotalActions 0x338538a0
mKeyHistory 0x338538a1
mTravelTrail 0x3dee991
mEmpire 0xa3f2c297
mPlanetKey 0xa3f2c298
mTimeSinceStart 0xa3f2c2a7
mPlayerInventory 0x22556ea
mHighLODPlanetSim 0x22556f0
mBadgeManager 0x22556f1
mTimeSinceStartedSpaceGame 0x57a55b9
mNPC_UFOs 0x53eb2ed
mPlanetsToUplift 0x670c962
mCreatureMissionList 0x940fd9b5
mCreatureMissionMap 0x53540b3
mSpeciesMissionMap 0xf40fd9b4
mpDisplayedSpeciesMission 0xb40fd9ab
mpDisplayedTutorialMission 0xb40fd9ac
mAvatar 0x222ceb7
mAvatarHerd 0x52aea77b
mPosseMembers 0xd26a1d6f
mpPlayerTribe 0x222ceb9
mpPlayer 0x2c215c5
mPoliticalMap 0x2cb7255
cGameData::sInstanceIDGenerator 0x3cdd5c7
mAchievementSet 0xabce0000
mCrossGameData.mEncounteredCreatures 0xabce0004
mCrossGameData.mTribeGamesCompleted 0xabce0005
mCrossGameData.mEatenCreatures 0xabce0006
mCrossGameData.mCellGameIDs 0xabce0007
mPlanets 0x38cfa88
mCelestialBodies 0x38cfad9
mStar1 0x38cfae4
mStar2 0x38cfafe
mMissionID 0x3851967
mDuration 0x13851968
mElapsedTimeMS 0x3851968
mState 0x3851969
mOwnerEmpireID 0x385196a
mpSourcePlanet 0x385196b
mpTargetPlanet 0x385196c
mRewardMoney 0x385196d
mRewardToolID 0x385196e
mTargetAnimalSpeciesKey 0x3f6ad2c
mStarClue 0x3851972
mPlanetClue 0x3851973
mStarMapIconEffectID 0x3851974
mUnlockToolIDList 0x3851977
mTargetEmpireID 0x3851978
mProgressEventID 0x3978791
mGiveOnAcceptAnimalIDs 0x3f6b0d8
mGiveOnAcceptPlantIDs 0x3f6b0de
mGiveOnAcceptToolIDs 0x3f6b0df
mGiveOnAcceptMoney 0x3f6b0e0
mFlags 0x3f6b0e1
mpParentMission 0x3f6b0e2
mSystemsShutdown 0x3f6b0e3
mAcceptCost 0x3f6b0e4
mToolCost 0x3f6b0e5
mpGalaxyCommEvent 0x679f2f3
mGameEventRecord 0x3b1e966
mpCRGItems 0x3a3a4b4
mFlags 0x3a8d5ca
mOneTimeEventFlags 0x44f3d49
mSelectedCityHallKey 0x47696c3
mSelectedVehicleKey 0x64e5ca6
mSelectedUFOKey 0x47696e9
mCapitalCityPos 0x47696ec
mHasCheated 0x4bc7c77
mCurrentGoalProgress 0x55a9786
mGoalProgressTotal 0x55a97a7
mThemeID 0x58b5e0e
mMaxPosseSize 0x5d2ac6b
mTempPosseCount 0x66e3237
mUniqueGameID 0x5ee017b
mDifficultyLevel 0x58b5e0f
mStarsVisited 0x47696ea
mStarsKnown 0x47696eb
mWormholesUsed 0x674b0b0
mSpacePlayerWarData 0x5626f25
mPlayerCaptureProgressStars 0x57a1100
mEmbassies 0x580dbb7
mPlanetData 0x580dbbf
mSoothingSongTimer 0x600bacf
mSocialTraitProgress 0x6132c98
mCombatTraitProgress 0x6132ca7
mPirateUFOModelKey 0x62fdfef
mSelectionGroups 0x64909c8
mCellConsequenceTrait 0x679fb51
mCreatureConsequenceTrait 0x679fb52
mTribeConsequenceTrait 0x679fb53
mCivConsequenceTrait 0x679fb54
mSpaceConsequenceTrait 0x679fb55
mInitCaptainKey 0x7be547b
mPlayerSpecificEmpireData 0x679fb56
mTotalTimeInCVG 0x6cfb746
mAdventuresCompleted 0x7673918
mEmpireName 0x3477139
mEmpireMoney 0x21e6db7
mTravelDistance 0x51e6db7
mTrait 0x3477338
mArchetype 0x554279e
mCurrentGameMode 0x362ab2e
mUFOKey 0x3ab8a62
mCaptainKey 0x7f55dbf
mHomePlanet 0x21e6dbb
mHomeStar 0x21e6dba
mPoliticalID 0x21e6dbc
mCityMusic 0x42a0f35
mFlags 0x35d5a51
mCultureSet 0x5624e2e
mEnemies 0x3477390
mAllies 0x3868491
mStars 0x3868492
mNextStarTowardsHome 0x3868493
mAdventureList 0x7995682
mMillisecondsSinceLastUpdate 0x366df4c
mActivePlanet 0x338a74a
mpActiveStar 0x3598939
mCurrentContext 0x366e013
mRotationRateFactor 0x366e045
mPlayerEmpire 0x366e0c2
mTribeCivRelationships 0x6494431
mPlayerColonies 0x4f3cd9b
mbInitialized 0x3acc831
mbUseCastedHerds 0x3acc832
mAnimalStagingDiagnostic 0x3acc833
mVisualizedTribes 0x3acc836
mAnimalStageMap 0x5008fd9
mCastMap 0x4206671
mInUseAnimals 0x656812e
mGoalProgressHistory 0x55ce8d1
mFullHealsPerPerTribeMember 0x5ee744a
mTotalTimeInTribe 0x5ee6f2f
mEnchantedAnimals 0x608904d
mEnchantedAnimalsTimer 0x60892b0
mUnlockedTools 0x68c869a
mpAccessories 0x625716f
mPlayerSpearOrnaments 0x681efba
mNPCSpearOrnaments 0x681efbb
mbMatingAllowed 0x68c86b2
planetKey 0x5b83971
lifetime 0x5b83972
spiceBought 0x5b83973
mbDirty 0x60b5062
mSpiceID 0x5b83974
mSpiceCost 0x5b83975
mNPCInventory 0x5b83976
mNPCInventoryAges 0x5b83977
mIsOn 0x2416eb8
mpOwnerCity 0x2416ebb
mEvents 0x41614aa
mAttackTimer 0x4ac7af1
mDestroyTimer 0x5b9555b
mConnected 0x4b74e33
mEffectiveness 0x4b74e34
mFreezeCount 0x4b74e37
mMoneyCount 0x4efa697
mHappyCount 0x4efa698
mUnhappyCount 0x4efa699
mNormalModelKey 0x5e4d3d3
mbIrradiated 0x5e4d3d4
mPostTutorialDelayTimer_Mating 0x5ee5e11
mPostTutorialDelayTimer_Food 0x66a2038
mTribeAppearanceProperty 0x629a22d
mBabyGrowthTimers 0x57a481e
mNPCTribeSpeciesKeys 0x600dd49
mUnlockableTools 0x3851188
mUpgradedToolIds 0x6786ec4
mpDropCargoTool 0x61c7e21
mpActiveTool 0x61c7e4a
mpActiveCargoItem 0x61c7e5d
mMaxItemCountPerItem 0x649014b
mbHasAddedItem 0x68398c2
mbActive 0x559039b
mType 0x55903a0
mFrequency 0x695c2d7
mCheckTime 0x69d8c20
mDuration 0x55946f7
mPropListKey 0x55903a4
mData 0x55903a7
mGameDataMap 0x55903ab
mSeqID 0x4bda4a8
mSpeciesBracket 0x4bda4af
mDistSequenceIdx 0x4bda4aa
mFlags 0x4bda4ac
mSpeciesKey 0x4bda4ad
mpInteractingWith 0x410d913
mFruitTransforms 0x62073d2
mFruitDistEffectIdxs 0x62073d8
mTransform 0x5668f36
mFruit 0x5668f38
mSeqId 0x5810db9
mSeqIndex 0x5810dba
mSizeBracket 0x5810dbb
mpWhoIsInteractingWithMe 0x5810dbc
mSpeciesKey 0x5810dbe
mBaseRadius 0x5810dbf
mCanopyRadius 0x595fd21
mHeight 0x595fdff
mbRemoved 0x6abf15d
mHerd 0x21e6db2
mEggs 0x52689e83
mOwnedByAvatar 0x21e6dae
mArchetype 0x30bbb5d
mArchetypeGroup 0x4894af5
mScheduleIndex 0x4ea45ca
mOwnerSpeciesKey 0x3f64453
mGeneration 0x39a2b58
mEvolvedSpeciesProfileKeys 0x9493bd27
mInitialShortfall 0x3fe8d35
mScaleMultiplier 0x3fe8d8b
mHitpointOverride 0x3fe8e9c
mDamageMultiplier 0x3fe8eb3
mTargetHerdSize 0x21e6db0
mbEggStatusChanged 0x21e6dad
mNumGuards 0x12689e6f
mRespawnRate 0x320d9e2
mCreaturePersonality 0x52ae4e7b
mpNest 0xd2aa6604
mpEggLayer 0x12ae4eca
mpHerdMom 0x73d72126
mbEggsInNest 0x21e6db1
mValidLocations 0x32689ec8
mbEnabled 0xd2ae8fdc
mTerritoryRadius 0x403e2b1
mActivateBrainLevel 0x403e2b2
mDeactivateBrainLevel 0x403e2b3
mbCheckedForWateringHole 0x4cfbbf9
mWateringHolePosition 0x41fa3ba
mbCheckedForForests 0x4cfcaee
mCurrentFeedingGrounds 0x4cfe14e
mChangeFeedingGroundsTimer 0x4cfe1f5
mFeedingGrounds 0x4cfcaf6
mNumGuardLocations 0x4447955
mNumGuardsPerLocation 0x4447959
mGuardMinMaxRadius 0x4447971
mEggIndex 0x1368374c
mInitialPosition 0x1368374d
mDNAEvolutionThreshold 0x517a7b0
mbShouldEvolve 0x517ad97
mbBestFriends 0x342dfbf3
mbExtinction 0xf42dfbf4
mbTransientHerd 0x5c82085
mpCity 0x44585b1
mpWeapon 0x44585b2
mpCivTurretWeapon 0x4c5a1ef
mpSpaceBeamWeapon 0x4c5a1f5
mpSpaceDefenseMissileWeapon 0x5790752
mpSpaceTurretFlak 0x579fa14
mDestroyTimer 0x4161444
mFreezeCount 0x4161445
mpHitSphere 0x4161446
mpFacingTarget 0x4161447
mpTool 0x4179f65
mSourceOffset 0x417a784
mDamageRadius 0x41686ea
mbStopArea 0x418f318
mLifeTimer 0x418f319
mAccumulatedTime 0x418f31a
mCulturalProjectileTime 0x418f31c
mLastUpdate 0x418f31b
mpVehicle 0x4fd0320
mpTarget 0x4fd0321
mTargetPos 0x4f90c02
mbSpin 0x4f90c03
mLifeTimer 0x4f90c04
mpTool 0x4fd0322
mOwner 0x5777340
mEnemyEmpireID 0x5626da6
mTimeSinceWarStart 0x57a0b60
mPlayerStartStarsCount 0x5626dae
mEnemyStartStarsCount 0x5626ec6
mPlayerStarsCaptured 0x5626eca
mEnemyStarsCaptured 0x5626ece
mType 0x3cd86cc
mId 0x3cd86d3
mDefinitionId 0x3cd86d7
mpAssociatedNoun 0x3cd86ee
mpNextMarker 0x3d0966c
mpHeadMarker 0x3d09670
mNounPosition 0x3daa433
mNounOrientation 0x3daa434
mbNounRemoved 0x3daa435
mPosition 0x3221494
mOrientation 0x3e44212
mSpiceProduction 0x32214b1
mMaxSize 0x32214b6
mSize 0x32214bc
mFinalIncome 0x32214c2
mHappiness 0x32214c5
mBuilding 0x34da69b
mOrnament 0x34da69f
mWall 0x34da69c
mWallStyle 0x34da69e
mVehicleSpecialty 0x510c373
mName 0x54ff019
mDescription 0x6cb88ca
mCaptureID 0x55ba598
mCapturePercent 0x55ba59e
mTurretLocations 0x55a554d
mLevelHandle 0x689db9f
mTextureHandle 0x689dba2
mDamageRemainder 0x38521e8
mDamageRemainderUFO 0x56bc0f6
mInitialized 0x552a11e
mShowDefaultEventLog 0x552a11f
mNumBombers 0x56b7886
mNumFighters 0x6450510
mShouldDestroyColonyObject 0x5c4156b
mOriginStarRecordID 0x5e8ff22
mGalaxyBomber 0x5ed03d6
mPendingUFOKey 0x5ed0f0f
mUFOsLeaveOnArrival 0x5ed0f10
mUFOSpawnLocation 0x60de151
mIsPlayerSummoned 0x6367659
mAttackerEmpire 0x636765a
mBackgroundShipsList 0x648d0a9
mWaitingForRaid 0x64925c9
mTimeOfArrivalMS 0x684a115
mPlayerCreatureKey 0xabcd0000
mFoodProgression 0xabcd0001
mPlantFoodProgression 0xabcd0011
mUnlockedParts 0xabcd0002
mPartCinematicPlayed 0xabcd0004
mShowMateButton 0xabcd0005
mKillCount 0x6947316
mDeathCount 0x6947317
gameTimeMS 0x35875139
gameID 0xabcd0009
difficulty 0xabcd0010
missions 0xabcd0012
playerHasMoved 0xabcd0013
playerHasEaten 0xabcd0014
mEvolutionPointsSpent 0xabcd0015
mOverPlantFoodProgression 0xabcd0016
mOverAnimalFoodProgression 0xabcd0017
mFirstEditorEntry 0xabcd0018
mNanites 0xabcd0019
mNanovirusActive 0xabcd0020
mGameMode 0xabcd0021
mAddedStartTelemetry 0xabcd0022
mPath 0x643fc18
mLastPathPointIndex 0x643fe1a
mDistanceFromLastPoint 0x643fe1b
mCurrentSegmentLength 0x643fe1c
mLastPointReached 0x643fe1d
mToNextPoint 0x643fe1e
mMotionType 0x643fe1f
mLowestAltitude 0x643fe20
mHighestAltitude 0x643fe21
mLastSpeed 0x643fe22
mStarRecordGrid 0x3fabad0
mStarterStarRecords 0x3ea8676
mSavedGameStarRecords 0x3ea8679
mBlackHoles 0x55ceb62
mEmpireHomeStarRecords 0x4274872
mPossibleStartLocations 0x563c450
mSol 0x3f5bbc2
mpGlobalCLGItems 0x44ee63e
mNextPoliticalID 0x44ee640
mGrobID 0x44ee641
mEmpires 0x52c47aa
mTradeRouteManager 0x5528d40
sGameTimeManagerContainer 0x579f61c
sRelationshipManagerContainer 0x56e616c
sNameCountMap 0x5d55277
mTransactionLog 0x5d55278
mAvailableStarterWorlds 0x563c451
mEmpireNamesInUse 0x6b94eb9
mAdventureIDs 0x799479d
mItemID 0x223eb9d
mItemCount 0x223eb9e
mItemType 0x362aeb9
mItemCost 0x362aeba
mIsUnique 0x362aebb
mCargoSlot 0x223eba1
mPoliticalId 0x5d28f83
mItemPosition 0x61d7ac0
mIsActive 0x61d7ac9