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
Weird Fatal Error?
dailycreepypasta Offline
Junior Member

Posts: 32
Threads: 18
Joined: Aug 2014
Reputation: 0
#1
Weird Fatal Error?

I have this weird problem going on. Some people who downloaded my custom story is getting a fatal error that I'm not sure how to fix.

[Image: image.png]

[Image: error.png]

The .hps file is down below (I cut out a bunch of lines to show you what might be causing the crash).

PHP Code: (Select All)
//////////////////////////////////////////////////////////////////////////////////////    
//OnStart
//////////////////////////////////////////////////////////////////////////////////////
void OnStart()
{        
        
AddEntityCollideCallback("Player""Scene_2""Talk"true1);
}

//////////////////////////////////////////////////////////////////////////////////////    
//Opening Lines
//////////////////////////////////////////////////////////////////////////////////////

void Talk(string &in asParentstring &in asChildint alState)
{
    
SetPlayerMoveSpeedMul(0);
    
SetPlayerRunSpeedMul(0);
    
SetPlayerJumpForceMul(0);
    
AddEffectVoice("" ,"johnathan 1.ogg""Dialogue""John1"false""00);
    
AddEffectVoice("" ,"guide1.ogg""Dialogue""Guide1"false""00);
    
AddEffectVoice("" ,"johnathan 2.ogg""Dialogue""John2"false""00);
    
AddEffectVoice("" ,"guide2.ogg""Dialogue""Guide2"false""00);
    
AddEffectVoice("" ,"johnathan 3.ogg""Dialogue""John3"false""00);
    
AddEffectVoice("" ,"guide3.ogg""Dialogue""Guide3"false""00);
    
AddEffectVoice("" ,"johnathan 4.ogg""Dialogue""John4"false""00);
    
SetEffectVoiceOverCallback("Memento");
}

//////////////////////////////////////////////////////////////////////////////////////    
//Mementos
//////////////////////////////////////////////////////////////////////////////////////

void Memento()
{
    
AddQuest("Guide_Hint""Familiar");
    
SetPlayerMoveSpeedMul(1);
    
SetPlayerRunSpeedMul(1);
    
SetPlayerJumpForceMul(1);
    
PlayMusic("Track4.ogg"true211true);


Does anyone have an idea about why this happened? It looks about right to me.

Creator of "The Night I Went Insane".

http://www.moddb.com/mods/the-night-i-went-insane
(This post was last modified: 04-23-2015, 05:43 AM by dailycreepypasta.)
04-23-2015, 05:38 AM
Find


Messages In This Thread
Weird Fatal Error? - by dailycreepypasta - 04-23-2015, 05:38 AM
RE: Weird Fatal Error? - by Mudbill - 04-23-2015, 07:25 AM
RE: Weird Fatal Error? - by Neelke - 04-23-2015, 11:34 AM
RE: Weird Fatal Error? - by Mudbill - 04-23-2015, 07:16 PM



Users browsing this thread: 1 Guest(s)