Page 1 of 1
Where are the sides?[Solved]
Posted: Thu Apr 23, 2009 8:14 pm
by Havoc 526

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.
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.
Re: Where are the sides?
Posted: Thu Apr 23, 2009 9:22 pm
by 501st_commander
1) In the .lua is it pointing to the .req?
2) Is it in the (race name).req also?
Re: Where are the sides?
Posted: Thu Apr 23, 2009 9:39 pm
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.
Re: Where are the sides?
Posted: Thu Apr 23, 2009 9:46 pm
by 501st_commander
The (race name).req looks like this:
you need the rep_inf_clone_trooper in there like this:
Re: Where are the sides?
Posted: Thu Apr 23, 2009 10:00 pm
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.
Re: Where are the sides?
Posted: Thu Apr 23, 2009 10:05 pm
by Havoc 526
Okay, for the REMs, how do you do that?
Re: Where are the sides?
Posted: Fri Apr 24, 2009 8:54 am
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 ..
Re: Where are the sides?
Posted: Fri Apr 24, 2009 5:03 pm
by Havoc 526
And for multiple sides, I just copy and paste the changes right underneath "cd...", right?
Re: Where are the sides?
Posted: Fri Apr 24, 2009 5:49 pm
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.
Re: Where are the sides?
Posted: Fri Apr 24, 2009 6:43 pm
by Havoc 526
Okay, thanks guys. I think I got it figured out now!