mIRC Home    About    Download    Register    News    Help

Print Thread
#33327 01/07/03 08:00 AM
Joined: Jul 2003
Posts: 16
X
xamp Offline OP
Pikka bird
OP Offline
Pikka bird
X
Joined: Jul 2003
Posts: 16
hi! smile
i got some problems, i hope u can help me

1. when i wanna op for example 10ppl is only op's 3 how i can set the limit to unlimited? and same thing to voice

2. is this kind of script possible:
/ao <nick> <channel> --> set nick to auto op list automatically to that <channel>
/av --> same thing with voice

-xamp-

#33328 01/07/03 08:18 AM
Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
alias mo {
var %i 1
while (%i <= $nick($chan,0)) {
if ($nick($chan,%i) !isop $chan) {
mode # +o $nick($chan,%i)
}
inc %i
}
}

alias mv {
var %i 1
while (%i <= $nick($chan,0)) {
if ($nick($chan,%i) !isvoice $chan) {
mode # +v $nick($chan,%i)
}
inc %i
}
}

alias mh {
var %i 1
while (%i <= $nick($chan,0)) {
if ($nick($chan,%i) !ishop $chan) {
mode # +h $nick($chan,%i)
}
inc %i
}
}

or if you dont want to mass op,half-op or voice, use:

menu nicklist {
Mass Selected: $$?="+ or -" $+ $str($$?="o,v,h",$numtok($snicks,44)) $replace($snicks,$chr(44),$chr(32))
}

Last edited by pheonix; 01/07/03 08:23 AM.

new username: tidy_trax
#33329 01/07/03 12:06 PM
Joined: May 2003
Posts: 215
Fjord artisan
Offline
Fjord artisan
Joined: May 2003
Posts: 215
Quote:

2. is this kind of script possible:
/ao <nick> <channel> --> set nick to auto op list automatically to that <channel>
/av --> same thing with voice


/help /aop
/help /avoice


- Jason
#33330 09/07/03 09:09 PM
Joined: Mar 2003
Posts: 54
J
Babel fish
Offline
Babel fish
J
Joined: Mar 2003
Posts: 54
Um, phoenix, that'll flood the user off almost always in a large channel. Use $modespl and multiple +o modes in one line.


Link Copied to Clipboard