mIRC Home    About    Download    Register    News    Help

Print Thread
#39264 02/08/03 07:29 AM
Joined: Jul 2003
Posts: 16
M
Pikka bird
OP Offline
Pikka bird
M
Joined: Jul 2003
Posts: 16
how can i save the last channel i join

for ej MaGoNeGro joins #irc_chat
later
MaGoNeGro out #irc_chat
MaGoNeGro join #mexico


%lastchannel #irc_chat %chanel #mexico


how can i do it thnxxxxxxxxxxx

#39265 02/08/03 07:49 AM
Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
Code:
on *:JOIN:#:{
  if ( $nick == $me ) {
    set %channel #
  }
}
on *:PART:#:{
  if ( $nick == $me ) {
    set %lastchannel #
  }
}

Sets %channel to the last channel you joined and %lastchannel to the last channel you left.


Link Copied to Clipboard