Player Information| Player Profile |
|
Bush ( The Plant ) |
|
| Location: Rennes, France | |
| Steam: STEAM_0:1:129464703 | |
| 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: | 6d 01:26:55h |
| Average Ping:* | - |
| Favorite Server:* | - |
| Favorite Map:* | |
| Favorite Weapon:* | Unknown |
| Statistics Summary |
||
| Activity: |
|
-1% |
| Points: | 6,921 | |
| Rank: | Not active | |
| Kills per Minute: | 0.64 | |
| Kills per Death: | 0.8878 (-*) | |
| Headshots per Kill: | 0.0636 (-*) | |
| Shots per Kill: | - | |
| Weapon Accuracy: | 0.0% (0%*) | |
| Headshots: | 355 (0*) | |
| Kills: | 5,579 (0*) | |
| Deaths: | 6,284 (0*) | |
| Longest Kill Streak: | 17 | |
| Longest Death Streak: | 17 | |
| Suicides: | 242 | |
| Teammate Kills: | 0 (0*) | |
Bush ( The Plant )'s History:Events | Sessions | Awards (212) | 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: Group Commander | |
|
|
|
|
Kills needed: 171 (77%) |
| 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 | Bush ( The Plant ) | 0d 11:31:09h | 2018-10-21 23:28:35 | 471 | 454 | 1.04 | 4 | 0.01 | 28 | 0.0% |
| 2 | Bush | 0d 00:21:53h | 2016-11-14 20:30:00 | 8 | 9 | 0.89 | 0 | 0.00 | 0 | 0.0% |
| 3 | The Bushgineer | 0d 00:01:06h | 2016-09-16 19:08:53 | 0 | 0 | 0.00 | 0 | - | 0 | 0.0% |
| 4 | Crazy Spycrab | 1d 09:12:44h | 2016-09-12 20:21:26 | 1,587 | 1,251 | 1.27 | 78 | 0.05 | 38 | 0.0% |
| 5 | Surimi des enfers profonds | 0d 00:39:52h | 2016-06-08 18:27:03 | 30 | 21 | 1.43 | 1 | 0.03 | 1 | 0.0% |
| 6 | crazy Spycrabe | 1d 04:36:50h | 2016-05-28 20:22:18 | 1,106 | 1,204 | 0.92 | 105 | 0.09 | 41 | 0.0% |
| 7 | crazy HELL | 0d 10:14:44h | 2016-02-10 15:31:15 | 367 | 464 | 0.79 | 6 | 0.02 | 19 | 0.0% |
| 8 | crazy scout | 0d 20:29:54h | 2016-02-01 22:05:52 | 755 | 961 | 0.79 | 38 | 0.05 | 45 | 0.0% |
| 9 | lucanoptek | 1d 16:18:43h | 2016-01-23 23:55:17 | 1,255 | 1,920 | 0.65 | 123 | 0.10 | 70 | 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]



Bush ( The Plant )

