15 lines
160 B
Plaintext
15 lines
160 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetEnteringObject();
|
||
|
int hd = GetHitDice(oPC);
|
||
|
|
||
|
if (GetIsPC(oPC) && !GetIsDM(oPC) && hd >= 13){
|
||
|
|
||
|
|
||
|
SetXP(oPC, 0);
|
||
|
BootPC(oPC);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|