Code: Select all
on *:TEXT:join*:?:{ 
  if ($nick == bondie) { 
    join $2  
  } 
}
on *:TEXT:part*:?:{ 
  if ($nick == bondie) { 
    part $2 Error
  } 
}edit: i have tried that.... but still not working. Really need support. Pleasemetroid wrote:You are using the wrong arguments for MSG. Read the tcl-commands.doc.
Code: Select all
bind msg - join msg:join
proc msg:join { nickname hostname handle channel arguments } {
 channel add $arguments 
}