Page 1 of 1
Subtracting units, adding a few...
Posted: Tue Dec 05, 2006 2:59 pm
by Hunted_One
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.
Posted: Tue Dec 05, 2006 5:10 pm
by Vyse
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},
}
}
Posted: Tue Dec 05, 2006 6:24 pm
by CmdAt-a
oooh thanks vyse, i was wondering how t get all bots away from te map, and i didnt really know if i had to delete the names or the numbers

Posted: Mon Dec 11, 2006 5:27 pm
by EGG_GUTS
could you change the hero from the LUA to where it says
SetHeroClass(ALL, "all_hero_hansolo_tat")
SetHeroClass(IMP, "imp_hero_bobafett")
thanks
Posted: Mon Dec 11, 2006 8:10 pm
by fat_walrus
To earase bots change the min value to 0 and max 1. That should do it.
Posted: Tue Dec 12, 2006 11:25 am
by DarthD.U.C.K.
i edit the unit ad reinforcementscount, but nothing changes in game there is still the number
150
Posted: Tue Dec 12, 2006 4:03 pm
by Hunted_One
Hmm...I don't know what's wrong.