Page 1 of 1

Mungelog error [Solved]

Posted: Sat Jan 03, 2009 5:37 pm
by Darth Skraal
What does this mean?

Code: Select all

C:\BF2_ModTools\ToolsFL\Bin\luac.exe: ..\..\common\scripts\setup_teams.lua:8: unfinished string near `"extra3 }'
ERROR[scriptmunge scripts\setup_teams.lua]:Could not read input file.ERROR[scriptmunge scripts\setup_teams.lua]:Could not read input file. [continuing]
   2 Errors    0 Warnings

ERROR[localizemunge French.cfg]:Text file syntax error. (No matching bracket)ERROR[localizemunge French.cfg]:Text file syntax error. (No matching bracket) [continuing]
   2 Errors    0 Warnings

ERROR[levelpack mission.req]:Expecting bracket, but none was found.
File : munged\pc\setup_teams.script.req(1)...

ucft <--
ERROR[levelpack mission.req]:Expecting bracket, but none was found.
File : munged\pc\setup_teams.script.req(1)...

ucft <--

   2 Errors    0 Warnings


Re: Another Mungelog Problem

Posted: Sat Jan 03, 2009 5:46 pm
by Fiodis
Giving it a passing glance, I see that the first one tells you exactly what's wrong. You have an unfinished string, near "extra3", in your setup_teams.LUA. Read your own logs more carefully.

Go to your BF2_Modtools folder. Copy BF2_Modtools.exe into your Lucasarts/SWBF2/Gamedata folder. Whenever you make a change to your map, test it with that. Afterwards, in your Gamedata folder, there will be a text file called BF2log. It tells you everything that happened in your test, what went wrong, and what to fix. It's usually much more helpful than a error log you get while munging.
^
You must fix any mungelog errors(not warnings) first before trying to test your map with the BF2_modtools.exe -Staff



EDIT - To fix your setup_teams.LUA error, change

"extra3 }

to

"extra3", }

Re: Another Mungelog Problem

Posted: Sat Jan 03, 2009 5:48 pm
by Darth Skraal
thanks, sorry.