mIRC Home    About    Download    Register    News    Help

Print Thread
S
state
state
S
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.
S
state
state
S
My misstake. missed a } shame you cant delete a thread.

Joined: Jul 2007
Posts: 1,124
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Jul 2007
Posts: 1,124
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,168
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,168
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.

S
state
state
S
Will take notice of this for future ref russle.

thanks


Link Copied to Clipboard