Top

Saraid - sajoin n times.


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  3.6 (of 8 scores)
Date Added  Aug 20, 2008
Last Updated  Aug 21, 2008
Tags  ircop  join  mirc  raid  sajoin  saraid 

Introduction

/saraid is for IRCops to sajoin someone to n channels.
Use: /saraid [-a] <nick> [channel] <n>
The []'s are not necessary but if you call the "a" switch You will need to include a channel prefix.
When specifying the channel do not include the #.

Example:
/saraid nick 30
This will sajoin nick to all channels from #1 to #30

/saraid -a nick faggot 300
This will sajoin nick to all channels from #faggot1 to #faggot300

Installation:
Copy to remote (alt+r), save and/or click ok.

Grab the Code

alias saraid {
  if ($1 == help) {
    linesep
    echo -a /saraid is for IRCops to sajoin someone to n channels.
    echo -a Use: /saraid [-a] <nick> [channel] <n>
    echo -a The bold is not necessary but if you call the "a" switch You will need to include a channel prefix.
    echo -a When specifying the channel do not include the $chr(35) $+ .
    linesep
    halt
  }
  set %s 1
  if ($left($1,1) == -) {
    if ($mid($1,2-) == a) {
      if (($3) && ($4 isnum)) {
        :one
        set %chan $chr(35) $+ $3 $+ %s
        sajoin $2 %chan
        if (%s < $4) { inc %s | goto one }
      }
      else { linesep | echo -a * /saraid: Invalid nick or sajoins | linesep }
    }
    else { linesep | echo -a * /saraid: Invalid switches: $1 | linesep }
    halt
  }
  else {
    if (($1) && ($2 isnum)) {
      :two
      set %chan $chr(35) $+ %s
      sajoin $1 %chan
      if (%s < $2) { inc %s | goto two }
    }
    else { linesep | echo -a * /saraid: Invalid nick or sajoins | linesep }
  }
}

Comments

  (8)  RSS
Soulkeeper
Comments: 80
 
mIRC Snippet:  Saraid - sajoin n times.
Posted on Aug 21, 2008 2:16 am
Seen it too many times. 3/10
Spanky
Comments: 233
 
mIRC Snippet:  Saraid - sajoin n times.
Posted on Aug 21, 2008 2:17 am
rating four
NIGathan
Comments: 208
 
mIRC Snippet:  Saraid - sajoin n times.
Posted on Aug 21, 2008 2:26 am
Soulkeeper: Im sure you've seen scripts like this but can they sajoin them to a specific channel?
Soulkeeper
Comments: 80
 
mIRC Snippet:  Saraid - sajoin n times.
Posted on Aug 21, 2008 2:26 am
Yes.

I've done it myself in about 4 lines. >:|
NIGathan
Comments: 208
 
mIRC Snippet:  Saraid - sajoin n times.
Posted on Aug 21, 2008 2:44 am
Meh, I wrote it in about 4 minutes. It doesnt really matter.
Paul_1337noob
Comments: 81
 
mIRC Snippet:  Saraid - sajoin n times.
Posted on Aug 21, 2008 2:52 pm
lol thats pwnsive
Spanky
Comments: 233
 
mIRC Snippet:  Saraid - sajoin n times.
Posted on Jul 28, 2009 7:41 pm
Lol wtf sauce i rated this 4 x.x I Suck >_<
changed rating >_>
NIGathan
Comments: 208
 
mIRC Snippet:  Saraid - sajoin n times.
Posted on Aug 8, 2009 8:23 am
lol @ people still commenting on this fail script..

If youre interested, heres an update I wrote ages ago:

Code:
alias saraid {
  var %x $3, %y $1
  tokenize 32 $regsubex($str(-,$2),/(.)/g,$iif(%x,$v1,$chr(35)) $+ \n $+ $chr(32))
  .raw sajoin %y $*
}

Commenting Options

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

  
Bottom