identify auto join
mIRC Code
+ 0 likes
Please Register to submit score.
| Average Score | 3.3 (of 3 scores) |
| Date Added | May 25, 2009 |
| Last Updated | Jul 21, 2009 |
| Tags | auto identify join |
Introduction
mIRC Snippet:
identify auto join
Posted on May 25, 2009 6:23 am
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.
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.
mIRC Snippet:
identify auto join
Posted on May 25, 2009 10:56 am
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
mIRC Snippet:
identify auto join
Posted on May 25, 2009 11:10 am
Posted on May 25, 2009 11:10 am
:/ why not just use mircs auto perform.. *misses the old days of original ideas*
mIRC Snippet:
identify auto join
Posted on May 25, 2009 1:03 pm
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 # })?
mIRC Snippet:
identify auto join
Posted on May 25, 2009 1:05 pm
Posted on May 25, 2009 1:05 pm
@ weasel:
Endowment may have a different syntax to id
| Quote: |
| only works in endowment server |
Endowment may have a different syntax to id
mIRC Snippet:
identify auto join
Posted on May 25, 2009 2:11 pm
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:
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 /
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 /
mIRC Snippet:
identify auto join
Posted on May 25, 2009 2:15 pm
Posted on May 25, 2009 2:15 pm
Ajoin could be made simple.
mIRC Snippet:
identify auto join
Posted on May 25, 2009 2:18 pm
Posted on May 25, 2009 2:18 pm
lol, nice pic renegade.
mIRC Snippet:
identify auto join
Posted on May 25, 2009 2:20 pm
Posted on May 25, 2009 2:20 pm
I like it :D Probably get removed soon though.
mIRC Snippet:
identify auto join
Posted on May 25, 2009 2:22 pm
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
mIRC Snippet:
identify auto join
Posted on May 25, 2009 2:25 pm
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
mIRC Snippet:
identify auto join
Posted on May 25, 2009 2:26 pm
Posted on May 25, 2009 2:26 pm
ohhhhh, oki :P thx
mIRC Snippet:
identify auto join
Posted on May 25, 2009 2:32 pm
Posted on May 25, 2009 2:32 pm
I can't remember now :P Myspazz sucks :(
It's not worthy of this lulzy picture.
It's not worthy of this lulzy picture.
mIRC Snippet:
identify auto join
Posted on May 25, 2009 7:14 pm
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.
mIRC Snippet:
identify auto join
Posted on May 25, 2009 8:24 pm
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 } } |
mIRC Snippet:
identify auto join
Posted on May 25, 2009 8:39 pm
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..
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..
mIRC Snippet:
identify auto join
Posted on May 25, 2009 8:40 pm
Posted on May 25, 2009 8:40 pm
im still learning hehe
mIRC Snippet:
identify auto join
Posted on May 25, 2009 8:41 pm
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.
mIRC Snippet:
identify auto join
Posted on May 25, 2009 8:41 pm
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..
mIRC Snippet:
identify auto join
Posted on May 25, 2009 8:47 pm
Posted on May 25, 2009 8:47 pm
oic thanx MaxEvans
mIRC Snippet:
identify auto join
Posted on May 25, 2009 8:52 pm
Posted on May 25, 2009 8:52 pm
No problem. =]
mIRC Snippet:
identify auto join
Posted on May 25, 2009 8:56 pm
Posted on May 25, 2009 8:56 pm
buddy best thing is...
| Code: |
| /help dialogs |
mIRC Snippet:
identify auto join
Posted on Jul 20, 2009 11:24 pm
Posted on Jul 20, 2009 11:24 pm
Ok i just updated it..but no big different..
mIRC Snippet:
identify auto join
Posted on Jul 21, 2009 1:33 pm
Posted on Jul 21, 2009 1:33 pm
Buddy, dialogs are easy. Pm me, i use coldfront, nick is twango
mIRC Snippet:
identify auto join
Posted on Jul 21, 2009 2:10 pm
Posted on Jul 21, 2009 2:10 pm
#$$?
I've never seen the # used here. What is the expected result of having # proceed the "$$?"
?
I've never seen the # used here. What is the expected result of having # proceed the "$$?"
?
mIRC Snippet:
identify auto join
Posted on Jul 21, 2009 10:59 pm
Posted on Jul 21, 2009 10:59 pm
What server Weasel ?
Err TravisT i change it..tq
Err TravisT i change it..tq
mIRC Snippet:
identify auto join
Posted on Jul 22, 2009 8:59 am
Posted on Jul 22, 2009 8:59 am
Buddy, irc.coldfront.net travist that makes sure its a channel
mIRC Snippet:
identify auto join
Posted on Sep 10, 2009 3:24 pm
Posted on Sep 10, 2009 3:24 pm
yeah thanks, learned something new. :)








