Log in

View Full Version : time played wrong


sparky5693
03-17-2007, 02:53 PM
It doesn't seem what I try, the time played for games is way off. Unless someone knows a way to fix it, I want to just remove the display option. I found it for the arcade main, but not in the individual high score list for each game. Is there a way to do this?

sparky5693
04-26-2007, 12:08 AM
Any ideas? Still fighting this one.

MrZeropage
04-27-2007, 11:01 AM
it works fine here, what is the problem ? It just reads/stores time() and gets the other value after playing...

sparky5693
05-03-2007, 12:23 AM
A couple of my games, moon lander for example, list the time played as way too short. On others it works fine.

almightyone
05-06-2007, 01:59 PM
i have the same problem for example on a game called jewel I hold the high score and it shows 25 seconds and people have way less of a score and show like 5 minutes So of course they say i am cheating :(

sparky5693
05-06-2007, 03:39 PM
Exactly. Every time a user sees the short time, the assume cheating.

gmatrix
05-13-2007, 09:48 AM
If you just want to remove the display in the individual highscore lists, you need to look in skin_Arcade.php. Remove the last column in this part of the table:

<tr>
<td width="3%" align="center" class="tcat">{$ibforums->lang['pound']}</td>
<td width="30%" align="center" class="tcat">{$ibforums->lang['username']}</td>
<td width="7%" align="center" class="tcat">{$ibforums->lang['score']}</td>
<td width="45%" align="center" class="tcat">{$ibforums->lang['comment']}</td>
<td width="15%" align="center" class="tcat">{$ibforums->lang['time']}</td>
<td width="15%" align="center" class="tcat" nowrap="nowrap">{$ibforums->lang['time_played_p']}</td>
</tr>



AND remove the last column in this part of the table:

<tr>
<td align="center" class="{$rowcol}">{$rownum}</td>
<td align="center" class="{$rowcol}">{$usercell}</td>
<td align="center" class="{$rowcol}">{$scorecell}</td>
<td align="center" class="{$rowcol}">{$rowinfo['comment']}</td>
<td align="center" class="{$rowcol}">{$datecell}</td>
<td align="center" class="{$rowcol}">{$rowinfo['timespent']}</td>
</tr>