mIRC Homepage
Posted By: FuSe Need help with something? - 21/11/03 09:00 AM
Sorry If there was a thread about this but...

How Do I make an auto message when I'm op-ed?

I want it to say 'Thanks for the @" when I get op-ed.

kthxbai
Posted By: Dr4g0n Re: Need help with something? - 21/11/03 10:16 AM
On *:op:#:{
if (%opthanks == on) { Halt }
if ($nick == $me) { msg $chan Thanks 4 tha @
set %opthanks off
.timer 1 10 set %opthanks on
}
}


and type /set %opthanks on
Posted By: Doqnach Re: Need help with something? - 21/11/03 11:50 AM
Quote:

$opnick refers to the nickname of the person being opped/deopped, $vnick the person being voiced/devoiced, and $hnick the person being helped/dehelped.


Code:
on *:OP:#: {
  if ($opnick == $me) && ($nick != $me) {
    msg $chan thank you for the @
  }
}
Posted By: FuSe Re: Need help with something? - 21/11/03 02:11 PM
thanx
© mIRC Discussion Forums