View Single Post
  #14  
Old 04-02-2007, 10:51 PM
foxboi foxboi is offline
zzzzz
foxboi's Avatar
Join Date: Aug 2005
Posts: 101
foxboi is on a distinguished road
NPC Code:
//#CLIENTSIDE
function onPlayerChats()
{

if(player.chat.starts("/seat1"))
{

tokens = player.chat.tokenize();
if(tokens[1] == 1)
{
message(1);
}
else if (tokens[1] == 2){
message(2);
}
else if (tokens[1] == 3){
message(3);
}
else if (tokens[1] == 4){
message(4);
}
else if (tokens[1] == 5){
message(5);
}
else if (tokens[1] == 6){
message(6);
}
}
}

function onPlayerChats()
{

if(player.chat == "/reset"){
message("");

}
}



I have that but it still won't work.. everything else with setting of points work.. Not the /reset though..
Reply With Quote