Wrong forum, but... just add code to your client enter script:
object oPC = GetEnteringObject();
string sName = GetName(oPC);
string sPlayername = GetPCPlayerName(oPC);
string sKey = GetPCPublicCDKey(oPC);
string sAddr = GetPCIPAddress(oPC);
string sReport = ">>> ID: " + sPlayername + "; Name: " + sName + "; CD Key:" + sKey +
"; IP:" + sAddr + "; has logged in.";
WriteTimestampedLogEntry(sReport);
SendMessageToAllDMs(sReport);
You can also make a wand/widget to get the ip of a player, or all players on the server, using the same Get functionality.
Funky