Top

Mass


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  3.0 (of 1 scores)
Date Added  Dec 19, 2008
Last Updated  Jan 02, 2009
Tags  mass  script 

Introduction

This is a simple mass script. I have seen many of these, but they all have trouble with huge amounts of people. Mine is designed for few people or LOTS.
these are examples of how to use it.
/mass - v
/mass + v
/mass - o
/mass + o
You must be in the channel.

Grab the Code

alias mass { var %chanpeeps $nick($chan,0,rvo)
  var %mass1 1, %mass2 2, %mass3 3, %mass4 4, %mass5 5, %mass6 6 
  while (%chanpeeps > %mass1) { mode $chan $+($1,$str($2,6)) $nick($chan,%mass1,rvo) $nick($chan,%mass2,rvo) $nick($chan,%mass3,rvo) $nick($chan,%mass4,rvo) $nick($chan,%mass5,rvo) $nick($chan,%mass6,rvo) | inc %mass1 5 | inc %mass2 5 | inc %mass3 5 | inc %mass4 5 | inc %mass5 5 | inc %mass6 5 
  }
}
 

Comments

  (3)  RSS
Xpl0reR
Comments: 223
 
mIRC Snippet:  Mass
Posted on Dec 19, 2008 5:24 pm
Code:
alias mass {
  if ($regex($1-,/^[+-][ovb]$/)) {
    var %a = 1, %nicks
    while ($nick(#,%a) != $null) {
      if ($v1 != $me) {
        var %nicks = %nicks $v1
        if ($modespl == $numtok(%nicks,32)) { .mode # $+($left($1,1),$str($right($1,1),$v2)) %nicks | var %nicks }
      }
      inc %a
    }
    if (%nicks != $null) .mode # $+($left($1,1),$str($right($1,1),$numtok(%nicks,32))) %nicks
  }
  else echo -a Specify A Correct Mode: [+|-] [o|v|b]
}


:)
Vermillion
Comments: 2
 
mIRC Snippet:  Mass
Posted on Dec 19, 2008 7:41 pm
What is the correct syntax? I tried /mass +o and /mass + o :( Won't work.. I just get the incorrect syntax echo.
Acclamator
Comments: 30
 
mIRC Snippet:  Mass
Posted on Dec 20, 2008 7:44 am
It works perfect for me, are you sure you are running the newest mirc?

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom