PWE_PRC8/_module/nss/freehand.nss

16 lines
175 B
Plaintext
Raw Permalink Normal View History

2025-04-03 10:29:41 -04:00
//Put this OnEnter
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
if (GetHitDice(oPC) < 40)
return;
CreateItemOnObject("item011", oPC);
}