|
Ok, in the mission.lvl file, you can find all the text parts of the level scripts easily, but I can't seem to find any values to go with the text. The Coruscant conquest script from the mod tools looks like this: SetupTeams{ rep = { team = REP, units = 32, reinforcements = 150, soldier = { "rep_inf_ep3_rifleman",7, 25}, assault = { "rep_inf_ep3_rocketeer",1, 4}, engineer = { "rep_inf_ep3_engineer",1, 4}, sniper = { "rep_inf_ep3_sniper",1, 4}, officer = {"rep_inf_ep3_officer",1, 4}, special = { "rep_inf_ep3_jettrooper",1, 4}, }, cis = { team = CIS, units = 32, reinforcements = 150, soldier = { "cis_inf_rifleman",7, 25}, assault = { "cis_inf_rocketeer",1, 4}, engineer = { "cis_inf_engineer",1, 4}, sniper = { "cis_inf_sniper",1, 4}, officer = {"cis_inf_officer",1, 4}, special = { "cis_inf_droideka",1, 4}, } } SetHeroClass(CIS, "cis_hero_darthmaul") SetHeroClass(REP, "rep_hero_macewindu") We need to find out how/where the numbers are stored.
|