PoA_PRC8/_module/nss/invalidate2.nss

15 lines
160 B
Plaintext
Raw Normal View History

2022-10-07 14:20:31 -04:00
void main()
{
object oPC = GetEnteringObject();
int hd = GetHitDice(oPC);
if (GetIsPC(oPC) && !GetIsDM(oPC) && hd >= 13){
SetXP(oPC, 0);
BootPC(oPC);
}
}