Unless I am confused.. here are the ways to check information / read pms etc.
PHP Code:
// Read PM
findPlayer("ACCOUNT").openexternalpm(bool);
// false -> open a blank pm window
// true -> open a pm sent by a player defined by 'account'
// List of pms sent to F2 Window
for (temp.var : allplayers)
{
if (!temp.var.pmswaiting()) continue;
echo(format("%s -> %s", temp.var.account, (temp.var.isadmin ? "Admin" : temp.var.isguildpm() ? "Guild" : temp.var.ismasspm() ? "Mass" : "Regular")));
}
Hopefully that could help in some way.