Player Information| Player Profile |
|
U C R A S |
|
| Location: Portugal | |
| Steam: STEAM_0:1:107770583 | |
| 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:* | (Unknown) |
| Total Connection Time: | 0d 16:11:53h |
| Average Ping:* | - |
| Favorite Server:* | - |
| Favorite Map:* | |
| Favorite Weapon:* | Unknown |
| Statistics Summary |
||
| Activity: |
|
-1% |
| Points: | 3,791 | |
| Rank: | Not active | |
| Kills per Minute: | 0.70 | |
| Kills per Death: | 1.0642 (-*) | |
| Headshots per Kill: | 0.2603 (-*) | |
| Shots per Kill: | - | |
| Weapon Accuracy: | 0.0% (0%*) | |
| Headshots: | 177 (0*) | |
| Kills: | 680 (0*) | |
| Deaths: | 639 (0*) | |
| Longest Kill Streak: | 14 | |
| Longest Death Streak: | 13 | |
| Suicides: | 49 | |
| Teammate Kills: | 0 (0*) | |
U C R A S's History:Events | Sessions | Awards (10) | 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: Gunnery Sergeant | |
|
|
|
|
Kills needed: 20 (80%) |
| 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 | U C R A S | 0d 00:18:59h | 2020-04-17 18:48:17 | 7 | 3 | 2.33 | 7 | 1.00 | 2 | 0.0% |
| 2 | --- | 2016-12-19 15:50:49 | 0 | 0 | 0.00 | 0 | - | 0 | 0.0% | |
| 3 | Traficantes de Paylas | 0d 00:26:19h | 2016-12-09 21:22:05 | 27 | 31 | 0.87 | 22 | 0.81 | 4 | 0.0% |
| 4 | Spärkÿ | 0d 00:50:11h | 2016-10-27 18:11:21 | 32 | 45 | 0.71 | 14 | 0.44 | 3 | 0.0% |
| 5 | Blu | 0d 00:37:40h | 2016-08-29 19:13:26 | 45 | 31 | 1.45 | 16 | 0.36 | 6 | 0.0% |
| 6 | | Cobra_Blööd | | 0d 00:49:06h | 2016-08-27 17:33:52 | 54 | 59 | 0.92 | 8 | 0.15 | 1 | 0.0% |
| 7 | ∆ | ブルー | ∆ | 0d 01:26:54h | 2016-08-19 23:13:20 | 34 | 37 | 0.92 | 5 | 0.15 | 7 | 0.0% |
| 8 | ∆ | öshawött | ∆ | 0d 00:34:17h | 2016-08-01 22:19:17 | 6 | 3 | 2.00 | 0 | 0.00 | 0 | 0.0% |
| 9 | ♛✫Time_Pyro✫♛ | 0d 01:05:09h | 2016-07-19 23:41:07 | 2 | 1 | 2.00 | 0 | 0.00 | 0 | 0.0% |
| 10 | Crazy_GamerPT *AFK | 0d 07:50:33h | 2016-04-15 18:51:28 | 387 | 345 | 1.12 | 86 | 0.22 | 12 | 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]



U C R A S

