Aschbourne_PRC8/_module/nss/unlock_door02.nss
Jaysyn904 f5ffe7d0b9 Module commit
Module commit.
2024-06-14 10:48:20 -04:00

15 lines
192 B
Plaintext

//Put this OnEnter
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
object oTarget;
oTarget = GetObjectByTag("second_locked_door");
SetLocked(oTarget, FALSE);
}