MungeLog errors that need solving..

In this forum you will find and post information regarding the modding of Star Wars Battlefront 2. DO NOT POST MOD IDEAS/REQUESTS.

Moderator: Moderators

Post Reply
User avatar
Par3210
Jedi
Jedi
Posts: 1033
Joined: Sun Jun 14, 2009 10:31 am
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: Owning people in SWBF2
Contact:

MungeLog errors that need solving..

Post 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?
Recon Trooper
Command Sergeant Major
Command Sergeant Major
Posts: 285
Joined: Fri Sep 11, 2009 5:36 am
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: Muhamid Ant Farm ???
Contact:

Re: MungeLog errors that need solving..

Post 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"
       }
}
User avatar
Fiodis
Master of the Force
Master of the Force
Posts: 4145
Joined: Wed Nov 12, 2008 9:27 pm
Projects :: Rannoch + Tientia + Tools Programming

Re: MungeLog errors that need solving..

Post 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.
Darth_Spiderpig
Sith Master
Sith Master
Posts: 2631
Joined: Fri Mar 27, 2009 10:23 am
Projects :: Something cool...
Games I'm Playing :: BF2 CoDBO BFBC2
xbox live or psn: Has no xbox....Yup
Location: Does whatever a Spiderpig does
Contact:

Re: MungeLog errors that need solving..

Post by Darth_Spiderpig »

Darn, I was too slow.

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