15 lines
163 B
Plaintext
15 lines
163 B
Plaintext
//Put this OnEnter
|
|
void main()
|
|
{
|
|
|
|
|
|
|
|
object oTarget = GetObjectByTag("wolfdoor");
|
|
|
|
SetLocked(oTarget, FALSE);
|
|
|
|
AssignCommand(oTarget, ActionOpenDoor(oTarget));
|
|
|
|
}
|
|
|