Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: on Sat 12/11/2005 06:12:01

Title: What is eof?
Post by: on Sat 12/11/2005 06:12:01
One of my rooms is giving me an error that reads "unexpected eof".  I can't find the term "eof" in the help files anywhere, and I'm not seeing any problem with the room script.  What does this error mean?
Title: Re: What is eof?
Post by: Barbarian on Sat 12/11/2005 06:26:31
End of File?

Perhaps you're closing/ending a script, maybe with a closing bracket "}", before it was expected? It maybe have been expecting a different scripting syntax.
Title: Re: What is eof?
Post by: RickJ on Sat 12/11/2005 10:44:58
Probably you are missing one or more closing braces "}".
Title: Re: What is eof?
Post by: on Sat 12/11/2005 20:18:29
I found the problem.  I had a ' instead of a " somewhere in the script.  Thanks for the suggestions, though.