Page 2 of 2

Re: Can't find REQ error

Posted: Mon Jan 21, 2013 2:47 pm
by Teancum
I just want to take a second to explain these REQ errors:
Loopy53 wrote:ERROR[levelpack req\rep_inf_ep2_anakin.req]:Expecting bracket, but none was found.
File : ..\..\..\sides\rep\req\rep_inf_ep2_anakin.req(0)...


Notice here where the REQ failed. This likely means the error is in the REQ file itself.

Loopy53 wrote:[continuing]
ERROR[levelpack rep.req]:Expecting bracket, but none was found.
File : munged\pc\rep_inf_flametrooper.lvl.req(1)...
However here notice that we're in munged\pc\, and that the file is [filename].lvl.req. This is a req that is built at munge-time to build the LVL file. It barfed here because one of the munged files it requires isn't present (I.E. a texture or model didn't munge). It's a two-step process. First the munge compiles the files into an optimized format for the game, and then it packs those into a LVL file. If there's a .lvl.req error, it's because one of the files didn't pass the first stage.

Re: Can't find REQ error [Solved]

Posted: Mon Jan 21, 2013 7:41 pm
by Loopy53
thanks for the info tean!