Where are the sides?[Solved]

Post everything from general questions, to modding questions, to map WIPs to releases. (SWBF1 only)

Moderator: Moderators

Post Reply
User avatar
Havoc 526
Rebel Warrant Officer
Rebel Warrant Officer
Posts: 317
Joined: Sat Apr 04, 2009 6:24 pm
Projects :: Something
Games I'm Playing :: Xenoblade Splatoon
Location: Howling at the Moon

Where are the sides?[Solved]

Post by Havoc 526 »

:faint: Well, I have found that I am a very messed up noob. But getting to the point...

The map I am making for SWBF 1 is good, it's munging correctly, it's all in the addon folder, yet, I have edited the script to use custom sides! My sides are not munging into the map. No matter what I do, this seems to be the case. I would much appreciate it if I received a hint on where to look for the instructions to load the map completely. :cpu:

Edit: If you wish to know, the mungelog keeps saying "rep_inf_clone_trooper.req" cannot be be found, when clearly it is right there in the sides file.
Last edited by Havoc 526 on Thu Jul 09, 2009 6:58 pm, edited 1 time in total.
501st_commander
Master Bounty Hunter
Master Bounty Hunter
Posts: 1570
Joined: Wed Dec 10, 2008 7:48 pm

Re: Where are the sides?

Post by 501st_commander »

1) In the .lua is it pointing to the .req?
2) Is it in the (race name).req also?
User avatar
Havoc 526
Rebel Warrant Officer
Rebel Warrant Officer
Posts: 317
Joined: Sat Apr 04, 2009 6:24 pm
Projects :: Something
Games I'm Playing :: Xenoblade Splatoon
Location: Howling at the Moon

Re: Where are the sides?

Post by Havoc 526 »

1. The map is munging, it's pointing to the req, the side itself is not munging.
2. Yes, that's what is confusing me.
501st_commander
Master Bounty Hunter
Master Bounty Hunter
Posts: 1570
Joined: Wed Dec 10, 2008 7:48 pm

Re: Where are the sides?

Post by 501st_commander »

The (race name).req looks like this:
Hidden/Spoiler:
ucft
{
REQN
{
"lvl"
"rep_bldg_forwardcenter"
"rep_fly_assault_dome"
"rep_fly_gunship"
"rep_fly_gunship_dome"
"rep_fly_jedifighter"
"rep_fly_jedifighter_dome"
"rep_fly_vtrans"
"rep_hover_fightertank"
"rep_hover_speederbike"
"rep_inf_basic"
"rep_inf_jet_trooper"
"rep_inf_macewindu"
"rep_walk_atte"
}
}
you need the rep_inf_clone_trooper in there like this:
Hidden/Spoiler:
ucft
{
REQN
{
"lvl"
"rep_bldg_forwardcenter"
"rep_fly_assault_dome"
"rep_fly_gunship"
"rep_fly_gunship_dome"
"rep_fly_jedifighter"
"rep_fly_jedifighter_dome"
"rep_fly_vtrans"
"rep_hover_fightertank"
"rep_hover_speederbike"
"rep_inf_clone_trooper"
"rep_inf_basic"
"rep_inf_jet_trooper"
"rep_inf_macewindu"
"rep_walk_atte"
}
}
Ty294
Sergeant Major
Sergeant Major
Posts: 247
Joined: Thu Mar 12, 2009 10:28 pm
Projects :: Various
Location: Minnesota

Re: Where are the sides?

Post by Ty294 »

Make sure in your munge and clean .bats, all the references to GAM should be changed to your side. Also, in the main munge you'll have to backspace 3 "REM"s.
User avatar
Havoc 526
Rebel Warrant Officer
Rebel Warrant Officer
Posts: 317
Joined: Sat Apr 04, 2009 6:24 pm
Projects :: Something
Games I'm Playing :: Xenoblade Splatoon
Location: Howling at the Moon

Re: Where are the sides?

Post by Havoc 526 »

Okay, for the REMs, how do you do that?
Ty294
Sergeant Major
Sergeant Major
Posts: 247
Joined: Thu Mar 12, 2009 10:28 pm
Projects :: Various
Location: Minnesota

Re: Where are the sides?

Post by Ty294 »

Ok, (now this is the munge.bat in the build_pc folder) find these lines:

Code: Select all

cd Sides
REM STARTSIDES
REM cd GAM
REM   @call munge.bat
REM cd ..
REM ENDSIDES
cd ..
Backpace these REMs:

Code: Select all

cd Sides
REM STARTSIDES
->REM cd GAM 
->REM   @call munge.bat 
->REM cd .. 
REM ENDSIDES
cd ..
I should look like this:

Code: Select all

cd Sides
REM STARTSIDES
cd (your side)
   @call munge.bat
cd ..
REM ENDSIDES
cd ..
User avatar
Havoc 526
Rebel Warrant Officer
Rebel Warrant Officer
Posts: 317
Joined: Sat Apr 04, 2009 6:24 pm
Projects :: Something
Games I'm Playing :: Xenoblade Splatoon
Location: Howling at the Moon

Re: Where are the sides?

Post by Havoc 526 »

And for multiple sides, I just copy and paste the changes right underneath "cd...", right?
501st_commander
Master Bounty Hunter
Master Bounty Hunter
Posts: 1570
Joined: Wed Dec 10, 2008 7:48 pm

Re: Where are the sides?

Post by 501st_commander »

If you mean REP, CIS, WOK folders in side then yes. then the munge and clean.bat will need to be in each folder (rep, cis, wok).
If you mean rep_inf_trooper and rep_inf_jettrooper in the REP side folder then no.
User avatar
Havoc 526
Rebel Warrant Officer
Rebel Warrant Officer
Posts: 317
Joined: Sat Apr 04, 2009 6:24 pm
Projects :: Something
Games I'm Playing :: Xenoblade Splatoon
Location: Howling at the Moon

Re: Where are the sides?

Post by Havoc 526 »

Okay, thanks guys. I think I got it figured out now!
Post Reply