Skip to content

Commit d7ce59c

Browse files
committed
Merge branch 'master' of https://github.com/emd4600/Spore-ModAPI
2 parents b6536eb + 9018d6e commit d7ce59c

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

Spore ModAPI/Spore/Simulator/cScenarioPlayMode.h

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,20 @@ namespace Simulator
6969
/* 7Ch */ App::MessageListenerData mMessageListenerData;
7070
/* 90h */ int field_90; // not initialized, current state? fail reason?
7171
/* 94h */ int field_94; // not initialized
72-
/* 98h */ Clock field_98;
72+
/// The clock activates upon triggering the adventure's end. It counts up to around 2000 units (milliseconds), after which the ending cinematic activates
73+
/* 98h */ Clock mCinematicDelay;
7374
/* B0h */ int field_B0; // not initialized
7475
/* B4h */ int field_B4; // not initialized
7576
/// Index of the current act (0 is first act, 1 is second, etc)
7677
/* B8h */ int mCurrentActIndex; // not initialized
7778
/// Time limit of the current act, in milliseconds (negative number if no time limit)
7879
/* BCh */ long mTimeLimitMS;
79-
/* C0h */ int field_C0;
80-
/* C4h */ int mAdventurePoints; // not initialized
80+
/// The playtime of the current adventure in milliseconds. It pauses counting when the game is paused, and it records its count to display it at the results screen.
81+
/// If the adventure is shared, it will also be sent to the adventure's high scores in the Spore servers if the player is logged in.
82+
/* C0h */ int mCurrentTimeMS;
83+
/// The amount of Spore points the captain is rewarded at the end of a successful adventure.
84+
/// Not initialized.
85+
/* C4h */ int mAdventurePoints;
8186
/* C8h */ int field_C8; // not initialized
8287
/* CCh */ int field_CC; // not initialized
8388
/* D0h */ int field_D0; // not initialized

0 commit comments

Comments
 (0)