Hard Light Productions Forums

Modding, Mission Design, and Coding => The Modding Workshop => Topic started by: CrazyToast012 on August 03, 2017, 10:04:20 am

Title: Having Trouble with Old Mod
Post by: CrazyToast012 on August 03, 2017, 10:04:20 am
I've recently booted up FreeSpace2 after a long time away and remembered about an old story line mod I was working on and wanted to play it. However I keep getting this message trying to run it.

Quote
weapons.tbl(line 4962):
Error: Required token = [#End] or [$Name:], found [;; Create 15 "Cluster Baby" chil].

ntdll.dll! ZwWaitForSingleObject + 12 bytes
KERNELBASE.dll! WaitForSingleObject + 18 bytes
fs2_open_3_7_4.exe! SCP_DumpStack + 213 bytes
fs2_open_3_7_4.exe! Error + 230 bytes
fs2_open_3_7_4.exe! error_display + 202 bytes
fs2_open_3_7_4.exe! required_string_either + 155 bytes
fs2_open_3_7_4.exe! parse_weaponstbl + 271 bytes
fs2_open_3_7_4.exe! weapon_init + 83 bytes
fs2_open_3_7_4.exe! game_init + 1373 bytes
fs2_open_3_7_4.exe! game_main + 330 bytes
fs2_open_3_7_4.exe! WinMain + 222 bytes
fs2_open_3_7_4.exe! __scrt_common_main_seh + 253 bytes
KERNEL32.DLL! BaseThreadInitThunk + 36 bytes
ntdll.dll! RtlGetAppContainerNamedObjectPath + 253 bytes
ntdll.dll! RtlGetAppContainerNamedObjectPath + 205 bytes

For some reason I can't seem to figure it out.  I've gone through the weapons.tbl and tried everything I could including deleting the affected line, replacing it, etc.  After 5 hours of staring at the screen I cant figure it out. I'm probably missing something silly somewhere to make it compatible with this version of FS2open.  However like I said I haven't messed around with this stuff in so long I've almost forgotten everything.

Any help would be appreciated.   

Link to mod
https://drive.google.com/open?id=0B-yNZ7QKYIIDTU4wWFpObEpKS0k (https://drive.google.com/open?id=0B-yNZ7QKYIIDTU4wWFpObEpKS0k)
Title: Re: Having Trouble with Old Mod
Post by: Admiral Nelson on August 03, 2017, 10:31:53 am
There are a ton of errors in those tables, unfortunately.  The specific problem you are having is likely in the previous line: $Flags:                                ( "player allowed" "Spawn Cluster Baby,15" "Bomb" in tech database")

You'll see that the in tech database flag is missing its initial quotation mark.  The are plenty more errors to fix, however.
Title: Re: Having Trouble with Old Mod
Post by: CrazyToast012 on August 03, 2017, 10:39:18 am
There are a ton of errors in those tables, unfortunately.  The specific problem you are having is likely in the previous line: $Flags:                                ( "player allowed" "Spawn Cluster Baby,15" "Bomb" in tech database")

You'll see that the in tech database flag is missing its initial quotation mark.  The are plenty more errors to fix, however.

oh snap, looks like I got some work ahead of me.