Frictional Games Forum (read-only)

Full Version: Unexpected End in my code :c
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My code has got unexpected end but i dont know where or how since I can't see anything that doesn't not work.

PHP Code:
void OnStart()
{
    
AddUseItemCallback("""Key1""Door1""UseKeyOnDoor"true);
    
AddEntityCollideCallback("Player""ZoneCollide, "Dialogue", true, 1);    
}

void UseKeyOnDoor("
Key1", "Door1")
{
    SetSwingDoorLocked(asEntity, false, true);
    PlaySoundAtEntity("", "
door_unlock.snt", asEntity, 0, false);
    RemoveItem(asItem)
}


void PlayRecord(string &in asEntity, int alState)
{
    if(alState == 1)
    {
        PlaySoundAtEntity("", "
grapevine.snt", asEntity, 0, true);
    }


}
void Dialogue(string &in asParent, string &in asChild, int alState)
{
    SetPlayerActive(false);
    AddEffectVoice("
agony1", "", "Dialogue", "", false, asParent, 2, 20);
    StartPlayerLookAt("
lookat1", 2, 2, "");
    AddTimer("
T1", 8.5f, "Lookat");
    GiveSanityDamage(5.0f, true);
}

void Lookat(string &in asTimer)
{
    StopPlayerLookAt();
    StartPlayerLookAt("
lookat2", 2, 2, "");
    AddTimer("
T2", 14.0f, "Lookat2");
}
void Lookat2(string &in asTimer)
{
    StopPlayerLookAt();
    SetPlayerActive(true);

PHP Code:
AddEntityCollideCallback("Player""ZoneCollide, "Dialogue", true, 1); 

There's a missing quote after ZoneCollide. You can easily tell because the color inverts for the whole script after that point.

PHP Code:
void UseKeyOnDoor("Key1""Door1"

Constructors also should not have parameters like that. These should be
PHP Code:
(string &in asItemstring &in asEntity
I've changed it and found there also wasn't a ; after the removeitem but it still says unexpected error :c
What does the error say though? It will give you two numbers that tell you where in your file the issue starts.
FATAL ERROR: Could not load script file
(43, 2): ERR : Unexpected end of file.
I don't see anything really wrong. The error mentions the very end of the file, but the third character (including 0) is non existant, is it? Perhaps an odd parsing symbol has snuck its way in there?
Quote:Unexpected end of file
Sounds like a missing brace }
Post your script?
edit: Oh it's up there. ok.

I don't know. It seems correct for me too. Can you try this one below?

PHP Code:
void OnStart()
{
    
AddUseItemCallback("""Key1""Door1""UseKeyOnDoor"true);
    
AddEntityCollideCallback("Player""ZoneCollide""Dialogue"true1);    
}

void UseKeyOnDoor(string &in asItemstring &in asEntity)
{
    
SetSwingDoorLocked(asEntityfalsetrue);
    
PlaySoundAtEntity("""door_unlock.snt"asEntity0false);
    
RemoveItem(asItem);
}


void PlayRecord(string &in asEntityint alState)
{
    if(
alState == 1)
    {
        
PlaySoundAtEntity("""grapevine.snt"asEntity0true);
    }


}
void Dialogue(string &in asParentstring &in asChildint alState)
{
    
SetPlayerActive(false);
    
AddEffectVoice("agony1""""Dialogue"""falseasParent220);
    
StartPlayerLookAt("lookat1"22"");
    
AddTimer("T1"8.5f"Lookat");
    
GiveSanityDamage(5.0ftrue);
}

void Lookat(string &in asTimer)
{
    
StopPlayerLookAt();
    
StartPlayerLookAt("lookat2"22"");
    
AddTimer("T2"14.0f"Lookat2");
}
void Lookat2(string &in asTimer)
{
    
StopPlayerLookAt();
    
SetPlayerActive(true);

Oh wow, that worked haha but what did you change? Just found out my key didn't even work that whole time neither T_T. Anyhow thanks dude!
EDIT: Fixed my key no worries c: