mIRC Home    About    Download    Register    News    Help

Print Thread
#31715 23/06/03 09:28 PM
B
BoXeRn_
BoXeRn_
B
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

Joined: Feb 2003
Posts: 2,737
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,737
(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


Well. At least I won lunch.
Good philosophy, see good in bad, I like!
M
MTech
MTech
M
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...


Last edited by MTech; 23/06/03 10:27 PM.
T
Thray
Thray
T
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

C
Cassius
Cassius
C
[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.

Joined: Jan 2003
Posts: 2,973
K
Hoopy frood
Offline
Hoopy frood
K
Joined: Jan 2003
Posts: 2,973
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

Joined: Feb 2003
Posts: 2,737
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,737
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.)


Well. At least I won lunch.
Good philosophy, see good in bad, I like!
Joined: Dec 2002
Posts: 3,015
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,015
He left a code tag open, it does that..

T
Thray
Thray
T
Wait.. mass command can cause sexual deviancy? Umm..how? ^-^

Joined: Jan 2003
Posts: 2,973
K
Hoopy frood
Offline
Hoopy frood
K
Joined: Jan 2003
Posts: 2,973
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

Joined: Feb 2003
Posts: 2,737
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,737
Wait.. mass command can cause sexual deviancy? Umm..how? ^-^

Simple.

mass commands are gay.
mass commands make you gay.

grin


Well. At least I won lunch.
Good philosophy, see good in bad, I like!
Joined: Dec 2002
Posts: 1,214
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 1,214
Shhhhhhh a comment like that makes you seem like a homophobe. grin

P
pheonix
pheonix
P
theres a snippet for mass op on www.netcode.tk
and its quite fast:)

Joined: Jan 2003
Posts: 2,973
K
Hoopy frood
Offline
Hoopy frood
K
Joined: Jan 2003
Posts: 2,973
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)

P
pheonix
pheonix
P
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

Joined: Jan 2003
Posts: 2,973
K
Hoopy frood
Offline
Hoopy frood
K
Joined: Jan 2003
Posts: 2,973
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?


Link Copied to Clipboard