Page 1 of 1

How do i add the Arctrooper?

Posted: Sun Jul 17, 2011 2:00 pm
by kapladp
help as adding arctrooper 8)
Image

rep_inf_ep2_rocketeer :funny2:

SOLVED

Re: how adding arctrooper

Posted: Sun Jul 17, 2011 2:15 pm
by Fiodis
If you haven't yet, read the stock documentation, especially Getting Started.doc. Then take a look through the FAQ thread, stickied at the top of this forum. There's a few good side-making tutorials there, like this one.

Re: How do i add the Arctrooper?

Posted: Mon Jul 18, 2011 7:27 pm
by kapladp
Hidden/Spoiler:
C:\BF2_ModTools\ToolsFL\Bin\luac.exe: ..\..\common\scripts\EEE\EEEc_con.lua:138: `}' expected (to close `{' at line 127) near `elite'
ERROR[scriptmunge scripts\EEE\EEEc_con.lua]:Could not read input file.ERROR[scriptmunge scripts\EEE\EEEc_con.lua]:Could not read input file. [continuing]
2 Errors 0 Warnings

ERROR[levelpack mission\EEEc_con.req]:Expecting bracket, but none was found.
File : munged\pc\eeec_con.script.req(1)...

ucft <--
ERROR[levelpack mission\EEEc_con.req]:Expecting bracket, but none was found.
File : munged\pc\eeec_con.script.req(1)...

ucft <--

2 Errors 0 Warnings
Hidden/Spoiler:
ReadDataFile("sound\\yav.lvl;yav1cw")
ReadDataFile("dc:sound\\eee.lvl;eeecw")
ReadDataFile("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_inf_ep2_elite",
"rep_inf_ep2_marine",
"rep_hover_fightertank",
"rep_hero_anakin",
"rep_hover_barcspeeder")

ReadDataFile("SIDE\\cis.lvl",
"cis_inf_rifleman",
"cis_inf_rocketeer",
"cis_inf_engineer",
"cis_inf_sniper",
"cis_inf_officer",
"cis_inf_droideka",
"cis_fly_droidfighter",
"cis_hero_darthmaul",
"cis_hover_aat")

ReadDataFile("SIDE\\rep.lvl",
"rep_fly_anakinstarfighter_sc",
"rep_fly_arc170fighter_sc")

ReadDataFile("SIDE\\cis.lvl",
"cis_fly_droidfighter_sc")



ReadDataFile("SIDE\\tur.lvl",
"tur_bldg_laser",
"tur_bldg_tower")


SetupTeams{
rep = {
team = REP,
units = 100,
reinforcements = 400,
soldier = { "rep_inf_ep3_rifleman",9, 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},
marine = { "rep_inf_ep2_marine",1, 4}
elite = { "rep_inf_ep2_elite",1, 4}

},
cis = {
team = CIS,
units = 100,
reinforcements = 300,
soldier = { "cis_inf_rifleman",9, 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_anakin")
= happens with OFFICER----------rep_inf_ep2_officer (edit.....rep_inf_ep2_elite)

Re: How do i add the Arctrooper?

Posted: Mon Jul 18, 2011 7:45 pm
by acryptozoo
probably isnt it but try changing this

Code: Select all

  officer = {"rep_inf_ep3_officer",1, 4},
to this

Code: Select all

  officer = { "rep_inf_ep3_officer",1, 4},

Re: How do i add the Arctrooper?

Posted: Mon Jul 18, 2011 7:53 pm
by CressAlbane

Code: Select all

officer = {"rep_inf_ep3_officer",1, 4},
special = { "rep_inf_ep3_jettrooper",1, 4},
marine = { "rep_inf_ep2_marine",1, 4}
elite = { "rep_inf_ep2_elite",1, 4}

SHOULD be

Code: Select all

officer = {"rep_inf_ep3_officer",1, 4},
special = { "rep_inf_ep3_jettrooper",1, 4},
marine = { "rep_inf_ep2_marine",1, 4},
elite = { "rep_inf_ep2_elite",1, 4}


Re: How do i add the Arctrooper?

Posted: Mon Jul 18, 2011 8:39 pm
by kapladp
7 soldiers
rep_inf_ep2_elite or officer missing

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_inf_ep2_marine",
"rep_inf_ep2_elite or officer",

which is limit of soldiers

Re: How do i add the Arctrooper?

Posted: Mon Jul 18, 2011 8:47 pm
by Ashley
ReadDataFile("SIDE\\rep.lvl",
"rep_inf_ep3_rocketeer",
"rep_inf_ep3_rifleman",
"rep_inf_ep3_sniper",
"rep_inf_ep3_engineer",
"rep_inf_ep3_jettrooper",
"rep_inf_ep3_officer",
"rep_inf_ep2_officer",
"rep_hero_obiwan")

----------------------------------------------------

SetupTeams{
rep = {
team = REP,
units = 28,
reinforcements = 150,
soldier = { "rep_inf_ep3_rifleman",9, 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,2},
special = { "rep_inf_ep3_jettrooper",1,4},

},
}

AddUnitClass(REP,"rep_inf_ep2_officer", 1,2)

SetupTeams{

Re: How do i add the Arctrooper?

Posted: Mon Jul 18, 2011 9:18 pm
by kapladp
ReadDataFile("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_inf_ep2_marine",
"rep_inf_ep2_officer",
"rep_hover_fightertank",
"rep_hero_anakin",
"rep_hover_barcspeeder")


SetupTeams{
rep = {
team = REP,
units = 100,
reinforcements = 400,
soldier = { "rep_inf_ep3_rifleman",9, 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},
marine = { "rep_inf_ep2_marine",1, 4},



},
cis = {
team = CIS,
units = 100,
reinforcements = 300,
soldier = { "cis_inf_rifleman",9, 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},
}
}

SetHeroClass(CIS, "cis_hero_darthmaul")
SetHeroClass(REP, "rep_hero_anakin")
AddUnitClass(REP, "rep_inf_ep2_officer",1, 4) :| :| :|

Re: How do i add the Arctrooper?

Posted: Mon Jul 18, 2011 9:21 pm
by Ashley
whats this "elite". and u have it set up wrong
if u want the arc trooper, without taking out another trooper, use wat i posted

Re: How do i add the Arctrooper?

Posted: Mon Jul 18, 2011 9:26 pm
by kapladp
Ashley wrote:whats this "elite". and u have it set up wrong
if u want the arc trooper, without taking out another trooper, use wat i posted
waiting.....

Re: How do i add the Arctrooper?

Posted: Mon Jul 18, 2011 9:29 pm
by Fiodis
kapladp wrote:
Ashley wrote:whats this "elite". and u have it set up wrong
if u want the arc trooper, without taking out another trooper, use wat i posted
waiting.....
Waiting for what? Ashley already posted. :|

Re: How do i add the Arctrooper?

Posted: Mon Jul 18, 2011 9:36 pm
by kapladp
rep_inf_ep2_officer missing
7 soldiers is the limit?

Image

Re: How do i add the Arctrooper?

Posted: Mon Jul 18, 2011 9:45 pm
by Ashley
elite = { "rep_inf_ep2_elite",1, 4}

Do u mean pilot?

pilot = { "rep_inf_ep3_pilot",1, 2}, unless elite is a class u made urself.

u must be more specific on ur posts if anyone is to answer them correctly, sorry.

if elite is the class u made use this

pilot = { "rep_inf_ep2_elite",1, 4},

Re: How do i add the Arctrooper? solved

Posted: Mon Jul 18, 2011 9:49 pm
by kapladp
Ashley wrote:elite = { "rep_inf_ep2_elite",1, 4}

Do u mean pilot?

pilot = { "rep_inf_ep3_pilot",1, 2}, unless elite is a class u made urself.

u must be more specific on ur posts if anyone is to answer them correctly, sorry.

if elite is the class u made use this

pilot = { "rep_inf_ep2_elite",1, 4},

ReadDataFile("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_inf_ep2_marine",
"rep_inf_ep2_officer",
"rep_hover_fightertank",
"rep_hero_anakin",
"rep_hover_barcspeeder")

SetupTeams{
rep = {
team = REP,
units = 100,
reinforcements = 300,
soldier = { "rep_inf_ep3_rifleman",9, 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},
marine = { "rep_inf_ep2_marine",1, 4},
officer = { "rep_inf_ep2_officer",1, 4},

SetHeroClass(CIS, "cis_hero_darthmaul")
SetHeroClass(REP, "rep_hero_anakin")
AddUnitClass(REP, "rep_inf_ep2_officer",1, 4)

solved ARCTROOPER is rep_inf_ep2_rocketeer :thumbs:

SOLVED

gracias a los que me intentaron ayudarme :bowdown: