mIRC Home    About    Download    Register    News    Help

Print Thread
#263306 06/07/18 12:47 PM
Joined: Jun 2017
Posts: 6
T
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
T
Joined: Jun 2017
Posts: 6
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.

Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
Under Options > Connect > Identd do you have 'Use ID from email address' checked?

Joined: Jun 2017
Posts: 6
T
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
T
Joined: Jun 2017
Posts: 6
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.

Last edited by the_banana; 06/07/18 07:06 PM.
Joined: Feb 2003
Posts: 2,812
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,812
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.


Well. At least I won lunch.
Good philosophy, see good in bad, I like!
Joined: Jun 2017
Posts: 6
T
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
T
Joined: Jun 2017
Posts: 6
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.

:°)

Joined: Dec 2008
Posts: 1,515
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2008
Posts: 1,515
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


Need Online mIRC help or an mIRC Scripting Freelancer? -> https://irc.chathub.org <-
Joined: Jun 2017
Posts: 6
T
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
T
Joined: Jun 2017
Posts: 6
It doesn't work. Still the same identid/email on all the server, even by connecting to it one by one.

Joined: Dec 2008
Posts: 1,515
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2008
Posts: 1,515
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
}


Need Online mIRC help or an mIRC Scripting Freelancer? -> https://irc.chathub.org <-
Joined: Jun 2017
Posts: 6
T
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
T
Joined: Jun 2017
Posts: 6
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.

Joined: Dec 2008
Posts: 1,515
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2008
Posts: 1,515
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-
}


Need Online mIRC help or an mIRC Scripting Freelancer? -> https://irc.chathub.org <-

Link Copied to Clipboard