PoA_PRC8/_module/nss/leveltrigger.nss

20 lines
309 B
Plaintext
Raw Normal View History

2022-10-07 14:20:31 -04:00
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);
}
*/
}