Simple timed auto-invite

By jewsus on Nov 04, 2007

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

on *:join:#chan1: {
  .timer 1 300 invite $nick #chan2
  .timer 1 600 invite $nick #chan3
  .timer 1 900 invite $nick #chan4
}

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

on *:part:#chan1: {
  .timer 5000 0 invite $nick #chan2
}

Comments

Sign in to comment.
G13AoUsTiS   -  Nov 04, 2007

dude this is unusefull but ok Good Job :-)

 Respond  
G13AoUsTiS   -  Nov 04, 2007

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
}

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.