Thread: kicking?
View Single Post
  #3  
Old 11-11-2007, 01:12 AM
Rapidwolve24 Rapidwolve24 is offline
North*
Join Date: Oct 2007
Location: Massachusetts
Posts: 178
Rapidwolve24 is on a distinguished road
Send a message via AIM to Rapidwolve24 Send a message via MSN to Rapidwolve24
It has to be scripted.

PHP Code:
function onPlayerChats()
{
  if (
player.chat.starts(":kick"))
  {
    
temp.kickplayer findPlayer(player.chat.substring(5).trim());
    
    if (
temp.kickplayer.level == player.level)
    {
      
temp.kickplayer.setlevel2(levelxy);
    }
  }

For ":kick account"

Last edited by Rapidwolve24; 11-11-2007 at 01:24 AM..
Reply With Quote