It'd be nice to get a function to display a specific player's profile. Nothing complicated.
Small example:
NPC Code:
function onPlayerChats() {
if (player.chat.starts("find")) {
temp.toks = player.chat.tokenize();
getPlayerProfile(temp.toks[1], 0);
}
}
There could also be ways to get certain information about it.
0 = display full profile
1 = return the name
2 = return the age
3 = return the email address
etc.