I havent tried it but should get you going in the right way..
You need to edit the main arcade.php file..
Find:
Code:
//is game new?
$newgame = "";
if( $the_game['added'] > $time && $this->arcade->settings['show_new'] )
{
$this->arcade->links['click'] .= " <img src='./arcade/images/new.gif' title='New' alt='{$ibforums->lang['newgame_star']}' />";
$newgame = "<img src='./arcade/images/new.gif' title='New' alt='{$ibforums->lang['newgame_star']}' />";
}
and put this code after it,,
Code:
$sorting = "";
if( !$this->user['is_mod'] && !$this->user['is_admin'] )
{
$this->arcade->links['click'] .= "<a href='admincp/arcade.php?cat=0'>".Admin Game Sorting."</a>";
$sorting = "<a href='admincp/arcade.php?cat=0'>".Admin Game Sorting."</a>";
}
Then find:
Code:
$this->output .= $this->html->row($the_game,$gamesplit,$top,$pbesttext,$this->arcade->links,$rowcol,$rating,$actualtop,$newgame,$stylecolumns);
$game_counter++;
}
put
after $stylecolumns..
Now edit the skin..
Find:
Code:
function row($entry,$gamesplit,$top,$pbest,$links,$rowcol,$rating,$actualtop,$newgame,$stylecolumns)
and put,
after $stylecolumns
Now find,,
Code:
{$entry['ibprostyle_info2']}
and put this after it,,
Code:
[<fieldset>
<legend><b>Sorting</b></legend>
<center><span class="smallfont">
$sorting</span></center>
</fieldset>
That should be it...