Player Information| Player Profile |
|
.:BoBo:. |
|
| Location: Liège, Belgium | |
| Steam: STEAM_0:1:52638982 | |
| Status: Offline | |
| Click here to add as friend | |
| Karma: In good standing | |
| Member of Clan: | BoBo |
| Real Name: | (Not Specified) |
| E-mail Address: | (Not Specified) |
| Home Page: | (Not Specified) |
| MM Rank: |
|
| Last Connect:* | (Unknown) |
| Total Connection Time: | 24d 02:09:04h |
| Average Ping:* | - |
| Favorite Server:* | - |
| Favorite Map:* | |
| Favorite Weapon:* | Unknown |
| Statistics Summary |
||
| Activity: |
|
-1% |
| Points: | 2,983 | |
| Rank: | Not active | |
| Kills per Minute: | 0.47 | |
| Kills per Death: | 0.3920 (-*) | |
| Headshots per Kill: | 0.0140 (-*) | |
| Shots per Kill: | - | |
| Weapon Accuracy: | 0.0% (0%*) | |
| Headshots: | 231 (0*) | |
| Kills: | 16,449 (0*) | |
| Deaths: | 41,964 (0*) | |
| Longest Kill Streak: | 11 | |
| Longest Death Streak: | 68 | |
| Suicides: | 713 | |
| Teammate Kills: | 0 (0*) | |
.:BoBo:.'s History:Events | Sessions | Awards (273) | 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: Commander General | |
|
|
|
|
Kills needed: 1051 (58%) |
| 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 | .:BoBo:. | 22d 03:55:36h | 2018-08-23 15:33:40 | 15,311 | 38,513 | 0.40 | 177 | 0.01 | 611 | 0.0% |
| 2 | BoBo cherche clé dorée | 0d 03:54:28h | 2013-08-03 01:08:10 | 161 | 290 | 0.56 | 0 | 0.00 | 9 | 0.0% |
| 3 | BoBo search ingeneer gold key | 0d 01:38:00h | 2013-07-24 22:57:49 | 40 | 126 | 0.32 | 0 | 0.00 | 5 | 0.0% |
| 4 | [BE] .:BoBo:. | 0d 01:09:48h | 2013-07-23 13:51:00 | 21 | 72 | 0.29 | 0 | 0.00 | 3 | 0.0% |
| 5 | [BE] .::BoBo::. | 0d 00:43:38h | 2013-07-23 12:41:12 | 23 | 48 | 0.48 | 0 | 0.00 | 2 | 0.0% |
| 6 | {BE} ::BoBo:: | 0d 00:10:08h | 2013-07-22 17:29:02 | 6 | 9 | 0.67 | 0 | 0.00 | 0 | 0.0% |
| 7 | [BE] BoBo | 0d 00:18:38h | 2013-07-22 17:18:54 | 6 | 25 | 0.24 | 0 | 0.00 | 0 | 0.0% |
| 8 | Bobo | 1d 12:51:03h | 2013-07-22 17:00:16 | 845 | 2,768 | 0.31 | 54 | 0.06 | 81 | 0.0% |
| 9 | Vive le Roi PHILIPPE ! | 0d 01:27:45h | 2013-07-22 00:04:45 | 36 | 113 | 0.32 | 0 | 0.00 | 2 | 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]



.:BoBo:.

