void main()
{
object oPC= GetEnteringObject();
if (GetIsPC(oPC)) {

string name = GetName(oPC);
int lvl = GetHitDice(oPC);
string lvl2 = IntToString(lvl);

string area = GetName(GetArea(oPC));
string msg = name + ", level " + lvl2 + ", is in " + area + "." ;
SendMessageToAllDMs(msg);


}

}