Let me see what I can come up with and I`ll let you know..
--------------- Added [DATE]1332024253[/DATE] at [TIME]1332024253[/TIME] ---------------
Ok,,I have it done...
Do you want the Arcade Announcements: to show on My Favorites page ??
You need to edit three files (Skins and mod_favorites) and get info from anther one(arcade)..
Lets start small...
Look at arcade.php file and find this:
PHP Code:
// Newest Games
$DB->query("SELECT g.gid, g.gtitle, g.gname, g.gcat, cat.password, cat.active FROM ibf_games_list AS g, ibf_games_cats AS cat WHERE g.active=1 AND cat.active=1 AND g.gcat=cat.c_id AND trim(password)='' ORDER BY g.added DESC LIMIT ".$this->arcade->settings['games_new']);
$firstnew = true;
while($newgline = $DB->fetch_row()) {
if($firstnew) {
$firstnew = false;
} else {
$new_games .= "<br />\n";
}
$new_games .= "<img src='arcade/images/{$newgline[gname]}2.gif' alt='' width='20' height='20' /> <a href='".$ibforums->base_url."act=Arcade&do=play&gameid={$newgline['gid']}'>{$newgline['gtitle']}</a> ";
}
// End Newest Games
The code above,,you`ll need to change every $this to $main..
Paste that code in the mod_favorites,, right before:
PHP Code:
$this->html .= $main->html->favorites($the_games,$stylecolumns);
Then add $new_games to the above,,like this:
PHP Code:
$this->html .= $main->html->favorites($the_games,$new_games,$stylecolumns);
Now go to you skin file and look for:
PHP Code:
function favorites($game_list,$stylecolumns) {
add $new_games to it..
PHP Code:
function favorites($game_list,$new_games,$stylecolumns) {
PHP Code:
global $ibforums;
return <<<EOF
Add this below that:
PHP Code:
<div class="tborder">
<table width='100%' border='0' cellspacing='1' cellpadding='4'>
<tr>
<td align="center" width="20%" nowrap="nowrap" class="blockhead">{$ibforums->lang['infobox_newgames']}</td>
</tr>
<tr>
<td class="alt2" align="left" valign="top" style="width: 20%;padding-right:7px;padding-top:5px;padding-bottom:5px;">
{$new_games}
</td>
</tr>
</table>
</div>
That should get you started..