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
Unexplainable Error!
Verkehr Offline
Member

Posts: 60
Threads: 13
Joined: Oct 2016
Reputation: 1
#1
Unexplainable Error!

I keep having the following error:
FATAL ERROR: Could not load script file 'custom_stories/betrayal/maps/Map1.hps'! main (75, 2) : ERR : Unexpected end of file

and I use the following script(this is the entire script used, the end is associated with the error, so the OnLeave):
PHP Code: (Select All)
////////////////////////////
// Run when entering map the first time
void OnStart()
{
    
FadeOut(0);
    
SetPlayerActive(false);
    
SetSanityDrainDisabled(true);
    
ShowPlayerCrossHairIcons(false);
    
AddTimer("fadein"3"Intro");
    
PlayMusic("janji_summer_memories.ogg"false1.201false);
    
AddUseItemCallback("""key_door_room_1_1""level_room_1_2""unlock_1"false);
}

////////////////////////////
// Run when entering map
void OnEnter()
{
    
AddEntityCollideCallback("Player""area_load_1_1""Load1Enter"false1);
}

void Load1Enter(string &in asParentstring &in asChildint alState)
{
    
AddLocalVarInt("Load1Enter"1)


void unlock_1(string &in asItemstring &in asEntity)
{
    
SetLevelDoorLocked("level_room_1_2"false);
    
PlaySoundAtEntity("""unlock_door.snt""level_room_1_2"0false);
    
RemoveItem("key_door_room_1_1");
}

void Intro(string &in asTimer)
{
    if(
GetLocalVarInt("Intro") < 3) {
        if(
asTimer == "fadein") {
            
TeleportPlayer("intro_" GetLocalVarInt("Intro"));
            
FadeIn(1);
            
AddTimer("fadeout"4"Intro");
        }
        if(
asTimer=="fadeout") {
            
FadeOut(1);
            
AddTimer("fadein"1"Intro");
            
AddLocalVarInt("Intro"1);
        }
    }
    else
    {
        
TeleportPlayer("begin");
        
FadeIn(2);
        
SetPlayerActive(true);
        
SetSanityDrainDisabled(false);
        
ShowPlayerCrossHairIcons(true);
        
PlayMusic("janji_summer_memories.ogg"true0.222false);
    }
}

void note_room_1_1(string &in asEntity)
{
    
AddGlobalVarInt("key_1"1);
    if(
GetGlobalVarInt("sanity_1") == 1){
        
AddGlobalVarInt("sanity_action_1"1);    
    }
    else{
        
AddGlobalVarInt("sanity_off_1"1);
    }

////////////////////////////
// Run when leaving map
void OnLeave()
{
    if(
GetLocalVarInt("Load1Enter") == 1){
        
SetupLoadScreen("load_1_1""load_1_1"false"map_2_edited.png");
    }


What did I do wrong? Whoever explains it from Romulator or Mudbill (they usually explain it Tongue) will be the best for me. Thx ^_^
11-14-2016, 07:06 PM
Find


Messages In This Thread
Unexplainable Error! - by Verkehr - 11-14-2016, 07:06 PM
RE: Unexplainable Error! - by Mudbill - 11-14-2016, 10:18 PM
RE: Unexplainable Error! - by Verkehr - 11-14-2016, 11:14 PM
RE: Unexplainable Error! - by Verkehr - 11-16-2016, 05:55 PM
RE: Unexplainable Error! - by Mudbill - 11-16-2016, 05:57 PM
RE: Unexplainable Error! - by Verkehr - 11-16-2016, 07:48 PM
RE: Unexplainable Error! - by Verkehr - 11-16-2016, 10:57 PM
RE: Unexplainable Error! - by Mudbill - 11-17-2016, 12:32 AM
RE: Unexplainable Error! - by Verkehr - 11-17-2016, 03:29 PM
RE: Unexplainable Error! - by FlawlessHappiness - 11-17-2016, 06:42 PM
RE: Unexplainable Error! - by Verkehr - 11-17-2016, 08:34 PM
RE: Unexplainable Error! - by Mudbill - 11-17-2016, 09:46 PM
RE: Unexplainable Error! - by Verkehr - 11-17-2016, 10:11 PM



Users browsing this thread: 1 Guest(s)