16 lines
175 B
Plaintext
16 lines
175 B
Plaintext
//Put this OnEnter
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetHitDice(oPC) < 40)
|
|
return;
|
|
|
|
CreateItemOnObject("item011", oPC);
|
|
|
|
}
|
|
|