Top

Multiple Bot Script. Look.


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Jun 11, 2009
Last Updated  Jun 11, 2009
Tags  bot  bots  channels  invite  script 

Introduction

Well. I have improved this script. Very much Because the last one Didn't Work.
The Inviter just Invites the bot to the channel.

Improved: Only 1 Bot can go on the Channel. ** PROTECTION **

Ok Here, My bots are
- iSuicide
- [1]iSuicide
- [2]iSuicide
- [3]iSuicide

So, The first nick is the Main Nick, And the Other count for the bots, So I have
3 Bots.

Set This
Code:

set %botname ******Main Bots Nick*****

-- To your main bots nick --
-------------
Set This
Code:

set %bots ******How Many Bots******

-- To How many number bots you have. --
-------------
Set This
Code:

timer 1 5 msg $2 *****Your Bots Invite Message******

-- To your Invite Message: When the bot join's the channel. --
--------------

EG: This is What mine would Look Like

set %botname iSuicide
set %bots 3
timer 1 5 msg $2 Hey, Thanks for Inviting me.

NOTE: I added some variables that allow the bot to reconize the invite nick.
If you want use this somewhere in your msg $2 script.
---------------
Code:
%tempnick

---------------
- Thanks, St[e]ven
(( From SwiftIRC )) #iSuicide




Grab the Code

on *:INVITE:#: {
  var %x $rand(1,%bots)
  set %botname MainBotsNick
  set %bots HowManyBots
  if ($me == %botname) {
    set %tempnick $nick
    notice %tempnick ** 14[12Searching14]14:12 P14lease 12W14ait12.
    msg $chr(91) $+ %x $+ $chr(93) $+ %botname ^DUDETHISISAHACKGo $chan
  }
}
on *:text:^DUDETHISISAHACKgo *:?:{
  if ($nick == %botname) {
    join $2
    writeini joined.ini channels $2
    timer 1 5 msg $2 YourBotsInviteMessage
    close -m
  }
}
on *:JOIN:#: {
  if ($readini(joined.ini,channels) == #) {
    part # To Many Bots
  }
}
on *:PART:#: {
  remini joined.ini channels #
}
 

Comments

  (0)  RSS

Commenting Options

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

  
Bottom