Question form 3

In this forum you will find and post information regarding the modding of Star Wars Battlefront 2. DO NOT POST MOD IDEAS/REQUESTS.

Moderator: Moderators

Post Reply
EGG_GUTS
Master Bounty Hunter
Master Bounty Hunter
Posts: 1626
Joined: Thu Dec 07, 2006 7:38 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: CANADA!

Question form 3

Post by EGG_GUTS »

1. How do you get a normal battle droid ingame? *SOLVED*
2. How do you sharpen skins? *SOLVED*
3. Can some one post the D/L link for the vibro sword? *SOLVED*
4. Can you move up and down in free cam? *SOLVED*
5. Can you move use free cam while the battle is still going on without hud? *SOLVED*
6. Can jedis hold guns. to be more specific Grievous or Maul or Emperor or Yoda? *SOLVED*
7. What is the odf name for health and ammo droids? and the vehicle droid for BF1 ? *SOLVED*
8. Where is the prop of the imperial landing craft like in the Kamino Mission?
9. Is there a .TGA for the ep2 jettrooper's jet pack? *SOLVED*
10. How do you add the vibro sword?
11.Where do you put FXs and animes when you copy then from the assests folder?

thanks
Last edited by EGG_GUTS on Sat Mar 10, 2007 6:44 pm, edited 9 times in total.
Darth_Z13
Jedi High Council
Jedi High Council
Posts: 2275
Joined: Sat Jun 17, 2006 9:51 am
xbox live or psn: Xanthius Wylon
Location: Canada

RE: Question form 3

Post by Darth_Z13 »

Do you mean how do you give a B1 Battle Droid a blaster, pistol and thermal dets?
The_Emperor
Supreme Galactic Ruler
Posts: 2118
Joined: Sat Dec 10, 2005 6:30 am
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: Waaaaay over there.

RE: Question form 3

Post by The_Emperor »

:? I'm not sure what he means either :P Please elaborate
User avatar
phazon_elite
Rebel Colonel
Rebel Colonel
Posts: 597
Joined: Tue Jan 16, 2007 9:10 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: I'm sorry Link, I can't give the location. Come back when you're a little...mmmh...RICHER!
Contact:

RE: Question form 3

Post by phazon_elite »

I know what he means. I have a version of it in my Kamino: Breakout map. Just make an .odf called "cis_inf_b1droid" (what I use) or any other name for it. Then make a "cis_inf_default_b1droid" or whatever name you chose.

Create a .req named the same as the odf, too. Then add the name in the cis.req.

And finally, add it in the LUA under SetupTeams.

Code: Select all

    AddUnitClass(CIS, "cis_inf_UNITNAME",10,25)
Hope that helped.

- EP-000782
Xavious
Sith Master
Sith Master
Posts: 2783
Joined: Mon Jun 12, 2006 3:46 pm

RE: Question form 3

Post by Xavious »

You would need to make a new CIS side, then create the Battledroid's ODF. (or override an existing ODF)

Here's an example that overrides the Super Battle Droid.

cis_inf_default_rifleman.odf

Code: Select all

[GameObjectClass]
ClassParent     	= "cis_inf_default"

[Properties]
UnitType            	= "trooper"

WEAPONSECTION = 1
WeaponName     	= "cis_weap_inf_rifle"
WeaponAmmo     	= 100

WEAPONSECTION = 2
WeaponName     	= "cis_weap_inf_pistol"
WeaponAmmo     	= 0

WEAPONSECTION = 3
WeaponName     	= "cis_weap_inf_thermaldetonater"
WeaponAmmo     	= 3
WeaponChannel  	= 1

WEAPONSECTION = 2
WeaponName     	= "cis_weap_award_rifle"
WeaponAmmo     	= 4

VOUnitType      	= 083

VOSound = "cis1_inf_pc_com_hostile      SpottedVO"
VOSound = "cis1_inf_pc_com_bacta      NeedMedicVO"
VOSound = "cis1_inf_pc_com_mechanic      NeedRepairVO"
VOSound = "cis1_inf_pc_com_ammo      NeedAmmoVO"
VOSound = "cis1_inf_pc_com_transport      NeedPickupVO"
VOSound = "cis1_inf_pc_com_backup      NeedBackupVO"
VOSound = "cis1_inf_pc_com_clear_area      AttackPositionVO"
VOSound = "cis1_inf_pc_com_defend     DefendPositionVO"

VOSound = "cis1_inf_pc_com_hostile_inVehicle      SpottedVO +InVehicle"
VOSound = "cis1_inf_pc_com_bacta_inVehicle      NeedMedicVO +InVehicle"
VOSound = "cis1_inf_pc_com_mechanic_inVehicle      NeedRepairVO +InVehicle"
VOSound = "cis1_inf_pc_com_ammo_inVehicle      NeedAmmoVO +InVehicle"
VOSound = "cis1_inf_pc_com_transport_inVehicle      NeedPickupVO +InVehicle"
VOSound = "cis1_inf_pc_com_backup_inVehicle      NeedBackupVO +InVehicle"
VOSound = "cis1_inf_pc_com_clear_area_inVehicle      AttackPositionVO +InVehicle"
VOSound = "cis1_inf_pc_com_defend_inVehicle     DefendPositionVO +InVehicle"
cis_inf_rifleman.odf

Code: Select all

[GameObjectClass]
ClassParent     	= "cis_inf_default_rifleman"


[Properties]
UnitType            	= "trooper"

GeometryName        	= "cis_inf_bdroid"
GeometryLowRes      	= "cis_inf_bdroid_low1"
SkeletonName        	= "bdroid"
SkeletonLowRes      	= "bdroidlz"

FirstPerson         	= "CIS\cisbdrd;cis_1st_bdroid"
User avatar
phazon_elite
Rebel Colonel
Rebel Colonel
Posts: 597
Joined: Tue Jan 16, 2007 9:10 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: I'm sorry Link, I can't give the location. Come back when you're a little...mmmh...RICHER!
Contact:

RE: Question form 3

Post by phazon_elite »

Ok then. Follow Darth_Maul's tut if you want it in the game. Follow mine if you want it in just one map (yours, I presume).

- EP-000782
EGG_GUTS
Master Bounty Hunter
Master Bounty Hunter
Posts: 1626
Joined: Thu Dec 07, 2006 7:38 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: CANADA!

Post by EGG_GUTS »

k thanks I still don't understand much but I can ask on Xfire.

but I still have some questions (one is more of a request)

2. How do you sharpen skins?
3. Can some one post the D/L link for the vibro sword?
4. Can you move up and down in free cam?
5. Can you move use free cam while the battle is still going on without hud?

thanks
EGG_GUTS
Master Bounty Hunter
Master Bounty Hunter
Posts: 1626
Joined: Thu Dec 07, 2006 7:38 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: CANADA!

Post by EGG_GUTS »

4 more

6. Can jedis hold guns. to be more specific Grievous or Maul or Emperor or Yoda?
7. What is the odf name for health and ammo droids? and the vehicle droid for BF1 ?
8. Where is the prop of the imperial landing craft like in the Kamino Mission?
9. Is there a .TGA for the ep2 jettrooper's jet pack?

thanks
Xavious
Sith Master
Sith Master
Posts: 2783
Joined: Mon Jun 12, 2006 3:46 pm

Post by Xavious »

2. What program are you using?
4. Use the Home and End buttons.
5. Enter FreeCam mode, then hit Backspace.
6. Yes, for example relplace the geometry lines in the Stromtrooper with the geonmetry lines from Sidious.
EGG_GUTS
Master Bounty Hunter
Master Bounty Hunter
Posts: 1626
Joined: Thu Dec 07, 2006 7:38 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: CANADA!

Post by EGG_GUTS »

Darth_Maul wrote:2. What program are you using?
I'm using Gimp
User avatar
Teancum
Jedi Admin
Jedi Admin
Posts: 11080
Joined: Wed Sep 07, 2005 11:42 pm
Projects :: No Mod project currently.
Games I'm Playing :: Destiny
xbox live or psn: No gamertag set
Location: Indiana

Post by Teancum »

9. jetpack_prop.tga
Darth_Z13
Jedi High Council
Jedi High Council
Posts: 2275
Joined: Sat Jun 17, 2006 9:51 am
xbox live or psn: Xanthius Wylon
Location: Canada

Post by Darth_Z13 »

EGG_GUTS
Master Bounty Hunter
Master Bounty Hunter
Posts: 1626
Joined: Thu Dec 07, 2006 7:38 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: CANADA!

Post by EGG_GUTS »

Teancum wrote:9. jetpack_prop.tga
What folder?

oh and thanks Darth_Z13 I've been asking for ages

EDIT: How do I add it?
User avatar
phazon_elite
Rebel Colonel
Rebel Colonel
Posts: 597
Joined: Tue Jan 16, 2007 9:10 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: I'm sorry Link, I can't give the location. Come back when you're a little...mmmh...RICHER!
Contact:

Post by phazon_elite »

2. Go to filters/enhance/sharpen.
7. com_item_healthrecharge. It's in the Common\odfs folder (the one in data, not the assets!).

Hope that helps

- EP-000782
EGG_GUTS
Master Bounty Hunter
Master Bounty Hunter
Posts: 1626
Joined: Thu Dec 07, 2006 7:38 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: CANADA!

Post by EGG_GUTS »

11.Where do you put FXs and animes when you copy then from the assests folder?
Qdin
Old School Staff
Posts: 2059
Joined: Wed Feb 23, 2005 9:54 am
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set

Post by Qdin »

What about trying in similar folders as they were in the Assets...? :roll: if you found it in sides>rep>SFX under Assets, where do you honestly think you shold place them in your own project..? :wink:
EGG_GUTS
Master Bounty Hunter
Master Bounty Hunter
Posts: 1626
Joined: Thu Dec 07, 2006 7:38 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: CANADA!

Post by EGG_GUTS »

But I mean objects like animes with the rancor and the fire FX
Post Reply