Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
need some help with levers and a secret door.
Kyle Offline
Posting Freak

Posts: 911
Threads: 36
Joined: Sep 2010
Reputation: 7
#2
RE: need some help with levers and a secret door.

You can try this:

void OnStart()
{
     SetEntityConnectionStateChangeCallback("Lever_1", "Func01");
}
void Func01(string &in asName, int alState)
{
     if (alState == 1)
     {
          //Secret door is opened when said so here
     }
}

07-09-2011, 09:57 PM
Find


Messages In This Thread
RE: need some help with levers and a secret door. - by Kyle - 07-09-2011, 09:57 PM



Users browsing this thread: 1 Guest(s)