The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 906 - File: showthread.php PHP 7.2.24-0ubuntu0.18.04.17 (Linux)
File Line Function
/showthread.php 906 errorHandler->error



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
Amnesia Freezing?
GetHimNotMe Offline
Junior Member

Posts: 15
Threads: 8
Joined: Apr 2012
Reputation: 0
#1
Amnesia Freezing?

Hey,

My amnesia custom story keeps freezing when loading a map. It has something to do with the script because I've tried removing all script functions from the .hps file (leaving only OnStart, OnEnter, etc.) and it would load. There is no crash, only freeze on "Loading..."
Heres my script file:


////////////////////////////
// Run when entering map
void OnStart()
{
PlayMusic("23_amb02.ogg", true, 1.0, 4.0, 0, true);
SetPlayerSanity(50);
AddEntityCollideCallback("Player", "spawnsteve", "comesteve", true, 1);
AddEntityCollideCallback("Player", "dead", "deadend", true, 1);
AddEntityCollideCallBack("steve2", "black", "fadetoblack");
}

void comesteve(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("steve", true);
ShowEnemyPlayerPosition("steve");
}

void deadend(string &in asParent, string &in asChild, int alState)
{
SetPlayerActive(false);
StartPlayerLookAt("lookhere", 3, 3, "looksteve");
}

void looksteve(string &in asTimer)
{
StartPlayerLookAt("steve2", 10, 10, "");
}

void fadetoblack(string &in asTimer)
{
FadeOut(0);
FadeEnemyToSmoke("steve2", true);
StopMusic("23_amb02.ogg", 0);
StopLookAt();
AddTimer("", 3, "switch");
}

void switch(string &in asTimer)
{
ChangeMap("01-2.map", "PlayerStartArea_1", "", "");
}

////////////////////////////
// Run when entering map
void OnEnter()
{

}

////////////////////////////
// Run when leaving map
void OnLeave()
{

}

Thanks in advance!
(This post was last modified: 06-21-2012, 05:16 AM by GetHimNotMe.)
06-20-2012, 08:59 PM
Find


Messages In This Thread
Amnesia Freezing? - by GetHimNotMe - 06-20-2012, 08:59 PM
RE: Amnesia Freezing? - by MaZiCUT - 06-20-2012, 09:08 PM
RE: Amnesia Freezing? - by Apjjm - 06-20-2012, 09:44 PM
RE: Amnesia Freezing? - by GetHimNotMe - 06-21-2012, 02:12 AM



Users browsing this thread: 1 Guest(s)