EDIT: How can i add more units to the side like the clone medic ?
Need some help
Moderator: Moderators
- REivEN
- 1st Lieutenant

- Posts: 451
- Joined: Wed Jul 04, 2007 11:59 am
- Projects :: Jane - Sister Of the Courier Mod
- xbox live or psn: No gamertag set
- Location: What do you expect?
Need some help
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 ?
EDIT: How can i add more units to the side like the clone medic ?
-
Master Fionwë
- Rebel Colonel

- Posts: 598
- Joined: Wed May 30, 2007 3:33 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: At RCTC
- Contact:
RE: Need some help
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)
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)
- REivEN
- 1st Lieutenant

- Posts: 451
- Joined: Wed Jul 04, 2007 11:59 am
- Projects :: Jane - Sister Of the Courier Mod
- xbox live or psn: No gamertag set
- Location: What do you expect?
RE: Need some help
yeah i tried that but it doesn't worked
-
Master Fionwë
- Rebel Colonel

- Posts: 598
- Joined: Wed May 30, 2007 3:33 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: At RCTC
- Contact:
RE: Need some help
Do you have the unit loaded into your script?
EDIT: Did you get the files I sent you? For beta testing?
EDIT: Did you get the files I sent you? For beta testing?
- REivEN
- 1st Lieutenant

- Posts: 451
- Joined: Wed Jul 04, 2007 11:59 am
- Projects :: Jane - Sister Of the Courier Mod
- xbox live or psn: No gamertag set
- Location: What do you expect?
RE: Need some help
what do you mean ?
-
Master Fionwë
- Rebel Colonel

- Posts: 598
- Joined: Wed May 30, 2007 3:33 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: At RCTC
- Contact:
RE: Need some help
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.
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.
- REivEN
- 1st Lieutenant

- Posts: 451
- Joined: Wed Jul 04, 2007 11:59 am
- Projects :: Jane - Sister Of the Courier Mod
- xbox live or psn: No gamertag set
- Location: What do you expect?
RE: Need some help
and yeah i got the pm
Last edited by REivEN on Tue Aug 21, 2007 12:13 pm, edited 1 time in total.
-
Master Fionwë
- Rebel Colonel

- Posts: 598
- Joined: Wed May 30, 2007 3:33 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: At RCTC
- Contact:
RE: Need some help
Good.
Is the unit loaded into your map?
Is the unit loaded into your map?
- REivEN
- 1st Lieutenant

- Posts: 451
- Joined: Wed Jul 04, 2007 11:59 am
- Projects :: Jane - Sister Of the Courier Mod
- xbox live or psn: No gamertag set
- Location: What do you expect?
RE: Need some help
no !!!
- REivEN
- 1st Lieutenant

- Posts: 451
- Joined: Wed Jul 04, 2007 11:59 am
- Projects :: Jane - Sister Of the Courier Mod
- xbox live or psn: No gamertag set
- Location: What do you expect?
Re: Need some help
Because i dont know ho to upload it 
-
Taivyx
- 2008 Best Games Related Avatar
- Posts: 1706
- Joined: Thu Jun 07, 2007 3:34 pm
- Projects :: Terra Strife - discontinued
- xbox live or psn: No gamertag set
- Contact:
Re: Need some help
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.
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.
- REivEN
- 1st Lieutenant

- Posts: 451
- Joined: Wed Jul 04, 2007 11:59 am
- Projects :: Jane - Sister Of the Courier Mod
- xbox live or psn: No gamertag set
- Location: What do you expect?
Re: Need some help
Thank you Taivyx 
