Page 1 of 1

Turret not falling [Solved]

Posted: Sun Aug 26, 2012 2:56 pm
by Cleb
Ok, so I made a turret dispenser for a unit, and it works just fine except the turret just floats in midair when it gets dropped and doesn't fall to the ground.

the dispenser odf (if that helps) :
Hidden/Spoiler:
[WeaponClass]
ClassParent = "com_weap_inf_autoturret_dispenser"

[Properties]
HUDTag = "com_weap_inf_dropturret"
OrdnanceName = "tur_bldg_built_chaingun"

//**********************************************
//****************** SOUND *********************
//**********************************************


FireLoopSound = ""
ReloadSound = "com_weap_inf_equip_med"
ChargeSound = ""
ChargeSoundPitch = ""
ChangeModeSound = "com_weap_inf_equip_med"
WeaponChangeSound = "com_weap_inf_equip_med"
JumpSound = "com_weap_inf_rifle_mvt_jump"
LandSound = "com_weap_inf_rifle_mvt_land"
RollSound = "com_weap_inf_rifle_mvt_roll"
//ProneSound = "com_weap_inf_rifle_mvt_lie"
SquatSound = "com_weap_inf_rifle_mvt_squat"
//StandSound = "com_weap_inf_rifle_mvt_getup"
tur_bldg_built_chaingun has not been modified in any way, it's stock.
What do I need to do to make it fall?

Re: Turret not falling

Posted: Sun Aug 26, 2012 3:02 pm
by Bob
Make sure your com_bldg_built_chaingun has

Code: Select all

ClassLabel              = "portableturret"

Re: Turret not falling

Posted: Sun Aug 26, 2012 3:48 pm
by Cleb
Ok it worked when I added that line to tur_bldg_built_chaingun, com_building_built_chaingun doesn't exist :wink:
One more thing, how can I make it so that there is more than one deployable turret/mines at a time? (like 10 mines instead of 3)

Re: Turret not falling

Posted: Sun Aug 26, 2012 4:43 pm
by Dreadnot9
For mines I believe there's a "MaxItems" odf line that should allow for more than 3.

Re: Turret not falling

Posted: Sun Aug 26, 2012 4:49 pm
by Cleb
Yep, there is, thanks.