Thread
:
Secret door open switch
View Single Post
07-16-2004, 10:49 AM
#
3
(
permalink
)
xApoCx
Join Date: Jun 2004
Age: 25
Posts: 56
monsters can open sec. doors
If you want to repair this. Edit the BaseAI. Find line
:
if ( !door.Locked || !door.UseLocks() )
m_Obstacles.Enqueue( door );
and change to:
if ( !door.Locked || !door.UseLocks() )
if (door.CanOpen)
m_Obstacles.Enqueue( door );
I think
xApoCx
View Public Profile
Send a private message to xApoCx
Find More Posts by xApoCx