mIRC Homepage
Posted By: the_banana mIRC /server command - 06/07/18 12:47 PM
Hi quick question about the /server commands on mIRC.

so i'm using this :

/server irc.irc.com -i nick anick email name

/server -m irc1.irc.com -i nick1 anick1 email1 name1

/server -m irc2.irc.com -i nick2 anick2 email2 name2 etc....

So it works as intended, with the "nick" "anick" "name", but the "email" stay the the same for all the servers, any idea why?

I want something like : 123@irc.com on server 1, 321@irc2.com on server 2 etc...

Thanks.
Posted By: Loki12583 Re: mIRC /server command - 06/07/18 06:08 PM
Under Options > Connect > Identd do you have 'Use ID from email address' checked?
Posted By: the_banana Re: mIRC /server command - 06/07/18 07:01 PM
It is yes.

Everything works, exept the email thing.

*:START:{
server irc.irc.com -i nick anick email name
server -m irc1.irc.com -i nick1 anick1 email1 name1
server -m irc2.irc.com -i nick2 anick2 email2 name2
etc...
}

If it can help.
Posted By: Raccoon Re: mIRC /server command - 09/07/18 03:06 PM
Your IP address information as seen under /whois cannot be altered by you through simple client settings. That is not what the 'email' field is for.

You can change the word to the left of your IP address, ie, your 'username' or 'ident', but not the IP address itself, which is assigned by your internet service provider.

Purchase rent on a remote VPS/VPN/proxy/gateway machine with your money.
Posted By: the_banana Re: mIRC /server command - 09/07/18 08:13 PM
Yeah and that's exactly what i want?
Change the identid like i said :
server irc 1 : blablabla@irc1
server irc 2 : blablabla1@irc2 etc...

I just want to change what's before the @ as in the email/identid.

:°)
Posted By: westor Re: mIRC /server command - 09/07/18 09:32 PM
Originally Posted By: the_banana
I just want to change what's before the @ as in the email/identid.


Disconnect from all your connected servers, and execute that command, then re-connect and it will be changed.

Command: //identd on test | emailaddr test
Posted By: the_banana Re: mIRC /server command - 10/07/18 08:54 AM
It doesn't work. Still the same identid/email on all the server, even by connecting to it one by one.
Posted By: westor Re: mIRC /server command - 10/07/18 09:25 AM
It's look like mIRC's problem, first /identd off <identd> doesn't change the identd on options as it should, second /server -m irc_server -i nickname alternative_nickname emailaddr realname seems that emailaddr doesn't work.

So the only way to do it that using ON START event is this but is incorrect as mIRC has problem or the working way is different that i read on help file and help file seems outdated on that part, until someone who knows better will answer use that code:

Code:
ON *:START: {
  .identd on emailaddr1
  .identd off
  server -m server1 -i nickname1 alternative_nickname1 emailaddr1 realname1

  .identd on emailaddr2
  .identd off
  server -m server2 -i nickname2 alternative_nickname2 emailaddr2 realname2

  .identd on emailaddr3
  .identd off
  server -m server3 -i nickname3 alternative_nickname3 emailaddr3 realname3
}
Posted By: the_banana Re: mIRC /server command - 10/07/18 11:10 AM
Thanks for your time trying helping me, but it doesn't seem to work too.

It take the first "email" i'm setting for the first server i'm connecting, and that's the one i'm getting on all the other servers.
Posted By: westor Re: mIRC /server command - 10/07/18 12:33 PM
Yeah it needs an delay there, try use that one:

Code:
ON *:START: {
  con_next -m server1 -i nickname1 alternative_nickname1 emailaddr1 realname1
  .timer 1 3 con_next -m server2 -i nickname2 alternative_nickname2 emailaddr2 realname2
  .timer 1 6 con_next -m server3 -i nickname3 alternative_nickname3 emailaddr3 realname3
}

alias con_next { 
  if (!$1) { return }
  .identd on $6
  .identd off
  server $1-
}
© mIRC Discussion Forums