Need Help With Massop Script
#31715
23/06/03 09:28 PM
|
Joined: Apr 2003
Posts: 29
BoXeRn_
OP
Ameglian cow
|
OP
Ameglian cow
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
|
|
|
Re: Need Help With Massop Script
#31716
23/06/03 09:35 PM
|
Joined: Feb 2003
Posts: 2,801
Raccoon
Hoopy frood
|
Hoopy frood
Joined: Feb 2003
Posts: 2,801 |
(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!
|
|
|
Re: Need Help With Massop Script
#31717
23/06/03 10:27 PM
|
Joined: Mar 2003
Posts: 437
MTech
Fjord artisan
|
Fjord artisan
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.
|
|
|
Re: Need Help With Massop Script
#31718
23/06/03 11:19 PM
|
Joined: Jun 2003
Posts: 114
Thray
Vogon poet
|
Vogon poet
Joined: Jun 2003
Posts: 114 |
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.
|
|
|
Re: Need Help With Massop Script
#31719
24/06/03 12:51 AM
|
Joined: Dec 2002
Posts: 20
Cassius
Ameglian cow
|
Ameglian cow
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."
|
|
|
Re: Need Help With Massop Script
#31720
24/06/03 01:16 AM
|
Joined: Jan 2003
Posts: 3,012
KingTomato
Hoopy frood
|
Hoopy frood
Joined: Jan 2003
Posts: 3,012 |
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
|
|
|
Re: Need Help With Massop Script
#31721
24/06/03 02:22 AM
|
Joined: Feb 2003
Posts: 2,801
Raccoon
Hoopy frood
|
Hoopy frood
Joined: Feb 2003
Posts: 2,801 |
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!
|
|
|
Re: Need Help With Massop Script
#31722
24/06/03 02:34 AM
|
Joined: Dec 2002
Posts: 3,138
Collective
Hoopy frood
|
Hoopy frood
Joined: Dec 2002
Posts: 3,138 |
He left a code tag open, it does that..
|
|
|
Re: Need Help With Massop Script
#31723
24/06/03 03:11 AM
|
Joined: Jun 2003
Posts: 114
Thray
Vogon poet
|
Vogon poet
Joined: Jun 2003
Posts: 114 |
Wait.. mass command can cause sexual deviancy? Umm..how? ^-^
------------- I am the self-appointed God of needlessly complex mIRCscript.
|
|
|
Re: Need Help With Massop Script
#31724
24/06/03 07:16 AM
|
Joined: Jan 2003
Posts: 3,012
KingTomato
Hoopy frood
|
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
|
|
|
Re: Need Help With Massop Script
#31725
24/06/03 07:38 AM
|
Joined: Feb 2003
Posts: 2,801
Raccoon
Hoopy frood
|
Hoopy frood
Joined: Feb 2003
Posts: 2,801 |
Wait.. mass command can cause sexual deviancy? Umm..how? ^-^Simple. mass commands are gay. mass commands make you gay. 
Well. At least I won lunch. Good philosophy, see good in bad, I like!
|
|
|
Re: Need Help With Massop Script
#31726
24/06/03 05:34 PM
|
Joined: Dec 2002
Posts: 1,237
The_Game
Hoopy frood
|
Hoopy frood
Joined: Dec 2002
Posts: 1,237 |
Shhhhhhh a comment like that makes you seem like a homophobe.
|
|
|
Re: Need Help With Massop Script
#31727
24/06/03 07:46 PM
|
Joined: May 2003
Posts: 2,265
pheonix
Hoopy frood
|
Hoopy frood
Joined: May 2003
Posts: 2,265 |
theres a snippet for mass op on www.netcode.tkand its quite fast:)
new username: tidy_trax
|
|
|
Re: Need Help With Massop Script
#31728
25/06/03 01:03 AM
|
Joined: Jan 2003
Posts: 3,012
KingTomato
Hoopy frood
|
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
|
|
|
Re: Need Help With Massop Script
#31729
25/06/03 09:14 AM
|
Joined: May 2003
Posts: 2,265
pheonix
Hoopy frood
|
Hoopy frood
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
|
|
|
Re: Need Help With Massop Script
#31730
26/06/03 01:54 AM
|
Joined: Jan 2003
Posts: 3,012
KingTomato
Hoopy frood
|
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
|
|
|
|
|