Player Information| Player Profile |
|
PSO |
|
| Location: France | |
| Steam: STEAM_0:0:44835568 | |
| 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 15:56:33h |
| Average Ping:* | - |
| Favorite Server:* | - |
| Favorite Map:* | |
| Favorite Weapon:* | Unknown |
| Statistics Summary |
||
| Activity: |
|
-1% |
| Points: | 6,387 | |
| Rank: | Not active | |
| Kills per Minute: | 1.31 | |
| Kills per Death: | 1.8282 (-*) | |
| Headshots per Kill: | 0.3495 (-*) | |
| Shots per Kill: | - | |
| Weapon Accuracy: | 0.0% (0%*) | |
| Headshots: | 439 (0*) | |
| Kills: | 1,256 (0*) | |
| Deaths: | 687 (0*) | |
| Longest Kill Streak: | 13 | |
| Longest Death Streak: | 6 | |
| Suicides: | 16 | |
| Teammate Kills: | 0 (0*) | |
PSO's History:Events | Sessions | Awards (2) | 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: Ensign | |
|
|
|
|
Kills needed: 144 (28%) |
| 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 | Pso | 0d 06:04:24h | 2021-06-05 19:19:00 | 496 | 245 | 2.02 | 237 | 0.48 | 1 | 0.0% |
| 2 | Tsr | 0d 00:25:43h | 2014-09-11 12:25:44 | 32 | 23 | 1.39 | 16 | 0.50 | 0 | 0.0% |
| 3 | BvB | 0d 01:58:51h | 2014-08-20 23:03:03 | 145 | 70 | 2.07 | 16 | 0.11 | 0 | 0.0% |
| 4 | Sica' | 0d 00:58:56h | 2014-02-20 21:03:17 | 40 | 51 | 0.78 | 7 | 0.18 | 3 | 0.0% |
| 5 | Sicarios | 0d 02:03:56h | 2013-08-20 13:30:14 | 190 | 93 | 2.04 | 90 | 0.47 | 2 | 0.0% |
| 6 | bernardfortdu92 | 0d 00:02:37h | 2013-08-20 12:51:17 | 1 | 2 | 0.50 | 1 | 1.00 | 0 | 0.0% |
| 7 | Sicarios. | 0d 02:11:53h | 2013-08-13 21:04:55 | 200 | 102 | 1.96 | 29 | 0.15 | 4 | 0.0% |
| 8 | нєx ☮ | Screaw | 0d 02:00:36h | 2013-07-09 13:03:47 | 149 | 90 | 1.66 | 43 | 0.29 | 6 | 0.0% |
| 9 | нєx ♦ | Screaw | 0d 00:09:37h | 2013-07-06 12:57:33 | 3 | 11 | 0.27 | 0 | 0.00 | 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]



PSO

