Page 1 of 1

Error Log Errors

Posted: Wed Sep 23, 2009 8:55 am
by IronJaw
Well I tried to mix n' match the Republic and Rebel units, but I got these errors:
Hidden/Spoiler:
Message Severity: 3
C:\Battlefront2\main\Battlefront2\Source\LoadUtil.cpp(829)
Unable to find level chunk rep_hover_barcspeeder in C:\Program Files\LucasArts\Star Wars Battlefront II\GameData\AddOn\PB1\Data\_lvl_pc\SIDE\rep.lvl


Message Severity: 3
C:\Battlefront2\main\Battlefront2\Source\LoadUtil.cpp(1019)
Unable to find level chunk in dc:SIDE\rep.lvl


Message Severity: 3
C:\Battlefront2\main\Battlefront2\Source\Entity.cpp(218)
Entity base class "com_hero_default" not found
I have the whole Common sides folder in my maps sides folder, and the level played just fine before.......

Re: Error Log Errors

Posted: Wed Sep 23, 2009 9:41 am
by CodaRez
IronJaw wrote:Well I tried to mix n' match the Republic and Rebel units, but I got these errors:

Message Severity: 3
C:\Battlefront2\main\Battlefront2\Source\LoadUtil.cpp(829)
Unable to find level chunk rep_hover_barcspeeder in C:\Program Files\LucasArts\Star Wars Battlefront II\GameData\AddOn\PB1\Data\_lvl_pc\SIDE\rep.lvl
Ummm, you missing any of the barc speeder chunks man :? . Or any part of the BARC speeder actually?

Re: Error Log Errors

Posted: Wed Sep 23, 2009 11:01 am
by DarthD.U.C.K.
ther is a small difference between LEVEL chunks and VEHICLE chunks
it means battlefront cant find the "rep" side in your maps side folder and therefore not the barcspeeder in it

Re: Error Log Errors

Posted: Wed Sep 23, 2009 11:10 am
by IronJaw
That's weird..... The map worked fine... I changed the .lua, and it breaks..... I guess that mean that the .lua needs to be seen......

Here's the ***c_con.lua. There are four total two for the Conquest and two for the CTF::
Hidden/Spoiler:
ReadDataFile("sound\\yav.lvl;yav1cw")
ReadDataFile("dc:SIDE\\rep.lvl",
"rep_inf_ep3_rifleman",
"rep_inf_ep3_rocketeer",
"rep_inf_ep3_engineer",
"rep_inf_ep3_sniper",
"rep_inf_ep3_officer",
"rep_inf_ep3_jettrooper",
"rep_hover_fightertank",
"rep_hero_anakin",
"rep_hover_barcspeeder",
"kam_fly_ride_gunship",
"rep_fly_gunship",
"rep_hover_barcspeeder",
"rep_fly_ride_gunship",
"rep_fly_arc170fighter_sc",
"rep_fly_anakinstarfighter_sc")
ReadDataFile("dc:SIDE\\all.lvl",
"all_inf_rifleman",
"all_inf_rocketeer",
"all_inf_sniper",
"all_inf_engineer",
"all_inf_officer",
"all_inf_wookiee",
"all_hero_hansolo_tat")

SetupTeams{
rep = {
team = REP,
units = 20,
reinforcements = 150,
soldier = { "rep_inf_ep3_rifleman",9, 25},
assault = { "all_inf_rocketeer",1, 4},
engineer = { "all_inf_engineer",1, 4},
sniper = { "rep_inf_ep3_sniper",1, 4},
officer = {"rep_inf_ep3_officer",1, 4},
special = { "rep_inf_ep3_jettrooper",1, 4},

},
cis = {
team = CIS,
units = 20,
reinforcements = 150,
soldier = { "all_inf_rifleman",9, 25},
assault = { "rep_inf_ep3_rocketeer",1, 4},
engineer = { "rep_inf_ep3_engineer",1, 4},
sniper = { "all_inf_sniper",1, 4},
officer = {"all_inf_officer",1, 4},
special = { "all_inf_wookiee",1, 4},
}
}

SetHeroClass(CIS, "cis_hero_darthmaul")
SetHeroClass(REP, "rep_hero_anakin")

Re: Error Log Errors

Posted: Wed Sep 23, 2009 11:28 am
by DarthD.U.C.K.
do you have the "rep" side in your worlds side folder?

Re: Error Log Errors

Posted: Wed Sep 23, 2009 11:42 am
by IronJaw
Yep.

Re: Error Log Errors

Posted: Wed Sep 23, 2009 1:37 pm
by FragMe!
Did you change the sides at all or do you just want to mix and match shipped units.
If there are no mods to units remove the dc: part and it will read the shipped units.

Re: Error Log Errors

Posted: Wed Sep 23, 2009 3:44 pm
by Xavious
IronJaw wrote:

Code: Select all

Message Severity: 3
C:\Battlefront2\main\Battlefront2\Source\Entity.cpp(218)
Entity base class "com_hero_default" not found
Check your common sides folder and make sure that odf is actually there.

Re: Error Log Errors

Posted: Wed Sep 23, 2009 6:30 pm
by Fiodis
If you only got the chunk error for the speederbike, that'd mean that the game can only not find the speederbike. Check your reqs, both side and individual.

Also, go into data***/LVL_PC/SIDE and make sure rep.lvl is in there.

Re: Error Log Errors

Posted: Thu Sep 24, 2009 11:26 pm
by IronJaw
I changed the .lua back to the original format, and the level works fine........ I'll keep experimenting with it and see what exactly went wrong.