Aantioch_Infernum/_module/nss/havendoor_unlock.nss

13 lines
206 B
Plaintext
Raw Normal View History

2023-08-08 16:22:17 -04:00
//Put this OnOpen
void main()
{
object oPC = GetLastOpenedBy();
object oTarget;
oTarget = GetObjectByTag("Portcullishaven");
SetLocked(oTarget, FALSE);
AssignCommand(oTarget, ActionOpenDoor(oTarget));
}