mIRC Home    About    Download    Register    News    Help

Print Thread
#185906 15/09/07 09:14 PM
Joined: Oct 2005
Posts: 827
P
pouncer Offline OP
Hoopy frood
OP Offline
Hoopy frood
P
Joined: Oct 2005
Posts: 827
does the ! mean that the event halts on yourself?

example

on !*:TEXT:*hello*:#:{
}

pouncer #185909 15/09/07 09:22 PM
Joined: Jan 2006
Posts: 111
N
Vogon poet
Offline
Vogon poet
N
Joined: Jan 2006
Posts: 111
Not exactly, ! means the event will not be triggered on yourself, but it is meaningless with the text event. Text events will never be triggered on yourself. You can use the ! prefix e.g. with join and op events to prevent them being triggered if you join a channel or if you op somebody. Read the help file for more information (/help remote).

pouncer #185911 15/09/07 09:24 PM
Joined: Sep 2005
Posts: 2,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881
Yeah.

Code:
on !*:op:#:{ msg $chan $opnick was opped by somebody other than me :o! }


Edit: /help Event Prefixes

Last edited by hixxy; 15/09/07 09:24 PM.
hixxy #185912 15/09/07 09:28 PM
Joined: Oct 2005
Posts: 827
P
pouncer Offline OP
Hoopy frood
OP Offline
Hoopy frood
P
Joined: Oct 2005
Posts: 827
ahh yep i see now, thanks guys.


Link Copied to Clipboard