16 lines
223 B
Plaintext
16 lines
223 B
Plaintext
//Put this script OnEnter
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetItemPossessedBy(oPC, "rodofthedead")!= OBJECT_INVALID)
|
|
return;
|
|
|
|
CreateItemOnObject("rodofthedead", oPC);
|
|
|
|
}
|
|
|