mIRC Home    About    Download    Register    News    Help

Print Thread
W
WarlockW
WarlockW
W

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,671
G
Hoopy frood
Offline
Hoopy frood
G
Joined: Oct 2005
Posts: 1,671
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

W
WarlockW
WarlockW
W

Well Not On the network i am testing the script frown

O
onesikgypo
onesikgypo
O
i believe for ~'s you use

if ($nick isowner $chan)

N
NeUtRoN_StaR
NeUtRoN_StaR
N
$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.
W
WarlockW
WarlockW
W

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

N
NeUtRoN_StaR
NeUtRoN_StaR
N
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.
N
NeUtRoN_StaR
NeUtRoN_StaR
N
i would use
if ($nick !isop $chan)

D
Dertikter
Dertikter
D
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.

M
Mary_juana
Mary_juana
M
//echo -a $nick($chan,<nick>).pnick will catch any possible mode prefixes.


Link Copied to Clipboard