Eh, well, you could always try a hack if you feel crafty. It'd be a bit more complicated, though.
package Fancy_Badges
{
function NPL_List::addRow(%this, %row, %text, %index)
{
if(%row == 0)
if(%text $= "A")
%text = "<bitmap:....>";
else if(%text $= "S")
%text = "<bitmap:....>";
return parent::addRow(%this, %row, %text, %index);
}
};
activatePackage(Fancy_Badges);
Or something like that.
* I take no responsibility if this untested code snippet contains syntax errors or outright destroys functionality of the player list and/or your game.