mIRC Homepage
Posted By: BoXeRn_ Need Help With Massop Script - 23/06/03 09:28 PM
Anyone That Have A Fast Massop Script?
like :
[23:22:15] BoXeRn sets mode +oooo nick1 nick2 nick3 nick4
[23:22:15] BoXeRn sets mode +oooo nick5 nick6 nick7 nick8
[23:22:15] BoXeRn sets mode +oooo nick9 nick10 nick11
nick12
Because I Have Made An Channel That Is Op4all , and i have this remote ;
On @*!:JOIN:#:/timer1 1 1 /massop $chan | halt
thnx
Posted By: Raccoon Re: Need Help With Massop Script - 23/06/03 09:35 PM
(As an #mIRC regular) "We don't assist with MASS commands."

I don't think you'll find anyone here who will help you either.
Besides, unless you're an Oper for a large network and assist with ChanFix, you will never legitimately need this ability.

If you want a channel where everyone is oped.
On @*:JOIN:#chan: mode $chan +o $nick

- Raccoon
Posted By: MTech Re: Need Help With Massop Script - 23/06/03 10:27 PM
menu nicklist {
MassOp:/mode $chan +oooo $$1 $2 $3 $4 | /mode $chan +oooo $$5 $6 $7 $8 | /mode $chan +oooo $$9 $10 $11 $12 | /mode $chan +oooo $$13 $14 $15 $16 | /mode $chan +oooo $$17 $18 $19 $20 | /mode $chan +oooo $$21 $22 $23 $24 | /mode $chan +oooo $$25 $26 $27 $28 | /mode $chan +oooo $$29 $30 $31 $32 | /mode $chan +oooo $$33 $34 $35 $36 | /mode $chan +oooo $$37 $38 $39 $40 | /mode $chan +oooo $$41 $42 $43 $44 | /mode $chan +oooo $$45 $46 $47 $48 | /mode $chan +oooo $$49 $50 $51 $52
}


all the modes on one line

u dont need that other thing u use just righclick and select 52 nicks and click massop

add more #'s if u need to...

Posted By: Thray Re: Need Help With Massop Script - 23/06/03 11:19 PM
Code:
alias cop { 
 set %t.n $nick($chan,0,a) 
 set %t.c 1
 while (%t.c < $calc(%t.n + 1)) {
  mode $chan +o $Nick($chan,%t.c,a)
 inc %t.c 1 
 }
 unset %t.c
 unset %t.n
}
  


This is spammy, and will only do it one person at a time, but it gets it done. Like Raccoon said, you should not need this script unless you want to spam people or create anarchy of some kind. All the same, I was bored and wanting to increase my number of posts.
A few notes.. it works by doing /cop in a channel. It will not work in a remote script. You can change that by going through and replacing all occurences of $chan with $1 and using /cop #Channel
Posted By: Cassius Re: Need Help With Massop Script - 24/06/03 12:51 AM
[code]
menu nicklist{
Op:mode # +o $*
}

on *:join:#yourchannelnamehere:/mode # +o $nick
[code]

mirc replaces for everyone selected on the nicklist.

dunno if your server has any sort of flood protection for modes or what not...
*shrugs* you can think about that yourself.

I can understand the concept behind this idea, but a lot of
other people might not. Enjoy it while it lasts.
Posted By: KingTomato Re: Need Help With Massop Script - 24/06/03 01:16 AM
Code:
alias massmode {
  var %chan = $active, %nick = 1, %nicks
  while ($nick(%chan, %nick)) {
    var %nicks = $addtok(%nicks, $ifmatch, 32)
    if ($numtok(%nicks, 32) == $modespl) || (%nick == $nick(%chan, 0)) {
      /mode %chan $+($left($$1, 1),$str($right($$1, 1),$modespl)) %nicks
      /unset %nicks
    }
    /inc %nick
  }
}


/massmoe +v
/massmode +o
/massmode -h

Any mode u want >:D
Posted By: Raccoon Re: Need Help With Massop Script - 24/06/03 02:22 AM
What the hell did you do to your 'Post Extras'?

(oh, and btw.. lets end this thread. Mass commands are generally frowned upon, as they encourage channel disruption and sexual deviancy.)
Posted By: Collective Re: Need Help With Massop Script - 24/06/03 02:34 AM
He left a code tag open, it does that..
Posted By: Thray Re: Need Help With Massop Script - 24/06/03 03:11 AM
Wait.. mass command can cause sexual deviancy? Umm..how? ^-^
Posted By: KingTomato Re: Need Help With Massop Script - 24/06/03 07:16 AM
Its not a mass kick, i don't worry that much. Anyways, ppl with some knowhow can set "protected" user levels as I have on my channel, as well as have a mass-mode kick such as i >:D
Posted By: Raccoon Re: Need Help With Massop Script - 24/06/03 07:38 AM
Wait.. mass command can cause sexual deviancy? Umm..how? ^-^

Simple.

mass commands are gay.
mass commands make you gay.

grin
Posted By: The_Game Re: Need Help With Massop Script - 24/06/03 05:34 PM
Shhhhhhh a comment like that makes you seem like a homophobe. grin
Posted By: pheonix Re: Need Help With Massop Script - 24/06/03 07:46 PM
theres a snippet for mass op on www.netcode.tk
and its quite fast:)
Posted By: KingTomato Re: Need Help With Massop Script - 25/06/03 01:03 AM
I already posted one phenix, and besides the one they have doesn't base itself on the allowed server mode-change limit (i.e. only 6 allowed modes per /mode commad, 8 allowed, etc)
Posted By: pheonix Re: Need Help With Massop Script - 25/06/03 09:14 AM
i noticed but the 1 i linked to uses $snicks, so u can use it as a full mass, or u can mass everybody else cept someone u think will abuse it
Posted By: KingTomato Re: Need Help With Massop Script - 26/06/03 01:54 AM
to me a mass mode is everyone in the channel, not the mass of those selected... Anyways, what if you select 20 nicks--not your left with 20 mode changes on a server that might allow only 6?
© mIRC Discussion Forums