LoT_PRC8/_module/nss/opencell.nss
Jaysyn904 ec287507a1 Initial upload
Initial upload.
2023-09-25 21:32:17 -04:00

16 lines
212 B
Plaintext

//Put this script OnEnter
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
object oTarget;
oTarget = GetObjectByTag("celldoor");
AssignCommand(oTarget, ActionOpenDoor(oTarget));
}