Player Information| Player Profile |
|
NedHogg |
|
| Location: Saint-michel, France | |
| Steam: STEAM_0:0:70705489 | |
| 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: | 8d 22:37:40h |
| Average Ping:* | - |
| Favorite Server:* | - |
| Favorite Map:* | |
| Favorite Weapon:* | Unknown |
| Statistics Summary |
||
| Activity: |
|
-1% |
| Points: | 4,353 | |
| Rank: | Not active | |
| Kills per Minute: | 0.66 | |
| Kills per Death: | 0.7733 (-*) | |
| Headshots per Kill: | 0.0680 (-*) | |
| Shots per Kill: | - | |
| Weapon Accuracy: | 0.0% (0%*) | |
| Headshots: | 578 (0*) | |
| Kills: | 8,495 (0*) | |
| Deaths: | 10,986 (0*) | |
| Longest Kill Streak: | 19 | |
| Longest Death Streak: | 33 | |
| Suicides: | 463 | |
| Teammate Kills: | 0 (0*) | |
NedHogg's History:Events | Sessions | Awards (100) | 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: Brigadier General | |
|
|
|
|
Kills needed: 505 (50%) |
| 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 | NedHogg | 0d 12:38:19h | 2014-03-22 00:40:32 | 468 | 565 | 0.83 | 0 | 0.00 | 43 | 0.0% |
| 2 | 31,557,887 | 0d 02:44:23h | 2014-01-20 23:30:39 | 94 | 120 | 0.78 | 0 | 0.00 | 5 | 0.0% |
| 3 | 4,564,487,874 | 0d 08:58:19h | 2014-01-07 20:38:48 | 377 | 444 | 0.85 | 1 | 0.00 | 16 | 0.0% |
| 4 | Sticky | 4d 07:28:14h | 2013-12-16 21:24:34 | 4,243 | 5,158 | 0.82 | 284 | 0.07 | 239 | 0.0% |
| 5 | " " | 0d 00:18:20h | 2013-09-16 17:02:33 | 7 | 13 | 0.54 | 0 | 0.00 | 1 | 0.0% |
| 6 | | --- | 2013-09-16 16:41:46 | 0 | 0 | 0.00 | 0 | - | 0 | 0.0% |
| 7 | Floralys | 0d 21:01:53h | 2013-09-16 16:10:41 | 957 | 1,222 | 0.78 | 193 | 0.20 | 39 | 0.0% |
| 8 | Xunosetras | 2d 11:04:30h | 2013-09-10 22:08:45 | 2,175 | 3,153 | 0.69 | 95 | 0.04 | 107 | 0.0% |
| 9 | nux | 0d 06:23:42h | 2013-08-13 01:38:58 | 174 | 311 | 0.56 | 5 | 0.03 | 13 | 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]



NedHogg

