Top

Masswave Alias


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Jul 14, 2009
Last Updated  Jul 14, 2009
Tags  action  describe  highlight  list  mirc  script  spam  text 

Introduction

From the channel you'd like to Masswave in, simply use the alias /masswave to "wave" to each user in the channel.

Grab the Code

alias masswave { 
  var %x = 1 
  while (%x <= $nick(#,0)) {
    if ($nick(#,%x) != $me) {
      describe # waves to $nick(#,%x)
    }
    inc %x
  }
}

Comments

  (7)  RSS
Lord-Harlot
Comments: 60
 
mIRC Snippet:  Masswave Alias
Posted on Jul 14, 2009 10:42 pm
My dear RePod.

I don't know what I can say about this. It has everything a good script should have. It has a while loop. It's an alias and it has an if statement. I don't know what else I could want. What if I do this in a room of over 9000 people and then get banned for atleast 100 years. Will you compensate me? If so what compensation will I get?

Good Morn.
RePod
Comments: 14
 
mIRC Snippet:  Masswave Alias
Posted on Jul 14, 2009 10:45 pm
Thanks for your positive comments Lord-Harlot.

Banning in today's world is futile, as much people care not about today's standards.

Compensation = Over 9000 Pies.

Good eve.
Lord-Harlot
Comments: 60
 
mIRC Snippet:  Masswave Alias
Posted on Jul 14, 2009 10:48 pm
RePod.

I'm sorry but I can't help you. You are too far gone.
Asterisk
Comments: 1
 
mIRC Snippet:  Masswave Alias
Posted on Jul 14, 2009 10:49 pm
You all scare me
Ancient_Mew
Comments: 1
 
mIRC Snippet:  Masswave Alias
Posted on Jul 14, 2009 10:51 pm
Lol wtf, I have two accounts
Jethro_
Comments: 437
 
mIRC Snippet:  Masswave Alias
Posted on Jul 15, 2009 12:36 am
You should add a timer to delay the "wave" every two seconds at least, so that you won't get flooded or flood the channel. For a big, busy channel to warrant a kick/ban, it's best you do this:
Code:
alias masswave {
  var %x = 1
  while (%x <= $nick(#,0)) {
    if ($nick(#,%x) != $me) {
      .timer 1 $calc(%x * 2) describe # waves to $v1
    }
    inc %x
  }
}
You can use $v1 identifier to return the total nicks in the channel. Also, you can just use
Code:
while ($nick(#,%x)) {
instead of
Quote:
while (%x <= $nick(#,0)) {
They are the same thing. Now, Lord-Harlot won't worry about being banned this way. But then again, it's up to the op...some ops don't particularly like the idea of scripts doing mass thingies.

lullx
Comments: 1
 
mIRC Snippet:  Masswave Alias
Posted on Aug 13, 2009 4:48 am
to use RePod's script in my own channel,or not to use RePod's script. . .

well at least I have the option of joining in on the fun now.

Commenting Options

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

  
Bottom