mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jan 2004
Posts: 133
W
Vogon poet
OP Offline
Vogon poet
W
Joined: Jan 2004
Posts: 133

On a network that uses: ~ and & and @

IF: $nick isop = op
what is command for : ~ & <signs ?

if ( %nick isop $chan ) goto end
^^^^ < I need this to igone everyone from OPS up!

Thanks ..

Joined: Oct 2005
Posts: 1,741
G
Hoopy frood
Offline
Hoopy frood
G
Joined: Oct 2005
Posts: 1,741
There is no command higher than @op (isop). I'm not sure how mIRC treats the ~& prefixes, but I think that anyone with those modes is also @op'd, so $nick isop $chan should be true for them.

-genius_at_work

Joined: Jan 2004
Posts: 133
W
Vogon poet
OP Offline
Vogon poet
W
Joined: Jan 2004
Posts: 133

Well Not On the network i am testing the script frown

Joined: Oct 2005
Posts: 122
O
Vogon poet
Offline
Vogon poet
O
Joined: Oct 2005
Posts: 122
i believe for ~'s you use

if ($nick isowner $chan)

Joined: Mar 2005
Posts: 212
N
Fjord artisan
Offline
Fjord artisan
N
Joined: Mar 2005
Posts: 212
$nick($chan,nick,~)

$nick($chan,nick,&)

each of the above returns a number if the nick is the respective operator or null if they are not

there is also the isowner operator as mentioned above
im not aware of any operator for +a
so you may have to use the method ive listed
,good luck

Last edited by NeUtRoN_StaR; 06/01/06 05:26 AM.
Joined: Jan 2004
Posts: 133
W
Vogon poet
OP Offline
Vogon poet
W
Joined: Jan 2004
Posts: 133

darn need three different comands .. for this to work ?

Joined: Mar 2005
Posts: 212
N
Fjord artisan
Offline
Fjord artisan
N
Joined: Mar 2005
Posts: 212
actually if your looking to catch anything above ops but not be specific isop will do the job just fine

Last edited by NeUtRoN_StaR; 06/01/06 05:36 AM.
Joined: Mar 2005
Posts: 212
N
Fjord artisan
Offline
Fjord artisan
N
Joined: Mar 2005
Posts: 212
i would use
if ($nick !isop $chan)

Joined: Nov 2004
Posts: 21
D
Ameglian cow
Offline
Ameglian cow
D
Joined: Nov 2004
Posts: 21
I use:
Code:
 if ($left($nick(#,$nick).pnick,1) isin $prefix) &amp;&amp; ($left($nick(#,$nick).pnick,1) == ~) 


Change ~ to & if you wanted it for channel admins of course.

Joined: May 2005
Posts: 79
M
Babel fish
Offline
Babel fish
M
Joined: May 2005
Posts: 79
//echo -a $nick($chan,<nick>).pnick will catch any possible mode prefixes.


Link Copied to Clipboard