Quote:
Originally Posted by John3971
when i challenges another user i can only play thoose v3arcade games but not the ipb ones that i have imported.
|
Yeah, for some reason only v3arcade games are listed.
You can edit the arcade.php file and change it to include both v3arcade and ibpro games
In arcade.php find:
PHP Code:
$games = $db->query_read("SELECT title, gameid FROM " . TABLE_PREFIX . "arcade_games WHERE (gamepermissions & 4) AND (gamepermissions & 1) AND system=0 ORDER BY title ASC");
change it to
PHP Code:
$games = $db->query_read("SELECT title, gameid FROM " . TABLE_PREFIX . "arcade_games WHERE (gamepermissions & 4) AND (gamepermissions & 1) AND (system=0 OR system=10) ORDER BY title ASC");
/SK