Top

Simple timed auto-invite


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  0.0
Scores Submitted  0
Date Added  Nov 04, 2007
Last Updated  Nov 04, 2007
Tags  invite  timed 
  Bookmark and Share

Introduction

It's a very small, simple auto-inviter.

Just remember to set #chan1 to the channel you want to invite people from and #chan2, etc. to the channel you want them invited to.

The timer is obviously in seconds, this one being to invite after five minutes to #chan1, and again after another five minutes to #chan2, etc.

Edit: I added a little idea I came up with on the bottom.

Revenge for people parting your channel. Just set #chan1 to the name of your channel and #chan2 to an ironic or funny channel name.

I really don't intend for billions of people to use this second one every day, so please use it sparingly. =x

Grab the Code

Comments

  (2)  RSS
G13AoUsTiS
Comments: 37
 
mIRC Snippet:  Simple timed auto-invite
Posted on Nov 4, 2007 12:25 pm
on *:join:#chan1: {
if ($me isop $chan) {
.timer 1 300 invite $nick #chan2
.timer 1 600 invite $nick #chan3
.timer 1 900 invite $nick #chan4
else { //echo -a You Need An Op In $chan
}
}

---------------------------------------------------

on *:part:#chan1: {
if ($me isop $chan) {
.timer 5000 0 invite $nick #chan2
else { /echo -a you need an op in $chan
}
G13AoUsTiS
Comments: 37
 
mIRC Snippet:  Simple timed auto-invite
Posted on Nov 4, 2007 12:26 pm
dude this is unusefull but ok Good Job :-)

Please Register or Login to start posting comments.
Bottom