show email when user logs in

Archive of all threads restored from the backup after the forum hijack
Locked
Struzball
show email when user logs in

Post by Struzball » Thu Jun 12, 2003 13:43 pm

does anyone know how to show the email when someone logs in
ie, Nickname (blah@blah.com) has just signed in.

it would be helpful because everyone changes their name all the time, so i have ot go in the messenger window and look through the list to find that user name to see who it is.

thx
struz

pred

Post by pred » Sun Jun 22, 2003 16:04 pm

find this line:
echo -a 7 $+ $gettok(%msn.data,4-,32) has logged on.
would be nr. 177 or something like that.
Change the 4- in this gettok and the one in the line underneath to 3-, so it would be:
echo -a 7 $+ $gettok(%msn.data,3-,32) has logged on.
aline @Messenger $timestamp 7 $+ $gettok(%msn.data,3-,32) has logged on.

pred

Post by pred » Sun Jun 22, 2003 16:07 pm

this is a bit more like you wanted it to be:

echo -a 7 $+ $gettok(%msn.data,4-,32) (4 $+ $gettok(%msn.data,3,32) $+ 7) has logged on.
aline @Messenger $timestamp 7 $+ $gettok(%msn.data,4-,32) (4 $+ $gettok(%msn.data,3,32) $+ 7) has logged on.

Locked