
09-27-2006, 02:00 PM
|
|
Banned
|
 |
Join Date: Oct 2005
Location: Nova Scotia, Canada
Posts: 1,085
|
|
Quote:
Originally Posted by xAndrewx
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. |
|
|
|