I don't know if this has been suggested in the past, but it would be nice if another column was added stating the winner of the match. Currently the column headers are:
Game id Players Last Move Game State Moves Points
To find out who won the match you have to look at view game for each match. Why not?:
Game id Players Last Move Game Stats Moves Points Winner
so that you can look at a glance who is winning the matches? At least highlight the winner's name under players.
Originally posted by YogiflDo you use Firefox?
Where do you find the result 1-0 or 1/2?
Have you got the greasemonkey extension?
if so and you want to see smiles for wins, frowns for draws and unhappy faces for losses (just like the clan home-page shows) - then try this -
// ==UserScript==
// @name RHP league results
// @namespace orangutan
// @description League results made plain
// @include http://www.redhotpawn.com/clanleague/viewgames.php*
// @include http://www.redhotchess.com/clanleague/viewgames.php*
// @include http://www.chessatwork.com/clanleague/viewgames.php*
// @include http://www.timeforchess.com/clanleague/viewgames.php*
// @include http://www.playtheimmortalgame.com/clanleague/viewgames.php*
// ==/UserScript==
var results = document.evaluate("//table[2]/tbody/tr/td[8]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
var pic = new Array ("defeat", "draw", "", "victory"😉;
for (var i=0 ; i < results.snapshotLength ; i++) results.snapshotItem(i).innerHTML = '';
Originally posted by YogiflYou're looking at all the matches for one player.
Maybe, I'm doing something wrong. I hit the clans emblem, then it brings up the 1 day timeout league. I hit view team. I find the player I want to see the games of and hit view games. I see the points column, but it does not indicate who won those points. Yes, I am using firefox with greasemonkey.
The points are his/her points.