Player Information| Player Profile |
|
gas#tf2 pac| trade.tf |
|
| Location: Nantes, France | |
| Steam: STEAM_0:0:88671748 | |
| Status: Unknown | |
| Click here to add as friend | |
| Karma: In good standing | |
| Member of Clan: | (None) |
| Real Name: | (Not Specified) |
| E-mail Address: | (Not Specified) |
| Home Page: | (Not Specified) |
| MM Rank: |
|
| Last Connect:* | (Unknown) |
| Total Connection Time: | 0d 11:48:52h |
| Average Ping:* | - |
| Favorite Server:* | - |
| Favorite Map:* | |
| Favorite Weapon:* | Unknown |
| Statistics Summary |
||
| Activity: |
|
-1% |
| Points: | 2,258 | |
| Rank: | Not active | |
| Kills per Minute: | 0.37 | |
| Kills per Death: | 0.3702 (-*) | |
| Headshots per Kill: | 0.2529 (-*) | |
| Shots per Kill: | - | |
| Weapon Accuracy: | 0.0% (0%*) | |
| Headshots: | 66 (0*) | |
| Kills: | 261 (0*) | |
| Deaths: | 705 (0*) | |
| Longest Kill Streak: | 5 | |
| Longest Death Streak: | 20 | |
| Suicides: | 28 | |
| Teammate Kills: | 0 (0*) | |
gas#tf2 pac| trade.tf's History:Events | Sessions | Awards (1) | Chat
Find other players with the same name
Miscellaneous Statistics| Player Trend |
|
|
| Forum Signature | |
|
bbCode 1 (phpBB, SMF) | bbCode 2 (IPB) | Direct Image |
|
Ranks| Current rank: Lance Corporal | |
|
|
|
|
Kills needed: 39 (61%) |
| Rank history |
|
Awards (hover over image to see name)| Ribbons |
|
| Global Awards | |
Aliases| Rank | Name | Time | Last Use ![]() |
Kills | Deaths | K:D | Headshots | HS:K | Suicides | Accuracy |
| 1 | gas#tf2 pac| trade.tf | 0d 00:06:19h | 2015-11-22 20:05:51 | 1 | 4 | 0.25 | 0 | 0.00 | 0 | 0.0% |
| 2 | gas#billtounu | 0d 00:36:39h | 2015-06-23 23:51:12 | 17 | 57 | 0.30 | 0 | 0.00 | 1 | 0.0% |
| 3 | the little dr budha | 0d 00:07:44h | 2015-01-16 17:52:46 | 1 | 2 | 0.50 | 1 | 1.00 | 0 | 0.0% |
| 4 | like a boss | 0d 00:14:49h | 2015-01-14 17:09:53 | 6 | 8 | 0.75 | 0 | 0.00 | 0 | 0.0% |
| 5 | you play like a bot | 0d 00:51:26h | 2015-01-03 21:09:31 | 17 | 47 | 0.36 | 8 | 0.47 | 2 | 0.0% |
| 6 | you missed me | 0d 00:39:04h | 2014-12-20 11:48:56 | 21 | 57 | 0.37 | 12 | 0.57 | 3 | 0.0% |
| 7 | ovni sanguinaire | 0d 05:27:41h | 2014-11-28 20:47:12 | 143 | 287 | 0.50 | 31 | 0.22 | 7 | 0.0% |
| 8 | gagakiller | 0d 00:21:24h | 2014-10-01 14:57:15 | 13 | 13 | 1.00 | 6 | 0.46 | 1 | 0.0% |
| 9 | gagatau.lang | 0d 03:23:46h | 2014-09-10 20:22:21 | 42 | 230 | 0.18 | 8 | 0.19 | 14 | 0.0% |
),
new TableColumn
(
'rolecount',
'Joined',
'width=10&align=right&append=+times'
),
new TableColumn
(
'percent',
'%',
'width=10&sort=no&align=right&append=' . urlencode('%')
),
new TableColumn
(
'percent',
'Ratio',
'width=20&sort=no&type=bargraph'
),
new TableColumn
(
'killsTotal',
'Kills',
'width=10&align=right'
),
new TableColumn
(
'deathsTotal',
'Deaths',
'width=10&align=right'
),
new TableColumn
(
'kpd',
'K:D',
'width=10&align=right'
)
),
'code',
'rolecount',
'name',
true,
9999,
'roles_page',
'roles_sort',
'roles_sortorder',
'roles',
'desc',
true
);
// OPTIMIZATION: compute kills/deaths per role with grouped subqueries instead of temporary tables
$kills_by_role_sql = "
SELECT killerRole AS role, COUNT(*) AS killsTotal
FROM hlstats_Events_Frags
WHERE killerId = $player
GROUP BY killerRole
";
$deaths_by_role_sql = "
SELECT victimRole AS role, COUNT(*) AS deathsTotal
FROM hlstats_Events_Frags
WHERE victimId = $player
GROUP BY victimRole
";
$db->query("SELECT COUNT(*) FROM hlstats_Events_ChangeRole WHERE hlstats_Events_ChangeRole.playerId = $player");
list($numrolejoins) = $db->fetch_row();
$result = $db->query
("
SELECT
IFNULL(hlstats_Roles.name, hlstats_Events_ChangeRole.role) AS name,
IFNULL(hlstats_Roles.code, hlstats_Events_ChangeRole.role) AS code,
COUNT(hlstats_Events_ChangeRole.id) AS rolecount,
ROUND(COUNT(hlstats_Events_ChangeRole.id) / IF($numrolejoins = 0, 1, $numrolejoins) * 100, 2) AS percent,
hlstats_Frags_as_res.killsTotal,
hlstats_Frags_as_res.deathsTotal,
ROUND(hlstats_Frags_as_res.killsTotal / IF(hlstats_Frags_as_res.deathsTotal = 0, 1, hlstats_Frags_as_res.deathsTotal), 2) AS kpd
FROM
hlstats_Events_ChangeRole
LEFT JOIN
hlstats_Roles
ON
hlstats_Events_ChangeRole.role = hlstats_Roles.code
LEFT JOIN
hlstats_Frags_as_res
ON
hlstats_Frags_as_res.role = hlstats_Events_ChangeRole.role
WHERE
hlstats_Events_ChangeRole.playerId = $player
AND
(
hidden <> '1'
OR hidden IS NULL
Items marked "*" above are generated from the last 28 days.
Go to: Player Rankings
You are currently viewing the basic version of this page, please enable JavaScript and reload the page to access full functionality.
Generated in real-time by HLstatsX Community Edition 1.7.0
All images are copyrighted by their respective owners.
[Admin]
Generated in real-time by HLstatsX Community Edition 1.7.0
All images are copyrighted by their respective owners.
[Admin]



gas#tf2 pac| trade.tf

