LoT_PRC8/_module/nss/opencell.nss

16 lines
212 B
Plaintext
Raw Permalink Normal View History

2023-09-25 21:32:17 -04:00
//Put this script OnEnter
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
object oTarget;
oTarget = GetObjectByTag("celldoor");
AssignCommand(oTarget, ActionOpenDoor(oTarget));
}