when i try to preview my game i get this message
Failed to save room room3.crm; details below
room3.asc(-10): Runtime error: unexpected eof
my script looks like this
cFreddy.Say("yeah...but i don't even know why ive been sent here");
csarah.Say("you're supposted to open this shop up...all you need is 20 gold coins and you have a shop to start you new life...");
cFreddy.Say(so...where do i get coins???");
cpennycsd.Say("well sell something i guess...here sell this...i don't need it.");
cFreddy.AddInventory(isuitcase);
}
but i can't figure out whats wrong...any ideas???
dw about answering i just spotted it...:)
I bet you forgot a bracket somewhere. Is there a { to the } in you script?
No, an eof error is (almost?) always an open string, in this case there's a " missing at the beginning of the 3rd line.
Ah, you're right.
Never had an eof error..
cFreddy.Say(so...where do i get coins???");
He forgot to put the brace there.