Aschbourne_PRC8/_module/nss/unlock_door01.nss

15 lines
191 B
Plaintext
Raw Normal View History

2024-06-14 10:48:20 -04:00
//Put this OnEnter
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
object oTarget;
oTarget = GetObjectByTag("first_locked_door");
SetLocked(oTarget, FALSE);
}