Ok this is simple and probably LUA based. How do I make it where I only have certain units? In other words, like, only clone riflemen vs. the SBD's. How would I do this? Just remove lines with these units from the LUA? Thanks in advance.
Oh yes and I'd like to know how to max out the possible units on either side. Do I change the line for like 150 reinforcments in the LUA?
Also, one last thing. If possible, where is the unit for the B1? I want to make it droidekas, B1's, and SBD's vs. just clones. Thanks.
Subtracting units, adding a few...
Moderator: Moderators
-
Hunted_One
-
Vyse
- General

- Posts: 776
- Joined: Sun Aug 28, 2005 5:01 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
I believe your asking about this. Just delete the names of the other units being called out in the LUA under the "SetupTeams{" Section like below.
If you want to have more units on the map change the "Untis = " part higher.
rep = {
team = REP,
units = 20,
reinforcements = 150,
soldier = { "rep_inf_ep3_rifleman",9, 25},
assault = { "",1, 4},
engineer = { "",1, 4},
sniper = { "",1, 4},
officer = {"",1, 4},
special = { "",1, 4},
},
cis = {
team = CIS,
units = 20,
reinforcements = 150,
soldier = { "cis_inf_rifleman",9, 25},
assault = { "",1, 4},
engineer = { "",1, 4},
sniper = { "",1, 4},
officer = {"",1, 4},
special = { "",1, 4},
}
}
If you want to have more units on the map change the "Untis = " part higher.
rep = {
team = REP,
units = 20,
reinforcements = 150,
soldier = { "rep_inf_ep3_rifleman",9, 25},
assault = { "",1, 4},
engineer = { "",1, 4},
sniper = { "",1, 4},
officer = {"",1, 4},
special = { "",1, 4},
},
cis = {
team = CIS,
units = 20,
reinforcements = 150,
soldier = { "cis_inf_rifleman",9, 25},
assault = { "",1, 4},
engineer = { "",1, 4},
sniper = { "",1, 4},
officer = {"",1, 4},
special = { "",1, 4},
}
}
-
CmdAt-a
-
EGG_GUTS
- Master Bounty Hunter

- Posts: 1626
- Joined: Thu Dec 07, 2006 7:38 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: CANADA!
- DarthD.U.C.K.
- Master of the Force

- Posts: 6027
- Joined: Wed Sep 27, 2006 11:05 am
- Location: Duckburg, Germany
