Jump to content

On Quit Help


Kingy

Recommended Posts

I'm writing myself a new theme in mIRC, but i'm having some trouble with the on quit.

 

so far i've got it,

 

On quit

echo -a .....

 

but if someone quits on another server then it echos it in the status window of that server, and not in the actual channel they are in. How do i do it properly to make it echo in the corresponding channel?

Link to comment
Share on other sites

you could do something like this

 

on ^*:QUIT: { 
  var %x 1
  while (%x <= $comchan($nick,0)) {
    echo $comchan($nick,%x) $nick QUITS: $1- 
    inc %x
  }
}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...