10 lines
254 B
Plaintext
10 lines
254 B
Plaintext
void main()
|
|
{
|
|
int iDisturb = GetLocalInt(OBJECT_SELF,"disturb");
|
|
object oPC = GetLastDisturbed();
|
|
location lPC = GetLocation(oPC);
|
|
if (iDisturb==1) return;
|
|
CreateObject(OBJECT_TYPE_CREATURE,"mummy001",lPC,TRUE);
|
|
SetLocalInt(OBJECT_SELF,"disturb",1);
|
|
}
|