20 lines
309 B
Plaintext
20 lines
309 B
Plaintext
|
void main()
|
||
|
{
|
||
|
//Disabled
|
||
|
/*
|
||
|
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);
|
||
|
|
||
|
|
||
|
}
|
||
|
*/
|
||
|
}
|