13 lines
275 B
Plaintext
13 lines
275 B
Plaintext
// shpinx statue script////
|
|
///////////////////////////
|
|
void main()
|
|
{
|
|
object oPC = GetEnteringObject();
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
object oDoor = GetObjectByTag("Portcullishaven");
|
|
AssignCommand(oDoor, ActionCloseDoor(oDoor));
|
|
SetLocked(oDoor, TRUE);
|
|
|
|
}
|