Page 1 of 1

Slow walking [Solved]

Posted: Sun Apr 05, 2015 5:39 pm
by DrDrSheldonLeeCooper
Hello I want that my Super Battledroid is walking a bit slower but how?
And how can I make that they are not jumping so high?
thx!

Re: Slow walking

Posted: Sun Apr 05, 2015 5:41 pm
by razac920
Take a look at com_inf_default.odf
Hidden/Spoiler:
// Movement defaults
// These are values for an average class - some soldiers will override these
MaxSpeed = 7.0 // base forward speed
MaxStrafeSpeed = 5.25 // base right/left speed
MaxTurnSpeed = 5.0 // base turn speed
JumpHeight = 1.78 // base jump height in meters
Just override these values with new ones in your custom unit .odf file.

Re: Slow walking

Posted: Sun Apr 05, 2015 5:59 pm
by DrDrSheldonLeeCooper
thank you :)

Re: Slow walking [solved]

Posted: Mon Apr 06, 2015 12:20 am
by AnthonyBF2
You can also paste those same parameters and values in the actual character odf file.
If a character has it's own values, it will ignore the class parent file com_inf_default.

Re: Slow walking [solved]

Posted: Mon Apr 06, 2015 12:35 am
by razac920
Also, these changes are simple enough to do with scripting:
SetClassProperty("cis_inf_rifleman","JumpHeight",0.89) will cut the SBD jump height in half, and
SetClassProperty("cis_inf_rifleman","MaxSpeed",6.0) SetClassProperty("cis_inf_rifleman","MaxStrafeSpeed",4.5) will make the SBD move as slow as a rocketeer.

Re: Slow walking [solved]

Posted: Mon Apr 06, 2015 3:47 am
by DrDrSheldonLeeCooper
Thanks guys I got it already :D