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


Thread Rating:
  • 6 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Script causing game to randomly crash (No FATAL ERROR)
Your Computer Offline
SCAN ME!

Posts: 3,456
Threads: 32
Joined: Jul 2011
Reputation: 235
RE: Script causing game to randomly crash (No FATAL ERROR)

void OnStart()
{
    if(ScriptDebugOn())
    {
        GiveItemFromFile("lantern", "lantern.ent");
        SetPlayerLampOil(100);
    }
    
    AddEntityCollideCallback("Player", "BruteWalkAway", "ActivateBrute", true, 1);
    AddEntityCollideCallback("servant_brute_1", "Disappear", "FadeEnemy", true, 1);
}

void ActivateBrute(string &in asParent, string &in asChild, int alState)
{
    SetEntityActive("servant_brute_1", true);
    AddTimer("Freeze", 2.0f, "FreezePlayer");
    SetLightVisible("torch_static01_6", false);
    SetLightVisible("torch_static01_7", false);
    SetLightVisible("torch_static01_8", false);
    SetLightVisible("torch_static01_9", false);
    SetLightVisible("torch_static01_10", false);
    AddEnemyPatrolNode("servant_brute_1", "PathNodeArea_1", 0.5f, "");
    AddEnemyPatrolNode("servant_brute_1", "PathNodeArea_2", 0.5f, "");
}

void FreezePlayer(string &in asTimer)
{
    SetPlayerActive(false);
    StartPlayerLookAt("servant_brute_1", 5, 10, "");
    AddTimer("Look", 5.0f, "LookAt");
}

void LookAt(string &in asTimer)
{
    StopPlayerLookAt();
    SetPlayerActive(true);
}

void FadeEnemy(string &in asParent, string &in asChild, int alState)
{
    FadeEnemyToSmoke("servant_brute_1", false);
}

>_>

Tutorials: From Noob to Pro
(This post was last modified: 09-09-2011, 03:50 AM by Your Computer.)
09-09-2011, 03:48 AM
Website Find


Messages In This Thread
RE: Where can I find water? - by Greven - 05-08-2011, 05:19 PM
RE: Where can I find water? - by RawkBandMan - 05-08-2011, 05:44 PM
RE: Where can I find water? - by Simpanra - 05-08-2011, 08:33 PM
RE: Where can I find water? - by Greven - 05-08-2011, 09:22 PM
RE: Where can I find water? - by Simpanra - 05-08-2011, 09:28 PM
RE: Where can I find water? - by Greven - 05-08-2011, 09:32 PM
RE: Where can I find water? - by Simpanra - 05-08-2011, 09:33 PM
RE: Where can I find water? - by Greven - 05-08-2011, 09:38 PM
RE: Where can I find water? - by Simpanra - 05-08-2011, 09:46 PM
RE: Where can I find water? - by RawkBandMan - 05-08-2011, 09:50 PM
RE: Where can I find water? - by Roenlond - 05-08-2011, 08:31 PM
RE: Where can I find water? - by RawkBandMan - 05-08-2011, 09:18 PM
RE: Where can I find water? - by Simpanra - 05-08-2011, 09:59 PM
RE: Where can I find water? - by RawkBandMan - 05-08-2011, 10:27 PM
RE: Where can I find water? - by Karai16 - 05-08-2011, 11:22 PM
RE: Where can I find water? - by RawkBandMan - 05-09-2011, 12:01 AM
RE: Script causing game to randomly crash (No FATAL ERROR) - by Your Computer - 09-09-2011, 03:48 AM



Users browsing this thread: 1 Guest(s)