Player Information| Player Profile |
|
zherii..d1ck |
|
| Location: Vaasa, Finland | |
| Steam: STEAM_0:1:45781212 | |
| Status: Offline | |
| 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:* | Sun. Feb. 16th, 2025 @ 19:31:17 |
| Total Connection Time: | 0d 03:59:47h |
| Average Ping:* | - |
| Favorite Server:* | - |
| Favorite Map:* | |
| Favorite Weapon:* | Unknown |
| Statistics Summary |
||
| Activity: |
|
100% |
| Points: | 6,040 | |
| Rank: | 59 | |
| Kills per Minute: | 2.38 | |
| Kills per Death: | 2.5491 (-*) | |
| Headshots per Kill: | 0.8757 (-*) | |
| Shots per Kill: | - | |
| Weapon Accuracy: | 0.0% (0%*) | |
| Headshots: | 500 (0*) | |
| Kills: | 571 (0*) | |
| Deaths: | 224 (0*) | |
| Longest Kill Streak: | 25 | |
| Longest Death Streak: | 7 | |
| Suicides: | 2 | |
| Teammate Kills: | 0 (0*) | |
zherii..d1ck's History:Events | Sessions | Awards (6) | 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: Staff Sergeant | |
|
|
|
|
Kills needed: 29 (71%) |
| 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 | zherii..d1ck | 0d 01:29:34h | 2025-02-16 19:31:19 | 216 | 67 | 3.22 | 189 | 0.88 | 1 | 0.0% |
| 2 | olson..d1ck | 0d 00:28:14h | 2022-04-06 22:47:26 | 29 | 21 | 1.38 | 24 | 0.83 | 0 | 0.0% |
| 3 | zhewii..d1ck :3 | 0d 00:00:21h | 2018-04-09 22:26:25 | 0 | 0 | 0.00 | 0 | - | 0 | 0.0% |
| 4 | slowly easing down on a cucumbe | 0d 00:00:39h | 2018-02-21 22:23:23 | 0 | 0 | 0.00 | 0 | - | 0 | 0.0% |
| 5 | jurassic bark >:3 | 0d 00:00:49h | 2018-01-30 19:13:14 | 0 | 1 | 0.00 | 0 | - | 0 | 0.0% |
| 6 | zherii lft | 0d 00:17:32h | 2018-01-20 19:16:39 | 50 | 13 | 3.85 | 44 | 0.88 | 1 | 0.0% |
| 7 | Ξ (っỜ ω Ớ)っ╰⋃╯ | 0d 00:27:42h | 2017-12-31 15:18:30 | 69 | 33 | 2.09 | 56 | 0.81 | 0 | 0.0% |
| 8 | zherii | 0d 01:14:56h | 2017-10-15 19:04:51 | 207 | 89 | 2.33 | 187 | 0.90 | 0 | 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]



zherii..d1ck

