Player Information| Player Profile |
|
falbingmaster.co.nno + |
|
| Location: Russian Federation | |
| Steam: STEAM_0:0:96663189 | |
| 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 02:53:42h |
| Average Ping:* | - |
| Favorite Server:* | - |
| Favorite Map:* | |
| Favorite Weapon:* | Unknown |
| Statistics Summary |
||
| Activity: |
|
-1% |
| Points: | 4,464 | |
| Rank: | Not active | |
| Kills per Minute: | 1.89 | |
| Kills per Death: | 2.2847 (-*) | |
| Headshots per Kill: | 0.6565 (-*) | |
| Shots per Kill: | - | |
| Weapon Accuracy: | 0.0% (0%*) | |
| Headshots: | 216 (0*) | |
| Kills: | 329 (0*) | |
| Deaths: | 144 (0*) | |
| Longest Kill Streak: | 15 | |
| Longest Death Streak: | 8 | |
| Suicides: | 4 | |
| Teammate Kills: | 0 (0*) | |
falbingmaster.co.nno +'s History:Events | Sessions | Awards (0) | 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: Corporal | |
|
|
|
|
Kills needed: 71 (29%) |
| 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 | falbingmaster.co.nno + | 0d 00:04:13h | 2016-03-12 16:50:15 | 8 | 7 | 1.14 | 0 | 0.00 | 0 | 0.0% |
| 2 | falbmasterlikeno + | 0d 00:08:52h | 2016-03-05 11:11:58 | 18 | 8 | 2.25 | 15 | 0.83 | 0 | 0.0% |
| 3 | falbmasterlikeno+ | 0d 00:10:17h | 2016-02-28 17:10:17 | 11 | 6 | 1.83 | 9 | 0.82 | 0 | 0.0% |
| 4 | johny.2006 | 0d 00:24:48h | 2016-02-23 13:06:55 | 52 | 23 | 2.26 | 39 | 0.75 | 0 | 0.0% |
| 5 | flabmaster.cramal | 0d 00:08:58h | 2016-02-22 11:31:12 | 18 | 2 | 9.00 | 15 | 0.83 | 0 | 0.0% |
| 6 | flabingmaster.cramal | 0d 00:26:03h | 2016-02-15 13:20:50 | 40 | 30 | 1.33 | 20 | 0.50 | 0 | 0.0% |
| 7 | Add Me Maybe | 0d 00:16:32h | 2016-01-30 14:27:52 | 30 | 9 | 3.33 | 16 | 0.53 | 0 | 0.0% |
| 8 | AddMeMaybe | 0d 01:02:07h | 2016-01-28 18:09:55 | 145 | 50 | 2.90 | 102 | 0.70 | 4 | 0.0% |
| 9 | Frank the owl | 0d 00:11:52h | 2015-08-04 17:06:58 | 7 | 9 | 0.78 | 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]



falbingmaster.co.nno +

