mIRC Home    About    Download    Register    News    Help

Print Thread
#31715 23/06/03 09:28 PM
Joined: Apr 2003
Posts: 29
B
BoXeRn_ Offline OP
Ameglian cow
OP Offline
Ameglian cow
B
Joined: Apr 2003
Posts: 29
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,812
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,812
(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!
Joined: Mar 2003
Posts: 437
M
Fjord artisan
Offline
Fjord artisan
M
Joined: Mar 2003
Posts: 437
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.
Joined: Jun 2003
Posts: 114
T
Vogon poet
Offline
Vogon poet
T
Joined: Jun 2003
Posts: 114
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


-------------
I am the self-appointed God of needlessly complex mIRCscript.
Joined: Dec 2002
Posts: 20
C
Ameglian cow
Offline
Ameglian cow
C
Joined: Dec 2002
Posts: 20
[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.


"Illegitimati non Carborundum" -> "Don't let the bastards grind you down."
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
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


-KingTomato
Joined: Feb 2003
Posts: 2,812
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,812
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,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
He left a code tag open, it does that..

Joined: Jun 2003
Posts: 114
T
Vogon poet
Offline
Vogon poet
T
Joined: Jun 2003
Posts: 114
Wait.. mass command can cause sexual deviancy? Umm..how? ^-^


-------------
I am the self-appointed God of needlessly complex mIRCscript.
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
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


-KingTomato
Joined: Feb 2003
Posts: 2,812
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,812
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,237
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 1,237
Shhhhhhh a comment like that makes you seem like a homophobe. grin

Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
theres a snippet for mass op on www.netcode.tk
and its quite fast:)


new username: tidy_trax
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
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)


-KingTomato
Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
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


new username: tidy_trax
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
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?


-KingTomato

Link Copied to Clipboard