Page 1 of 1
Need some help
Posted: Tue Aug 21, 2007 11:27 am
by REivEN
okay here's the problem i dont know where to put the sounds for the dc-17 and what do i exactly need to rename in editlocalize
EDIT: How can i add more units to the side like the clone medic ?
RE: Need some help
Posted: Tue Aug 21, 2007 11:53 am
by Master Fionwë
Well, the extra unit thing, add a line like the others in the script,
soldier = { "rep_inf_ep3_rocketeer",5, 7},
pilot = { "rep_inf_ep3_sniper",5, 7},
assault = {"rep_inf_ep3_engineer",5, 7},
sniper = { "rep_inf_ep3_pilot",4, 6},
marine = { "rep_inf_ep3_officer",4, 6},
engineer = { "rep_inf_ep3_jettrooper",5, 6},
officer = {"rep_inf_ep2_commander",3, 6},
special = { "rep_inf_ep3_arctrooper",1, 3},
AddUnitClass(1, "rep_inf_ep3_rifleman",10, 20)
RE: Need some help
Posted: Tue Aug 21, 2007 11:57 am
by REivEN
yeah i tried that but it doesn't worked
RE: Need some help
Posted: Tue Aug 21, 2007 12:01 pm
by Master Fionwë
Do you have the unit loaded into your script?
EDIT: Did you get the files I sent you? For beta testing?
RE: Need some help
Posted: Tue Aug 21, 2007 12:02 pm
by REivEN
what do you mean ?
RE: Need some help
Posted: Tue Aug 21, 2007 12:07 pm
by Master Fionwë
I sent yoi a pm with the map files, to beta test.
In the script, there are the lines,
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")
That loads the unit into your map, the units req name needs to be in there in order for it to appear ingame.
RE: Need some help
Posted: Tue Aug 21, 2007 12:12 pm
by REivEN
and yeah i got the pm
RE: Need some help
Posted: Tue Aug 21, 2007 12:13 pm
by Master Fionwë
Good.
Is the unit loaded into your map?
RE: Need some help
Posted: Tue Aug 21, 2007 12:14 pm
by REivEN
no !!!
Re: Need some help
Posted: Mon Sep 03, 2007 9:10 am
by REivEN
Because i dont know ho to upload it

Re: Need some help
Posted: Mon Sep 03, 2007 10:37 am
by Taivyx
I'd suggest editing your post and not yelling at someone who's trying to help you.
You add this line to, say, the middle of what Fionwe posted.
"<your_unit_name>",
So it would be like:
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",
"<your_unit_name>",
"rep_inf_ep3_jettrooper",
"rep_hover_fightertank",
"rep_hero_anakin",
"rep_hover_barcspeeder")
That's what loading a unit into your level means.
It has nothing to do with uploading.
Re: Need some help
Posted: Mon Sep 03, 2007 10:44 am
by REivEN
Thank you Taivyx
