Add-on for Signature Stats v2.03
Amount of games in v3Arcade in signature
Find:
Code:
// ########################### OUTPUT TEXT ###############################
Above add:
Code:
// Games Count for v3Arcade
$result_allgames = $DB_site->query("
SELECT * FROM " . TABLE_PREFIX . "games $searchclause ORDER BY gameid DESC
");
$gamecount = $DB_site->num_rows($result_allgames);
Then just use $gamecount in the $output string, a bit like mine:
Code:
$output = "MEMBERS: $numbermembers THREADS: $totalthreads POSTS: $totalposts ONLINE: $totalonline GAMES: $gamecount";