hello i tried replacing that code and i still get the same error:
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/fatalgam/public_html/arcade_play.php on line 20
Try this:
Find in arcade_play.php:
if(mysql_num_rows($result) <= 0)
message($lang_common['Bad request']);
$line = $db->fetch_assoc($result);
and replace with this:
$line = $db->fetch_assoc($result);
if ($line['game_id'] <= 0)
message($lang_common['Bad request']);