Top

identify auto join


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  3.3 (of 3 scores)
Date Added  May 25, 2009
Last Updated  Jul 21, 2009
Tags  auto  identify  join 

Introduction

only works in endowment server

Grab the Code

on *:connect: { /ns identify $$?"What nick" $$?"Nick password"
  join $$?"Now, enter channel that you want to join"
  join $$?"Other?"
  join $$?"Other?"
  join $$?"Other?"
  join $$?"Other?"
  join $$?"Other?"
  join $$?"Other?"
  join $$?"Other?"
  join $$?"Other?"
  join $$?"Other?"
}
alias buddy {
  nick $$?"Change nick?" ns identify $$?"Do you have password for this nick?"
}                                                                                              

Comments

  (29)  RSS
sloth
Comments: 9
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 6:23 am
I use aliases for this, but I suppose it could be handy for those who like to automate the process.
A thought though, you might wanna add a timer before the joins, just to make it goes through and you don't get kb'd from restricted channels.
sunslayer
Comments: 267
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 10:56 am
could make a dialog or an alias atleast so you dont gotta open remotes to change it
Spanky
Comments: 233
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 11:10 am
:/ why not just use mircs auto perform.. *misses the old days of original ideas*
Weasel
Comments: 117
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 1:03 pm
Buddy, cool but it's NS identify PASSWORD. pretty good though, but the autojoin would be a lot simpler (why not make it !setajoinchan { msg NickServ ajoin ADD # })?
sunslayer
Comments: 267
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 1:05 pm
@ weasel:
Quote:
only works in endowment server


Endowment may have a different syntax to id
Renegade
Comments: 37
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 2:11 pm
I agree with spanky, lol, but this is how people learn I guess.

Perhaps you could make if for multiple servers aswell, encorporate that into the idea, for instance:
Code:

on *:connect:{
  if ($network == Fake-IRC) {
    ns identify password
    join #
  }
  elseif ($network == AnotherFake-IRC) {
    ns identify A different password
  }
}


This way checks what network you're on, and does the appropiate actions.
And you could keep going basically, with elseifs.

I hope this helps. 6/10 for effort :)

BTW: There's no need for the /
Weasel
Comments: 117
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 2:15 pm
Ajoin could be made simple.
Kirbeh_Pr0nz
Comments: 144
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 2:18 pm
lol, nice pic renegade.
Renegade
Comments: 37
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 2:20 pm
I like it :D Probably get removed soon though.
Kirbeh_Pr0nz
Comments: 144
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 2:22 pm
haha. Where'd ya get it from. ill put it as my display pic 4 myspace x3
sunslayer
Comments: 267
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 2:25 pm
kirbeh just righ click on the pic and click save as... and make sure u save it as a gif file not jpeg
Kirbeh_Pr0nz
Comments: 144
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 2:26 pm
ohhhhh, oki :P thx
Renegade
Comments: 37
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 2:32 pm
I can't remember now :P Myspazz sucks :(

It's not worthy of this lulzy picture.
Aucun50
Comments: 548
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 7:14 pm
Not to bad for a first code, there are some simple ways to have your script join different channels on different networks or servers.

MaxEvans
Comments: 89
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 8:24 pm
I made this a while back for auto identify. I use things like this.


Code:
dialog aid {
  title "Auto Identify"
  size -1 -1 144 64
  option dbu
  edit %nick1, 1, 21 14 50 10
  edit %nick2, 2, 21 29 50 10
  edit %pass1, 3, 90 14 51 10, pass
  edit %pass2, 4, 90 29 51 10, pass
  button "Okay", 5, 57 49 30 10, ok
  box "Auto Identify Dialog", 6, 3 3 140 43
  text "Nick1:", 7, 5 15 16 8, center
  text "Nick2:", 8, 5 30 16 8, center
  text "Pass1:", 9, 74 15 16 8, center
  text "Pass2:", 10, 74 30 16 8, center
}

on *:dialog:aid:sclick:5: {
  set %nick1 $did(1) | set %nick2 $did(2) | set %pass1 $did(3) | set %pass2 $did(4)
}

on *:connect: {
  if ($me = %nick1) { identify %pass1 }
  if ($me = %nick2) { identify %pass2 }
}

on *:nick: {
  if $nick == $me {
    if ($newnick == %nick1) { identify %pass1 }
    if ($newnick == %nick2) { identify %pass2 }
  }
}

menu * {
  .Auto Identify: { dialog -m aid aid }
}
buddy
Comments: 30
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 8:39 pm
dialog aid {
title "Auto Identify"
size -1 -1 144 64
option dbu
edit %nick1, 1, 21 14 50 10
edit %nick2, 2, 21 29 50 10
edit %pass1, 3, 90 14 51 10, pass
edit %pass2, 4, 90 29 51 10, pass
button "Okay", 5, 57 49 30 10, ok
box "Auto Identify Dialog", 6, 3 3 140 43
text "Nick1:", 7, 5 15 16 8, center
text "Nick2:", 8, 5 30 16 8, center
text "Pass1:", 9, 74 15 16 8, center
text "Pass2:", 10, 74 30 16 8, center

actually what is this thing mean? someone please teach me..
buddy
Comments: 30
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 8:40 pm
im still learning hehe
MaxEvans
Comments: 89
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 8:41 pm
That's a dialog. It's a visual part of the script, allows you to type in your nickname and passwords in text fields.
buddy
Comments: 30
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 8:41 pm
oh yup Weasel i forgot it..Ns identify password..but its ok it same as ns identify nick password..
buddy
Comments: 30
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 8:47 pm
oic thanx MaxEvans
MaxEvans
Comments: 89
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 8:52 pm
No problem. =]
SudsyUncle
Comments: 9
 
mIRC Snippet:  identify auto join
Posted on May 25, 2009 8:56 pm
buddy best thing is...
Code:
/help dialogs
buddy
Comments: 30
 
mIRC Snippet:  identify auto join
Posted on May 27, 2009 11:09 pm
oo
buddy
Comments: 30
 
mIRC Snippet:  identify auto join
Posted on Jul 20, 2009 11:24 pm
Ok i just updated it..but no big different..
Weasel
Comments: 117
 
mIRC Snippet:  identify auto join
Posted on Jul 21, 2009 1:33 pm
Buddy, dialogs are easy. Pm me, i use coldfront, nick is twango
TravisT
Comments: 19
 
mIRC Snippet:  identify auto join
Posted on Jul 21, 2009 2:10 pm
#$$?

I've never seen the # used here. What is the expected result of having # proceed the "$$?"
?
buddy
Comments: 30
 
mIRC Snippet:  identify auto join
Posted on Jul 21, 2009 10:59 pm
What server Weasel ?
Err TravisT i change it..tq
Weasel
Comments: 117
 
mIRC Snippet:  identify auto join
Posted on Jul 22, 2009 8:59 am
Buddy, irc.coldfront.net travist that makes sure its a channel
TravisT
Comments: 19
 
mIRC Snippet:  identify auto join
Posted on Sep 10, 2009 3:24 pm
yeah thanks, learned something new. :)

Commenting Options

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

  
Bottom