View Single Post
  #7  
Old 11-02-2007, 02:36 PM
Angel_Light Angel_Light is offline
Varia Developer
Angel_Light's Avatar
Join Date: Nov 2005
Location: Knoxville, TN
Posts: 1,684
Angel_Light is on a distinguished road
Send a message via AIM to Angel_Light Send a message via MSN to Angel_Light
add this like a weapon

PHP Code:
function onActionServerSide()
{

  if ( 
params0] == "Kick")
    
findPlayerparams1]).setLevel2"onlinestartlocal.nw"3232);

  else if ( 
params0] == "DC")
  {

    
withfindPlayerparams1]))
    {

      
triggerclient"gui"this.name"DC"params1]);
    }
  }  
}

//#CLIENTSIDE
function onPlayerChatschat
{

  if ( 
chat.starts"/kick"))
    
triggerserver"gui"this.name"Kick"player.chat.substring(6).trim()); 

  else if ( 
chat.starts"/dc"))
    
triggerserver"gui"this.name"DC"player.chat.substring(4).trim()); 

}

function 
onActionClientSide() 
{

  if ( 
params0] == "DC"
  {

    
serverWarp"Login1");
  }

Commands:
/kick account
/dc account

Examples:
/kick Angel_Light
/dc Angel_Light
__________________
Deep into the Darkness peering...
Reply With Quote