The Arcive of vBulletin Modifications Site. |
|
time played wrong Details »»
|
|||||||||||||||||||||||||
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?
Show Your Support
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
|||
|
|||
|
Any ideas? Still fighting this one.
|
|
#3
|
||||
|
||||
|
it works fine here, what is the problem ? It just reads/stores time() and gets the other value after playing...
|
|
#4
|
|||
|
|||
|
A couple of my games, moon lander for example, list the time played as way too short. On others it works fine.
|
|
#5
|
|||
|
|||
|
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
|
|
#6
|
|||
|
|||
|
Exactly. Every time a user sees the short time, the assume cheating.
|
|
#7
|
|||
|
|||
|
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:
Code:
<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: Code:
<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>
|
![]() |
|
|