RoT2_PRC8/_module/nss/aw_forcedoor2.nss

9 lines
226 B
Plaintext
Raw Permalink Normal View History

2023-09-25 18:13:22 -04:00
void main()
{
object oPC = GetEnteringObject();
object oTarget;
oTarget = GetObjectByTag("wp_tabmind_02");
AssignCommand(oTarget, ActionOpenDoor(oTarget));
DelayCommand(3.0,AssignCommand(oTarget, ActionCloseDoor(oTarget)));
}