escape($action); $game_escaped=$db->escape($game); $db->query(" SELECT for_PlayerActions,for_PlayerPlayerActions, description FROM hlstats_Actions WHERE code='{$action_escaped}' AND game='{$game_escaped}' "); if ($db->num_rows() != 1) { $act_name = ucfirst($action); $actiondata['for_PlayerActions']=1; // dummy these out, this should never happen? $actiondata['for_PlayerPlayerActions']=0; } else { $actiondata = $db->fetch_array(); $db->free_result(); $act_name = $actiondata['description']; } $db->query("SELECT name FROM hlstats_Games WHERE code='{$game_escaped}'"); if ($db->num_rows() != 1) error('Invalid or no game specified.'); else list($gamename) = $db->fetch_row(); pageHeader( array($gamename, 'Action Details', $act_name), array( $gamename=>$g_options['scripturl'] . "?game=$game", 'Action Statistics'=>$g_options['scripturl'] . "?mode=actions&game=$game", 'Action Details'=>'' ), $act_name ); $table = new Table( array( new TableColumn( 'playerName', 'Player', 'width=45&align=left&flag=1&link=' . urlencode('mode=playerinfo&player=%k') ), new TableColumn( 'obj_count', 'Achieved', 'width=25&align=right' ), new TableColumn( 'obj_bonus', 'Skill Bonus Total', 'width=25&align=right&sort=no' ) ), 'playerId', 'obj_count', 'playerName', true, 40 ); if ($actiondata['for_PlayerActions']==1) { $result = $db->query(" SELECT hlstats_Events_PlayerActions.playerId, hlstats_Players.lastName AS playerName, hlstats_Players.flag as flag, COUNT(hlstats_Events_PlayerActions.id) AS obj_count, COUNT(hlstats_Events_PlayerActions.id) * hlstats_Actions.reward_player AS obj_bonus FROM hlstats_Events_PlayerActions, hlstats_Players, hlstats_Actions WHERE hlstats_Actions.code = '{$action_escaped}' AND hlstats_Players.game = '{$game_escaped}' AND hlstats_Players.playerId = hlstats_Events_PlayerActions.playerId AND hlstats_Events_PlayerActions.actionId = hlstats_Actions.id AND hlstats_Players.hideranking = '0' GROUP BY hlstats_Events_PlayerActions.playerId ORDER BY $table->sort $table->sortorder, $table->sort2 $table->sortorder LIMIT $table->startitem,$table->numperpage "); $resultCount = $db->query(" SELECT COUNT(DISTINCT hlstats_Events_PlayerActions.playerId), COUNT(hlstats_Events_PlayerActions.Id) FROM hlstats_Events_PlayerActions, hlstats_Players, hlstats_Actions WHERE hlstats_Actions.code = '{$action_escaped}' AND hlstats_Players.game = '{$game_escaped}' AND hlstats_Players.playerId = hlstats_Events_PlayerActions.playerId AND hlstats_Events_PlayerActions.actionId = hlstats_Actions.id AND hlstats_Players.hideranking = '0' "); } if($actiondata['for_PlayerPlayerActions']==1) { $result = $db->query(" SELECT hlstats_Events_PlayerPlayerActions.playerId, hlstats_Players.lastName AS playerName, hlstats_Players.flag as flag, COUNT(hlstats_Events_PlayerPlayerActions.id) AS obj_count, COUNT(hlstats_Events_PlayerPlayerActions.id) * hlstats_Actions.reward_player AS obj_bonus FROM hlstats_Events_PlayerPlayerActions, hlstats_Players, hlstats_Actions WHERE hlstats_Actions.code = '{$action_escaped}' AND hlstats_Players.game = '{$game_escaped}' AND hlstats_Players.playerId = hlstats_Events_PlayerPlayerActions.playerId AND hlstats_Events_PlayerPlayerActions.actionId = hlstats_Actions.id AND hlstats_Players.hideranking = '0' GROUP BY hlstats_Events_PlayerPlayerActions.playerId ORDER BY $table->sort $table->sortorder, $table->sort2 $table->sortorder LIMIT $table->startitem,$table->numperpage "); $resultCount = $db->query(" SELECT COUNT(DISTINCT hlstats_Events_PlayerPlayerActions.playerId), COUNT(hlstats_Events_PlayerPlayerActions.Id) FROM hlstats_Events_PlayerPlayerActions, hlstats_Players, hlstats_Actions WHERE hlstats_Actions.code = '{$action_escaped}' AND hlstats_Players.game = '{$game_escaped}' AND hlstats_Players.playerId = hlstats_Events_PlayerPlayerActions.playerId AND hlstats_Events_PlayerPlayerActions.actionId = hlstats_Actions.id AND hlstats_Players.hideranking = '0' "); } list($numitems, $totalact) = $db->fetch_row($resultCount); if ($totalact == 0) { $result = $db->query(" SELECT hlstats_Events_TeamBonuses.playerId, hlstats_Players.lastName AS playerName, hlstats_Players.flag as flag, COUNT(hlstats_Events_TeamBonuses.id) AS obj_count, COUNT(hlstats_Events_TeamBonuses.id) * hlstats_Actions.reward_player AS obj_bonus FROM hlstats_Events_TeamBonuses, hlstats_Players, hlstats_Actions WHERE hlstats_Actions.code = '{$action_escaped}' AND hlstats_Players.game = '{$game_escaped}' AND hlstats_Players.playerId = hlstats_Events_TeamBonuses.playerId AND hlstats_Events_TeamBonuses.actionId = hlstats_Actions.id AND hlstats_Players.hideranking = '0' GROUP BY hlstats_Events_TeamBonuses.playerId ORDER BY $table->sort $table->sortorder, $table->sort2 $table->sortorder LIMIT $table->startitem,$table->numperpage "); $resultCount = $db->query(" SELECT COUNT(DISTINCT hlstats_Events_TeamBonuses.playerId), COUNT(hlstats_Events_TeamBonuses.Id) FROM hlstats_Events_TeamBonuses, hlstats_Players, hlstats_Actions WHERE hlstats_Actions.code = '{$action_escaped}' AND hlstats_Players.game = '{$game_escaped}' AND hlstats_Players.playerId = hlstats_Events_TeamBonuses.playerId AND hlstats_Events_TeamBonuses.actionId = hlstats_Actions.id AND hlstats_Players.hideranking = '0' "); list($numitems, $totalact) = $db->fetch_row($resultCount); } ?>
from a total of achievements (Last Days)
Back to ">Action Statistics
draw($result, $numitems, 95, 'center'); if ($actiondata['for_PlayerPlayerActions'] == 1) { $table = new Table( array( new TableColumn( 'playerName', 'Player', 'width=45&align=left&flag=1&link=' . urlencode('mode=playerinfo&player=%k') ), new TableColumn( 'obj_count', 'Times Victimized', 'width=25&align=right' ), new TableColumn( 'obj_bonus', 'Skill Bonus Total', 'width=25&align=right&sort=no' ) ), 'victimId', 'obj_count', 'playerName', true, 40, 'vpage' ); $result = $db->query(" SELECT hlstats_Events_PlayerPlayerActions.victimId, hlstats_Players.lastName AS playerName, hlstats_Players.flag as flag, COUNT(hlstats_Events_PlayerPlayerActions.id) AS obj_count, COUNT(hlstats_Events_PlayerPlayerActions.id) * hlstats_Actions.reward_player * -1 AS obj_bonus FROM hlstats_Events_PlayerPlayerActions, hlstats_Players, hlstats_Actions WHERE hlstats_Actions.code = '{$action_escaped}' AND hlstats_Players.game = '{$game_escaped}' AND hlstats_Players.playerId = hlstats_Events_PlayerPlayerActions.victimId AND hlstats_Events_PlayerPlayerActions.actionId = hlstats_Actions.id AND hlstats_Players.hideranking = '0' GROUP BY hlstats_Events_PlayerPlayerActions.victimId ORDER BY $table->sort $table->sortorder, $table->sort2 $table->sortorder LIMIT $table->startitem,$table->numperpage "); $resultCount = $db->query(" SELECT COUNT(DISTINCT hlstats_Events_PlayerPlayerActions.victimId), COUNT(hlstats_Events_PlayerPlayerActions.Id) FROM hlstats_Events_PlayerPlayerActions, hlstats_Players, hlstats_Actions WHERE hlstats_Actions.code = '{$action_escaped}' AND hlstats_Players.game = '{$game_escaped}' AND hlstats_Players.playerId = hlstats_Events_PlayerPlayerActions.victimId AND hlstats_Events_PlayerPlayerActions.actionId = hlstats_Actions.id AND hlstats_Players.hideranking = '0' "); list($numitems, $totalact) = $db->fetch_row($resultCount); ?>
Victims of (Last Days)
draw($result, $numitems, 95, 'center'); } ?>