the ! prefix doesnt seem to work on this event ? i was guessing that is because the $nick that has left is unavailable for comparison i looked thru the help file for another way to exclude myself from the event but came up empty i tried writing it in like so
Code:
 
on !1:unotify: {
 if ( $nick == $me ) { goto end } 
 else do this ......
}
 

but still thier is no way to make the comparison any ideas would be greatly appreciated smile

ok i was able to get this to work effectively i added a on nick event
Code:
  
on 1:nick: {
  if ( $nick == $me ) && ( $newnick == nick1 ) { set %abc on }
}
on !1:unotify: {
  if ( %abc == on ) { goto end }
  elseif ( $nick == nick1 ) { /nick nick2 | set %abc off }
  :end
}


if there is a quick an affective prefix to do this or an easier way i am still intersted thx again smile

Last edited by Cheech; 07/02/03 03:55 AM.