Page 1 of 1

MungeLog errors that need solving..

Posted: Sun Oct 04, 2009 5:54 am
by Par3210
Hey its me Par3210, again, and back to give you some more juicy errors. :roll:
Hidden/Spoiler:
ERROR[levelpack req\kot_inf_hk47.req]:Unexpected end of file while searching for closing bracket.
File : ..\..\..\sides\kot\req\kot_inf_hk47.req(8)...
ERROR[levelpack req\kot_inf_hk47.req]:Unexpected end of file while searching for closing bracket.
File : ..\..\..\sides\kot\req\kot_inf_hk47.req(8)...
[continuing]
2 Errors 0 Warnings

ERROR[levelpack kot.req]:Unexpected end of file while searching for closing bracket.
File : ..\..\..\sides\kot\kot.req(8)...
ERROR[levelpack kot.req]:Unexpected end of file while searching for closing bracket.
File : ..\..\..\sides\kot\kot.req(8)...
[continuing]
2 Errors 0 Warnings
Were in my mungelog. Here are the reqs.
kot_inf_hk47.req:
Hidden/Spoiler:
ucft
{
REQN
{
"class"
"kot_inf_hk47"
}
kot.req:
Hidden/Spoiler:
ucft
{
REQN
{
"lvl"
"kot_inf_hk47"
}
Can someone help me?

Re: MungeLog errors that need solving..

Posted: Sun Oct 04, 2009 6:23 am
by Recon Trooper
Yours-

Code: Select all

ucft
{
      REQN
      {
      "class"
      "kot_inf_hk47"
      }
I think what it should be-

Code: Select all

ucft
{      
       REQN  
       {                     
        "class"
        "kot_inf_hk47"
       }
}

Re: MungeLog errors that need solving..

Posted: Sun Oct 04, 2009 11:05 am
by Fiodis
Recon is right on that count, you have an unclosed {. The error tells you what's wrong, actually:

Code: Select all

Unexpected end of file while searching for closing bracket.
It can't find the closing bracket.

Re: MungeLog errors that need solving..

Posted: Sun Oct 04, 2009 11:10 am
by Darth_Spiderpig
Darn, I was too slow.

Yeah, that is the problem, add a } and your problem should be gone :mrgreen: :thumbs: