The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
IbproArcade - Top 10 Players Details »» | |||||||||||||||||||||||||
This edit will add the Top 10 Players to your IbproArcade System and remove the Arcade Highscore Champions.
Port off of :http://www.ipbarcadegames.com/index.php?showtopic=7022 In your arcade/skin/skin_Arcade.php Find: Code:
<td class="alt1" align="center" valign="top" style="width: 60%;padding-left:7px;padding-top:5px;padding-bottom:5px;"> <div class='tborder'> <table width='100%' border='0' cellspacing='0' cellpadding='4'> <tr> <th width='100%' align='center' nowrap='nowrap' class='tcat' colspan='3'><img src="./arcade/images/trophy.gif" border="0" alt="">{$ibforums->lang['infobox_top3title']}<img src="./arcade/images/trophy.gif" border="0" alt=""></th> </tr> <tr> <td width='33%' align='center' nowrap='nowrap' class='alt2' valign='middle'><b>{$Highscorechamp['ArcadeChampionSmily1']}</b></td> <td width='33%' align='center' nowrap='nowrap' class='alt2' valign='middle'><b>{$Highscorechamp['ArcadeChampionSmily2']}</b></td> <td width='33%' align='center' nowrap='nowrap' class='alt2' valign='middle'><b>{$Highscorechamp['ArcadeChampionSmily3']}</b></td> </tr> <tr> <td width='33%' align='center' nowrap='nowrap' class='alt2' valign='middle'>{$Highscorechamp['ArcadeChampionAvatarCode1']}</td> <td width='33%' align='center' nowrap='nowrap' class='alt2' valign='middle'>{$Highscorechamp['ArcadeChampionAvatarCode2']}</td> <td width='33%' align='center' nowrap='nowrap' class='alt2' valign='middle'>{$Highscorechamp['ArcadeChampionAvatarCode3']}</td> </tr> <tr> <td width='33%' align='center' nowrap='nowrap' class='alt2' valign='middle'>{$Highscorechamp['ArcadeChampion1']}</td> <td width='33%' align='center' nowrap='nowrap' class='alt2' valign='middle'>{$Highscorechamp['ArcadeChampion2']}</td> <td width='33%' align='center' nowrap='nowrap' class='alt2' valign='middle'>{$Highscorechamp['ArcadeChampion3']}</td> </tr> </table> </div> Code:
<td align="center" class="alt1" style="width: 50%;" valign='top'> <div class='tborder'> <table width='100%' border='0' cellspacing='1' cellpadding='4'> <tr> <th width='50%' align='center' nowrap='nowrap' class='tcat'> Top 10 Arcade Players</th> </tr> <tr> <td width='50%' align='center' nowrap='nowrap' class="alt2" valign='top'><table border=0><tr><td align=center class="alt2">01. {$Champion['ArcadeChampion1']}<br>02. {$Champion['ArcadeChampion2']}<br>03. {$Champion['ArcadeChampion3']}<br>04. {$Champion['ArcadeChampion4']}<br>05. {$Champion['ArcadeChampion5']}<br>06. {$Champion['ArcadeChampion6']}<br>07. {$Champion['ArcadeChampion7']}<br>08. {$Champion['ArcadeChampion8']}<br>09. {$Champion['ArcadeChampion9']}<br>10. {$Champion['ArcadeChampion10']}</td></tr></table></td> </tr> </table> </div> Code:
<div class="tborder"> <table width='100%' border="0" cellspacing="0" cellpadding="4"> <tr> <td align="center" width="20%" nowrap="nowrap" class="tcat"> </td> <td align="center" width="60%" nowrap="nowrap" class="tcat">$totalstext</td> <td align="center" width="20%" nowrap="nowrap" class="tcat"> </td> Code:
<div class="tborder"> <table width='100%' border="0" cellspacing="0" cellpadding="4"> <tr> <td align="center" width="25%" nowrap="nowrap" class="tcat"> </td> <td align="center" width="50%" nowrap="nowrap" class="tcat">$totalstext</td> <td align="center" width="25%" nowrap="nowrap" class="tcat"> </td> Find: Code:
$Champion['ArcadeChampion1'] = "{$ibforums->lang['top3box_norank']}"; $Champion['ArcadeChampion2'] = "{$ibforums->lang['top3box_norank']}"; $Champion['ArcadeChampion3'] = "{$ibforums->lang['top3box_norank']}"; $Cpt = 0; $DB->query("select champ_mid, champ_name, count(*) nb, active, champ_gid, gid from ibf_games_champs inner join ibf_games_list on champ_gid=gid where active =1 group by champ_mid, champ_name order by 3 desc, 1 limit 3"); while ($res = $DB->fetch_row()) { $Cpt++; $Champion['ArcadeChampion'.$Cpt] = '<span style="font-weight: bold;"><a href="'.$ibforums->base_url.'act=Arcade&module=report&user='.$res['champ_mid'].'">'.$res['champ_name'].'</a></span><br />'.$ibforums->lang[arcadeking_txt1].'<b>'.$res['nb'].'</b>'.$ibforums->lang[arcadeking_txt2]; $Champion['ArcadeChampionMid'.$Cpt] = $res['champ_mid']; } Code:
$Champion['ArcadeChampion1'] = "{$ibforums->lang['top3box_norank']}"; $Champion['ArcadeChampion2'] = "{$ibforums->lang['top3box_norank']}"; $Champion['ArcadeChampion3'] = "{$ibforums->lang['top3box_norank']}"; $Cpt = 0; $DB->query("select champ_mid, champ_name, count(*) nb, active, champ_gid, gid from ibf_games_champs inner join ibf_games_list on champ_gid=gid where active =1 group by champ_mid, champ_name order by 3 desc, 1 limit 10"); while ($res = $DB->fetch_row()) { $Cpt++; $Champion['ArcadeChampion'.$Cpt] = '<span style="font-weight: bold;"><a href="'.$ibforums->base_url.'act=Arcade&module=report&user='.$res['champ_mid'].'">'.$res['champ_name'].'</a></span><br />'.$ibforums->lang[top10_txt1].'<b>'.$res['nb'].'</b>'.$ibforums->lang[top10_txt2]; $Champion['ArcadeChampionMid'.$Cpt] = $res['champ_mid']; } Find: Code:
#complete phrasing Code:
top10_txt1 => " has ", top10_txt2 => " Wins!", Show Your Support
|
Comments |
#12
|
||||
|
||||
Nice one.
|
#13
|
||||
|
||||
Thanks!
|
#14
|
||||
|
||||
my list shows like this how can i fix it to show like the image posted?
01. jtcny has 82 Wins! 02. thedoulou has 60 Wins! 03. evilvinny has 25 Wins! 04. BBQUEEN has 10 Wins! 05. Disp29 has 8 Wins! 06. atlantaazfinest has 3 Wins! 07. Caddyman has 3 Wins! 08. LOW has 2 Wins! 09. i710 has 1 Wins! 10. |
#15
|
||||
|
||||
Nice ...liked this Hack
/klicks Install. Umm where to find games pls? |
#16
|
|||
|
|||
Quote:
|
#17
|
|||
|
|||
in the arcade.php file
Find: Code:
$Champion['ArcadeChampion1'] = "{$ibforums->lang['top3box_norank']}"; $Champion['ArcadeChampion2'] = "{$ibforums->lang['top3box_norank']}"; $Champion['ArcadeChampion3'] = "{$ibforums->lang['top3box_norank']}"; $Cpt = 0; $DB->query("select champ_mid, champ_name, count(*) nb, active, champ_gid, gid from ibf_games_champs inner join ibf_games_list on champ_gid=gid where active =1 group by champ_mid, champ_name order by 3 desc, 1 limit 3"); while ($res = $DB->fetch_row()) { $Cpt++; $Champion['ArcadeChampion'.$Cpt] = '<span style="font-weight: bold;"><a href="'.$ibforums->base_url.'act=Arcade&module=report&user='.$res['champ_mid'].'">'.$res['champ_name'].'</a></span><br />'.$ibforums->lang[arcadeking_txt1].'<b>'.$res['nb'].'</b>'.$ibforums->lang[arcadeking_txt2]; $Champion['ArcadeChampionMid'.$Cpt] = $res['champ_mid']; } Replace with: Code:
$Champion['ArcadeChampion1'] = "{$ibforums->lang['top3box_norank']}"; $Champion['ArcadeChampion2'] = "{$ibforums->lang['top3box_norank']}"; $Champion['ArcadeChampion3'] = "{$ibforums->lang['top3box_norank']}"; $Cpt = 0; $DB->query("select champ_mid, champ_name, count(*) nb, active, champ_gid, gid from ibf_games_champs inner join ibf_games_list on champ_gid=gid where active =1 group by champ_mid, champ_name order by 3 desc, 1 limit 3"); while ($res = $DB->fetch_row()) { $Cpt++; $Champion['ArcadeChampion'.$Cpt] = '<span style="font-weight: bold;"><a href="'.$ibforums->base_url.'act=Arcade&module=report&user='.$res['champ_mid'].'">'.$res['champ_name'].'</a></span>'.$ibforums->lang[arcadeking_txt1].'<b>'.$res['nb'].'</b>'.$ibforums->lang[arcadeking_txt2]; $Champion['ArcadeChampionMid'.$Cpt] = $res['champ_mid']; } |
#18
|
|||
|
|||
Still doesn't work...
01. ***got 15 times the High Score of all time 02. ***got 6 times the High Score of all time 03. ***got 4 times the High Score of all time 04. 05. 06. 07. 08. 09. 10. |
#19
|
|||
|
|||
Quote:
the High Score of all time The Text is to long to fit in the box. Should Be **** has 5 Wins! |
#20
|
|||
|
|||
ok so why isnt number 10 appearing? can you post how your actual edits to your arcade? the ones done to your Skin_arcade.php
|
#21
|
||||
|
||||
This should run okey,it's based on a modification I did for vb 3.0.x and arcade 2.5.1 - I'm still running it now on vb 3.5.4 and arcade 2.5.5+ and haven't had any problems
|
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|