mIRC Home    About    Download    Register    News    Help

Print Thread
#32992 29/06/03 06:00 PM
Joined: Jun 2003
Posts: 92
K
k1ll3rz Offline OP
Babel fish
OP Offline
Babel fish
K
Joined: Jun 2003
Posts: 92
on ^*:ACTION:*:#: {
echo $chan 14 $+ $asctime(h:nn:sstt) 15A14ction:15 $nick 14 $+ $1-
halt
}
on ^*:action:*:?: {
echo $nick 14 $+ $asctime(h:nn:sstt) 15Q14uery: 15A14ction:15 $nick 14 $+ $1-
halt
}

Those R Not Tricking in mirc6.03 when someone does an action. can sumone help?


k1ll3rz
Joined: Dec 2002
Posts: 774
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 774
other interfering events?
/remote on ??


Code:
//if ( khaled isgod ) echo yes | else echo no
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Haltdef maybe?

Joined: Dec 2002
Posts: 483
Pan-dimensional mouse
Offline
Pan-dimensional mouse
Joined: Dec 2002
Posts: 483
whats the difference between halt and.. haltdef? blush confused

Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
From the mIRC help file.
Halt:
The /halt command halts a script and prevents any further processing.
Haltdef:
If you only want to halt the default text without /halting the entire script, you can use the /haltdef command.
The /haltdef command halts default text and events.

Joined: Jun 2003
Posts: 92
K
k1ll3rz Offline OP
Babel fish
OP Offline
Babel fish
K
Joined: Jun 2003
Posts: 92
same thing with /remote on ??, and /remote off, and haltdef. i think the on action may be wrong


k1ll3rz
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Try this; it works for me. smile
Code:
on ^*:ACTION:*:#: {
  echo -t $chan $asctime(h:nn:sstt) 15C14hannel 15A14ction: $nick $1- 
  haltdef
}

on ^*:ACTION:*:?: {
  echo -t $nick $asctime(h:nn:sstt) 15Q14uery 15A14ction: $nick $1- 
  haltdef
}


Link Copied to Clipboard