mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jun 2004
Posts: 133
S
state Offline OP
Vogon poet
OP Offline
Vogon poet
S
Joined: Jun 2004
Posts: 133
when %revenge is ON works. But if revenge is OFF else { does not work

mirc dont rejoin

Code:
on 1:KICK:#: {
  if ($knick == $me) && (%revenge == ON) {
    join #
    .msg juicer op pass
    .timerrevenge 1 3 kick # $nick removed
    else {
      join #
      .msg juicer op pass
      .timerdeop 1 3 mode # -ov $nick
    }
  }
}

Last edited by state; 11/04/09 07:08 PM.
Joined: Jun 2004
Posts: 133
S
state Offline OP
Vogon poet
OP Offline
Vogon poet
S
Joined: Jun 2004
Posts: 133
My misstake. missed a } shame you cant delete a thread.

Joined: Jul 2007
Posts: 1,129
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Jul 2007
Posts: 1,129
Code:
on 1:KICK:#: {
  if ($knick == $me) && (%revenge == ON) {
    join #
    .msg juicer op pass
    .timerrevenge 1 3 kick # $nick removed
  }
  else {
    join #
    .msg juicer op pass
    .timerdeop 1 3 mode # -ov $nick
  }
}

Ok, I see you already spotted the issue.

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
You can delete a thread within a certain time limit.
If the thread can be edited by you, then it can be deleted also.

You get to the deletion option by going to edit the thread first.

Joined: Jun 2004
Posts: 133
S
state Offline OP
Vogon poet
OP Offline
Vogon poet
S
Joined: Jun 2004
Posts: 133
Will take notice of this for future ref russle.

thanks


Link Copied to Clipboard