Page 1 of 1

GZDoom 3.5.1 Breaks my old WADs... what changed?

Posted: Thu Oct 04, 2018 7:42 am
by real_trisk
Hey, I was just notified by someone who tried to run my map in the newest GZDoom. The game immediately CTDs with the error message "Script error, "theisland_full.pk3:mapinfo.lmp" line 213: Unexpected end of file in cluster definition.

I looked in my mapinfo file and I don't see anything wrong with it compared to the ZDoom wiki section on clusters... so I'm not sure what to do. Here's the offending section:

clusterdef 1
{
hub
flat = ATGRASS2
music = TRAVENLI
//

exittext =
"As the sails fill, you steer the primitive",
"life raft away from the island, confident",
"that you have destroyed all the invading",
"Demons. Hopefully you will drift into a",
"shipping lane and get picked up before",
"Too long. Congratulations! ",
"levels, music, sound, textures by Real_Trisk.",
"Coding also by Real_Trisk (I'm so alone...)",
"Monsters: Eriance, Cpt. Toenail, Tormentor667",
"Lexus Alyus, Ghastly_dragon, DavidRaven",
"Beta Testers: Major Cooke, Cpt. Toenail",
"Eriance, WildWeasel, NeoWorm ",
"Play more GZDoom levels and games free!",
"www.prodigal-game.com",
" ",
"Thanks for playing!",
"2010-12 Real_Trisk, Benjamin J Johnson",

}
//<---this is line 213, the end of the file.

Can anybody tell me what I'm doing wrong?

Thanks,
Ben

Re: GZDoom 3.5.1 Breaks my old WADs... what changed?

Posted: Thu Oct 04, 2018 8:02 am
by Gez
I think the problem here is that the last line of your exit text ends with a comma, so the parser expects to find one more line of text after it, and doesn't.

So if you just delete the comma after your signature, it should work again.

Re: GZDoom 3.5.1 Breaks my old WADs... what changed?

Posted: Thu Oct 04, 2018 10:11 am
by real_trisk
What the... I swear that was the first thing I tried, and it still crashed... but I tried again just to be safe and it worked perfectly.

Thanks Gez!