Aschbourne_PRC8/_module/nss/unlock_door02.nss

15 lines
192 B
Plaintext
Raw Permalink 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("second_locked_door");
SetLocked(oTarget, FALSE);
}