View Single Post
  #5  
Old 09-27-2006, 02:00 PM
Yen Yen is offline
Banned
Yen's Avatar
Join Date: Oct 2005
Location: Nova Scotia, Canada
Posts: 1,085
Yen is an unknown quantity at this point
Send a message via AIM to Yen Send a message via MSN to Yen
Quote:
Originally Posted by xAndrewx View Post
NPC Code:
function onPlayerChats() {
if (player.chat.starts("find")) {
temp.toks = player.chat.tokenize();
getPlayerProfile(temp.toks[1], 0);
}
}


Learn to stylise

NPC Code:
function onPlayerChats() 
{
if (player.chat.starts("find"))
{
player.chat.tokenize()[1].showProfile();
}
}

...
You've failed me.
Reply With Quote