Added GetComboList and GetLifeRecord to PlayerStageStats.

This commit is contained in:
Kyzentun
2014-02-12 16:19:16 -07:00
parent 3f1c96d10f
commit 17ea38576c
4 changed files with 65 additions and 0 deletions
+2
View File
@@ -1107,6 +1107,7 @@
<Function name='GetAliveSeconds'/>
<Function name='GetBestFullComboTapNoteScore'/>
<Function name='GetCaloriesBurned'/>
<Function name='GetComboList'/>
<Function name='GetCurMaxScore'/>
<Function name='GetCurrentCombo'/>
<Function name='GetCurrentLife'/>
@@ -1118,6 +1119,7 @@
<Function name='GetHoldNoteScores'/>
<Function name='GetLessonScoreActual'/>
<Function name='GetLessonScoreNeeded'/>
<Function name='GetLifeRecord'/>
<Function name='GetLifeRemainingSeconds'/>
<Function name='GetMachineHighScoreIndex'/>
<Function name='GetNumControllerSteps'/>
+8
View File
@@ -3217,6 +3217,9 @@ save yourself some time, copy this for undocumented things:
<Function name='GetCaloriesBurned' return='float' arguments=''>
Returns the number of calories burned.
</Function>
<Function name='GetComboList' return= '{combo}' arguments=''>
Returns a table of all the combos. Each entry in the table is a table containing the StartSecond, SizeSeconds, Count, Rollover, StageCount, and IsZero information for that combo.
</Function>
<Function name='GetCurMaxScore' return='int' arguments=''>
Returns the current possible maximum score.
</Function>
@@ -3250,6 +3253,11 @@ save yourself some time, copy this for undocumented things:
<Function name='GetLessonScoreNeeded' return='int' arguments=''>
Returns the score needed to pass the lesson.
</Function>
<Function name='GetLifeRecord' return='{float}' arguments='float last_second, int samples'>
Returns table of samples of the life record from 0 to last_second.
'samples' determines the size of the table. 'samples' defaults to 100
if not specified.
</Function>
<Function name='GetLifeRemainingSeconds' return='float' arguments=''>
Returns the player's life remaining seconds.
</Function>