Rename contacts possible??

Talk about anything about MSN Messenger for mIRC or leave some comments.
Post Reply
Prelim
Posts: 3
Joined: Sun Nov 27, 2005 15:15 pm

Rename contacts possible??

Post by Prelim »

can i rename contact names before the mail adress???

ex: 3cpoxpto «blabla@hotmail.com» to....... Jonhy School «blabla@hotmail.com»

i used trillian for a long time and i can rename all the contacts i want

please fix this, its very important to help people indentify their own contacts

thanks :wink:
andyc
MSN for mIRC Creator
Posts: 243
Joined: Sun Dec 01, 2002 21:26 pm

Post by andyc »

It's possible - yes.

I'll try my best to get it implemented, it's not the most simple thing ever. :)
LazyBons

well?

Post by LazyBons »

since its been few years. just curius. did you implement it? so far its the only thing i miss about msn for mirc;>
LazyBons

Post by LazyBons »

well...since you didnt answer me, i hope you dont mind and i took the liberty to add the renaming of nicks myself, altho so far it only works on start, but that is gonna be fixed soon. so if you like, i can share the code and/or explain how i did it;>
andyc
MSN for mIRC Creator
Posts: 243
Joined: Sun Dec 01, 2002 21:26 pm

Post by andyc »

Sorry I've not got round to it yet.

Feel free to share the code for renaming contacts on here - I encourage people to share their code addons and changes.
LazyBons

Post by LazyBons »

alias renamenick {
.fopen rennicks msn/nicki.txt
while ( !$feof ) {
set %tempinfo $fread(rennicks)
set %tempmail $left( %tempinfo, $pos( %tempinfo , $chr(32) , 1 ) )
set %tempnick $right( %tempinfo,$calc( $len( %tempinfo )-$pos( %tempinfo , $chr(32) , 1 ) ) )
if ( %msn.tempmail == %tempmail ) { set %msn.nick %tempnick }
}
.fclose rennicks
}

you need a file nicki.txt in the format as
<email of user> <new nick for display>
and one in each line.

and you can call that before you output online users to the "nicklist".

not complete yet, still fixing some bugs, still trying to find all the places where the "nicklist" gets changed, renamed, whatever..;)
Post Reply