Top

Another Mass Invite Script


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  0.0
Scores Submitted  0
Date Added  Jan 19, 2008
Last Updated  Jan 19, 2008
Tags  invite  irc  mass  massinvite  minvite  mirc  script 
  Bookmark and Share

Introduction

Just another mass invite script I wrote.

Command: /massinvite
Version: 1.2
Author: XTZGZoReX

Usage: /massinvite #channel #tochannel
Notes: This one actually got error handlers. I don't think there are much to say here, since its usage is pretty straightforward.

Enjoy!

Grab the Code

Comments

  (1)  RSS
mountaindew
Comments: 1,640
 
mIRC Snippet:  Another Mass Invite Script
Posted on Jan 21, 2008 2:29 pm
Code:

  if ( !$1 ) {
    echo -a * /massinvite: insufficient parameters
    halt
  }
  if ( !$2 ) {
    echo -a * /massinvite: insufficient parameters
    halt
  }

u only need the first one, cuz if u dont have a $1, ur definitely not gonna have a $2 ;)

also, i'd use /var %var = data rather than setting and unsetting

Please Register or Login to start posting comments.
Bottom