Top

Auto Identify on Connect or command

Please Register to submit score.
Average Score  0.0
Scores Submitted  0
Date Added  Aug 03, 2007
Last Updated  Aug 03, 2007
Tags  auto  connect  identify  on 

Introduction

When you connect your bot he will auto identify or you can use the command !identify

Grab the Code

Comments

  (4)  RSS
xredxthornsx
Comments: 14
 
mIRC Snippet:  Auto Identify on Connect or command
Posted on Aug 5, 2007 11:45 pm
the on connect script is a good concept but it can be acheived by setting up a perform in the mIRC options (connect//options//click perform) and the on text script is good i use it with my bot

KEEP UP THE SCRIPTING ^^ have a nice day
Callison1
Comments: 130
 
mIRC Snippet:  Auto Identify on Connect or command
Posted on Aug 6, 2007 3:47 am
Anyone in a channel you are in could cause you to identify. I have a similar script but I have both commands in the on connect part.
criminal
Comments: 126
 
mIRC Snippet:  Auto Identify on Connect or command
Posted on Mar 26, 2008 7:23 am
Quote:

Anyone in a channel you are in could cause you to identify. I have a similar script but I have both commands in the on connect part.

Code:

on $*:TEXT:/^[.!@]id(entify)/si:#: {
if ($nick != $me) { halt }
else { ns identfiy <Password> }
}

I also have both commands on connect.
Gummo
Comments: 100
 
mIRC Snippet:  Auto Identify on Connect or command
Posted on Mar 26, 2008 9:27 am
criminal: $nick can never equal $me on text..

Please Register or Login to start posting comments.
Bottom