mIRC Home    About    Download    Register    News    Help

Print Thread
#255855 27/11/15 05:14 PM
Joined: Nov 2015
Posts: 14
L
Lopin Offline OP
Pikka bird
OP Offline
Pikka bird
L
Joined: Nov 2015
Posts: 14
Hi. thing I would do is I write in private of someone getting in another room the entire debug, what I say and what he says user.

For example if the user has level 50, I want you to leave the room debug everything that is said in private, what he says and what I say.

Code:
on 50:text:*:?:{
/msg #debug $nick : $1- 
  
}
 


but I can not put to debug what I also write.

thanks

Joined: Jul 2006
Posts: 4,151
W
Hoopy frood
Offline
Hoopy frood
W
Joined: Jul 2006
Posts: 4,151
Use on input:

Code:
on *:input:?:{
;check that the user you're talking to has level 50
if ($istok($remove($level($address($active,2)),=),50,44)) $&
&& (!$istok(/ $comchar,$left($1,1),32)) msg #debug $me : $1-
}


#mircscripting @ irc.swiftirc.net == the best mIRC help channel

Link Copied to Clipboard