Top

AutoJoin & Auto Identify System

Please Register to submit score.
Average Score  2.0
Scores Submitted  2
Date Added  Dec 03, 2007
Last Updated  Dec 05, 2007

Introduction

This Is My New Addon Auto Identify And AutoJoin System. It Works excellently !
It Have 10 Buttons To Join in a lot of channels that you want To Put Your Server Address Your Nickname And Your Identify Password! it allocates also chronometer in order to you can be connected in server whenever you want.


Grab the Code

Comments

  (2)  RSS
mountaindew
Comments: 1,422
 
mIRC Snippet:  AutoJoin & Auto Identify System
Posted on Dec 3, 2007 6:32 pm
Code:

  if ( %nickname1 != $null )  && ( %server1 isin $server ) && (%autoidentify == On)  { ns identify %password1 }
  if ( %nickname2 != $null )  && ( %server2 isin $server ) && (%autoidentify == On) { ns identify %password2 }
  if ( %nickname3 != $null )  && ( %server3 isin $server ) && (%autoidentify == On) { ns identify %password3 }
  if ( %nickname4 != $null )  && ( %server4 isin $server ) && (%autoidentify == On) { ns identify %password4 }
  if ( %nickname5 != $null )  && ( %server5 isin $server ) && (%autoidentify == On) { ns identify %password5 }
  if ( %nickname6 != $null )  && ( %server6 isin $server ) && (%autoidentify == On) { ns identify %password6 }
  if ( %nickname7 != $null )  && ( %server7 isin $server ) && (%autoidentify == On) { ns identify %password7 }
  if ( %nickname8 != $null )  && ( %server8 isin $server ) && (%autoidentify == On) { ns identify %password8 }
  if ( %nickname9 != $null )  && ( %server9 isin $server ) && (%autoidentify == On) { ns identify %password9 }
  if ( %nickname10 != $null )  && ( %server10 isin $server ) && (%autoidentify == On) { ns identify %password10 }

can be simplified to
Code:

var %x = 1
while (%x <= 10) {
  if (%nickname $+ %x && %server $+ %x isin $server && %aut
oidentify == on)
    ns identify %password $+ %x
  }
  inc %x
}
IcE^__
Comments: 37
 
mIRC Snippet:  AutoJoin & Auto Identify System
Posted on Dec 18, 2007 1:15 pm
oh ok i will see this remote . thanks mountaindew

Please Register or Login to start posting comments.
Bottom