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
Script Help How to make a "Wait" in the script.
iFondue Offline
Junior Member

Posts: 28
Threads: 6
Joined: Apr 2012
Reputation: 0
#3
RE: How to make a "Wait" in the script.

Hey, thank you very much for your fast reply.

It now looks like this:


void LightOn(string &in asParent, string &in asChild, int alStat)
{
AddEntityCollideCallback("Player" , "ScriptArea_1" , "LightOn" , true , 1);

StartPlayerLookAt("LookFrame", 20, 50, "");

SetLampLit("candlestick_1", true, true);

SetLampLit("candlestick_2", true, true);


AddTimer("light1", 0.5f, "TimerLight");
AddTimer("light2", 1, "TimerLight");
AddTimer("stopeffects", 1.2f, "TimerLight");

}

void TimerLight(string &in asTimer)
{

if(asTimer == "light1")
{
SetLampLit("candlestick_3", true, true);
SetLampLit("candlestick_4", true, true);
}
if(asTimer == "light2")
{
SetLampLit("candlestick_5", true, true);
SetLampLit("candlestick_6", true, true);
}
if(asTimer == "stopeffects")
{
StopPlayerLookAt();
}
}


Unfortunately the other lamps won't light. Did I do something wrong? Did I forget something?


Greets

-iFondue
04-10-2012, 05:36 PM
Find


Messages In This Thread
How to make a "Wait" in the script. - by iFondue - 04-10-2012, 05:13 PM
RE: How to make a "Wait" in the script. - by iFondue - 04-10-2012, 05:36 PM



Users browsing this thread: 1 Guest(s)