You just have to figure out the position, and check %text, what if it's not H, S, or A?

gui name is NPL_List and Position is 0 0, that all I got this.
But Ephialtes wrote this script:
function RTBSI_onServerInfo(%tcp,%line,%type,%data)
{
if(%type $= "PLIST")
{
%players = strReplace(%data,"~","\t");
for(%i=0;%i<getFieldCount(%players);%i++)
{
%player = strReplace(getField(%players,%i),";","\t");
%status = getField(%player,2);
if(%status $= 3)
%status = "H";
else if(%status $= 2)
%status = "S";
else if(%status $= 1)
%status = "A";
else
%status = "-";
RTBSI_PlayerList.addRow(getField(%player,2),getField(%player,2) TAB %status TAB getField(%player,0) TAB getField(%player,3) TAB getField(%player,1),0);
}
}