View Single Post
  #2  
Old 08-26-2006, 05:56 PM
pig132 pig132 is offline
professional troll
Join Date: May 2006
Posts: 260
pig132 will become famous soon enough
Nono, i want it to disconnect the players chat..like if i type /dc pig132, it disconnects pig132. I know how to do it, but i just cant get how to make it disconnect them..This is what i have so far..
PHP Code:
//#CLIENTSIDE
function onPlayerchats() 
{
if (
player.chat.starts("/dc")) 
{
tokens player.chat.tokenize;
}
with (getplayer(tokens[1])) {
serverwarp("Login");
}

Reply With Quote