Help; Bf2 modding with zero editor and scripts
Moderator: Moderators
-
Dark117
Help; Bf2 modding with zero editor and scripts
Im making a sniper map and i just want for my conquest game mode for it to be snipers only, would i do this by going into my scripts for the map in my maps data folder and delete all the command lines exept sniper and then just munge the world? would appreciate some help, im not really good at this stuff but i love this stuff, so please help. please make it simple, like a guide
. Im only 13 and dont have a brain that understand alot of concepts so please bare with me. Its all for the bf2 modding comunity and the people who play swbf2. sorry to bother people
:twisted: :evil:
:
-
wazmol
- High General

- Posts: 892
- Joined: Sat Sep 02, 2006 6:47 pm
- Projects :: Thinking...
- Location: London
- Contact:
RE: Help; Bf2 modding with zero editor and scripts
go to C:\BF2_ModTools\data_xxx\Common\scripts\xxx and open up the xxxc_con.lua file and find (this is edited but it will be something like that):
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")
and change it to:
SetupTeams{
rep = {
team = REP,
units = 32,
reinforcements = 150,
sniper = { "rep_inf_ep3_sniper",1, 32},
},
cis = {
team = CIS,
units = 32,
reinforcements = 150,
sniper = { "cis_inf_sniper",1, 32},
}
}
SetHeroClass(CIS, "cis_hero_darthmaul")
SetHeroClass(REP, "rep_hero_macewindu")
hope that helps and welcome to (GT)
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")
and change it to:
SetupTeams{
rep = {
team = REP,
units = 32,
reinforcements = 150,
sniper = { "rep_inf_ep3_sniper",1, 32},
},
cis = {
team = CIS,
units = 32,
reinforcements = 150,
sniper = { "cis_inf_sniper",1, 32},
}
}
SetHeroClass(CIS, "cis_hero_darthmaul")
SetHeroClass(REP, "rep_hero_macewindu")
hope that helps and welcome to (GT)
-
Dark117
RE: Help; Bf2 modding with zero editor and scripts
Thanks man ill try that. Thats what iwas gonna do originaly but just wanted to make sure. Ive based all that off my knowledge before getting to know the editor, now i know alot about the editor anfter reading the documents and im almost complete with my map. I need to learn to make rain , Make my mountain have a pass running through it and up it. make a lake and add some stuff too 2 c.ps. Ill make sure i visit this polst again to make sure im doing the sniper thing right. Thanks for your help. Hope they dont delete the post and hope wat you said is right. People are gonna need this post and so am i. Well thnaks again.wazmol69 wrote:go to C:\BF2_ModTools\data_xxx\Common\scripts\xxx and open up the xxxc_con.lua file and find (this is edited but it will be something like that):
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")
and change it to:
SetupTeams{
rep = {
team = REP,
units = 32,
reinforcements = 150,
sniper = { "rep_inf_ep3_sniper",1, 32},
},
cis = {
team = CIS,
units = 32,
reinforcements = 150,
sniper = { "cis_inf_sniper",1, 32},
}
}
SetHeroClass(CIS, "cis_hero_darthmaul")
SetHeroClass(REP, "rep_hero_macewindu")
hope that helps and welcome to (GT)
-
Dark117
RE: Help; Bf2 modding with zero editor and scripts
Oo and another thing for the conquest script, getting rid of
SetHeroClass(CIS, "cis_hero_darthmaul")
SetHeroClass(REP, "rep_hero_macewindu")
would disallow heros to be unlocked? or would i just chnage the command line to something else? like:
SetHeroClass(CIS,"")
SetHeroClass(REP,"")
Would Appreciate some help =)
:
SetHeroClass(CIS, "cis_hero_darthmaul")
SetHeroClass(REP, "rep_hero_macewindu")
would disallow heros to be unlocked? or would i just chnage the command line to something else? like:
SetHeroClass(CIS,"")
SetHeroClass(REP,"")
Would Appreciate some help =)
-
Penguin
- Jedi Admin

- Posts: 2541
- Joined: Sun Mar 05, 2006 12:00 am
- Location: Australia
RE: Help; Bf2 modding with zero editor and scripts
remove the whole line
-
Dark117
Adding Rain, a waterfall prop, and a body of water
I need to know how to make rain for my sniper map and i want rain to continuasly fall, is there like a rain model where i just place it on the terrain it it loops the model =D lol i wish. i think these props might be in the dagobah file's but i dont wanna copy the folder unessasrly into my map before some tells me how to make the rain and mist, Is wheather effects already in the files when you create your world or is it by defalt just yavin?
I know ive seen it somewhere else, but can someone please post a link here as to where i can get a fabolous watter fall prop. Make sure its in .odf form with msh and for battlefront 2 because if i understand i think BFeditor (battlefront editting program) might use diffrect layouts and files for creating maps. I think ive seen on another post that you just place the odf. file and the msh file which is the actul model in to your data### world 1 folder
Ill ask about making a body of water later because i think ive got it coverd.
Almost done with my map, just trying to make it look sexy (sorry admins dont know if thats a banned word) a little more to do with the map itself then scenery.
:twisted: :evil:
I know ive seen it somewhere else, but can someone please post a link here as to where i can get a fabolous watter fall prop. Make sure its in .odf form with msh and for battlefront 2 because if i understand i think BFeditor (battlefront editting program) might use diffrect layouts and files for creating maps. I think ive seen on another post that you just place the odf. file and the msh file which is the actul model in to your data### world 1 folder
Ill ask about making a body of water later because i think ive got it coverd.
Almost done with my map, just trying to make it look sexy (sorry admins dont know if thats a banned word) a little more to do with the map itself then scenery.
:twisted: :evil:
-
Dark117
RE: Adding Rain, a waterfall prop, and a body of water
i was gonna post that as a whole new place instead
well i guess it falls under this catagory....

well i guess it falls under this catagory....
-
Dark117
RE: Adding Rain, a waterfall prop, and a body of water
Since i cant create a whole new poll ill just ask here,
What would you like to see in a a sniper map?
1)Rain
2)Mist
What is easier to snipe through (im guessing rain)
1)Rain
2)Mist
What would you like to see in a a sniper map?
1)Rain
2)Mist
What is easier to snipe through (im guessing rain)
1)Rain
2)Mist
