Small add-on.
It adds challenges statistics to gamer's stats table:
- Find in File arcade.php
PHP Code:
$played = $DB_site->num_rows($activitycount);
$i = 1;
while ($listscores = $DB_site->fetch_array($activitycount)) {
if ($i<6){
$scorelist .= $i.". <b><i>".$listscores['title']."</i></b>, with a score of <b><i>".$listscores['score']."</i></b><br>";
$i++;
}
$playtime = $playtime+($listscores['finish']-$listscores['start']);
$ping += $listscores['ping'];
}
- REPLACE that with:
PHP Code:
$played = $DB_site->num_rows($activitycount);
$i = 1;
$countch=0;
$win=0;
$lose=0;
while ($listscores = $DB_site->fetch_array($activitycount)) {
if ($i<6){
$scorelist .= $i.". <b><i>".$listscores['title']."</i></b>, ? ??????????? <b><i>".$listscores['score']."</i></b><br>";
$i++;
}
$playtime = $playtime+($listscores['finish']-$listscores['start']);
$ping += $listscores['ping'];
if ($listscores['challengeid']) {
$countch++;
$challengeid=$listscores['challengeid'];
$mscore=$listscores['score'];
$unuser = $DB_site->query_first("SELECT score AS score FROM " . TABLE_PREFIX . "gamesessions WHERE challengeid=$challengeid AND userid!=$userid");
if ($unuser['score']<$mscore) {
$win++;
} else if ($unuser['score']>$mscore) {
$lose++;
}
}
}
- Find in Template arcade_statistics
Code:
<tr>
<td class="alt1" width="50%">Recent Arcade scores:</td>
<td class="alt1" width="50%"><span class="smallfont"><if condition="$scorelist==''">No Scores Recorded<else />$scorelist</if></span></td>
</tr>
- Add BELOW that
Code:
<tr>
<td class="alt2" width="50%">Challenges:</td>
<td class="alt2" width="50%"><span class="smallfont">Total: $countch <b><em>Win: $win</em></b> Lose: $lose</span></td>
</tr>