Looks like this got pretty off track, but I'll share the one I made for Utopia.
Script class_findname:
PHP Code:
public function findName( i )
{
this.look = { "account", "communityname", "nick", "id" };
for ( temp.a : allplayers )
{
for ( temp.n : this.look )
{
if ( makevar( "temp.a." @ temp.n ) == i )
{
return temp.a.account;
}
}
}
for ( temp.a : allplayers )
{
for ( temp.n : this.look )
{
if ( makevar( "temp.a." @ temp.n ).starts( i ) )
{
return temp.a.account;
}
}
}
return "Error!";
}