Aantioch_Infernum/_module/nss/havendoor_lock.nss

13 lines
275 B
Plaintext
Raw Permalink Normal View History

2023-08-08 16:22:17 -04:00
// shpinx statue script////
///////////////////////////
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
object oDoor = GetObjectByTag("Portcullishaven");
AssignCommand(oDoor, ActionCloseDoor(oDoor));
SetLocked(oDoor, TRUE);
}