robb9
08-20-2007, 01:46 PM
Hi!
Open arcade/modules/mod_arcade.php
Search
$DB->query("SELECT gid, gtitle FROM ibf_games_list WHERE gid IN ($games_list)");
Replace with:
$DB->query("SELECT gid, gtitle, gname FROM ibf_games_list WHERE gid IN ($games_list)");
Search
$games_names[$g['gid']] = $g['gtitle'];
below add:
$games1_names[$g['gid']] = $g['gname'];
search:
$span_pre = "<span title='".$ibforums->lang["playing"].$games_names[$gid]."' style='text-decoration: none; border-bottom: 1px dashed; padding-bottom: 1px;'>";
replace with:
$span_pre = "<img src=\"www.yourserver.com/images/".$games1_names[$gid]."2.gif\" alt='".$ibforums->lang["playing"].$games_names[$gid]."'><span title='".$ibforums->lang["playing"].$games_names[$gid]."' style='text-decoration: none; border-bottom: 1px dashed; padding-bottom: 1px;'>";
That's All :)
Open arcade/modules/mod_arcade.php
Search
$DB->query("SELECT gid, gtitle FROM ibf_games_list WHERE gid IN ($games_list)");
Replace with:
$DB->query("SELECT gid, gtitle, gname FROM ibf_games_list WHERE gid IN ($games_list)");
Search
$games_names[$g['gid']] = $g['gtitle'];
below add:
$games1_names[$g['gid']] = $g['gname'];
search:
$span_pre = "<span title='".$ibforums->lang["playing"].$games_names[$gid]."' style='text-decoration: none; border-bottom: 1px dashed; padding-bottom: 1px;'>";
replace with:
$span_pre = "<img src=\"www.yourserver.com/images/".$games1_names[$gid]."2.gif\" alt='".$ibforums->lang["playing"].$games_names[$gid]."'><span title='".$ibforums->lang["playing"].$games_names[$gid]."' style='text-decoration: none; border-bottom: 1px dashed; padding-bottom: 1px;'>";
That's All :)