function ScoreBoardGUI::updatePlayer(%this, %clientId, %score, 
                                                %kills, %deaths)
{
   %text = ScoreBoardGUIList.getRowTextById(%clientId);
   if(%score !$= "null")
      %text = setField(%text, 1, %score);
   %text = setField(%text, 2, %kills);
   %text = setField(%text, 3, %deaths);
   ScoreBoardGUIList.setRowById(%clientId, %text);
   ScoreBoardGUIList.sortNumerical(1, %false);
   ScoreBoardGUIList.clearSelection();
}