View Single Post
  #1  
Old 09-26-2006, 11:18 PM
Bl0nkt Bl0nkt is offline
Era Developer
Bl0nkt's Avatar
Join Date: Mar 2005
Location: Pennsylvania
Posts: 1,589
Bl0nkt will become famous soon enough
Send a message via AIM to Bl0nkt
getPlayerProfile("string", var)

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.
Reply With Quote