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:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
hmm game crashes.
Itskody Offline
Member

Posts: 100
Threads: 30
Joined: Mar 2011
Reputation: 1
#1
hmm game crashes.

usually when my game crashes while testing my custom story, it tells me whats wrong with my script. But nowwww it just says it has stopped working. i looked at my script and what i added before it crashed, and i cant find what the problem is. here is what i added:
PHP Code: (Select All)
void OnStart()
{
    
SetEntityPlayerInteractCallback("key_study_1""Monter"true);
}

void Monster(string &in entity)
{
    
StartPlayerLookAt("servant_grunt_2"1020"");
    
SetPlayerCrouching(true);
    
SetPlayerActive(false);
    
FadeIn(3.0f);
    
AddTimer(""3.0f"Dissapear");
    
GiveSanityDamage(10.0ftrue);
    
PlaySoundAtEntity("""react_breath_slow.snt""Player"0false);
}

void Dissapear(string &in asTimer)
{
    
SetEntityActive("servant_grunt_2"false);
    
FadeOut(1.0f);
    
AddTimer(""1.0f"Move");
}

void Move(string &in asTimer)
{
    
SetPlayerCrouching(false);
    
SetPlayerActive(true);
    
StopPlayerLookAt();


Can you find anything?
04-17-2011, 05:54 PM
Find


Messages In This Thread
hmm game crashes. - by Itskody - 04-17-2011, 05:54 PM
RE: hmm game crashes. - by Dalroc - 04-17-2011, 07:22 PM
RE: hmm game crashes. - by Linus Ågren - 04-17-2011, 07:58 PM
RE: hmm game crashes. - by Itskody - 04-17-2011, 08:00 PM



Users browsing this thread: 1 Guest(s)