Author Topic: Playertype Speed.  (Read 644 times)

What do I enter for playertype speed? My playertype is slippery and I do not know why.
Code: [Select]
runForce = 14 * 16;What does that mean and what does it do?

Your runforce is 224, try changing it to 12 ^ 14, and tell us the results.

That makes it VERY slow. I want it to be around the same speed as the default player.

Runforce isn't the maximum speed, but rather the acceleration.
maxForwardSpeed, maxBackwardSpeed, and maxSideSpeed are what you're looking for.
Put runforce really high to instantly move at these max speeds.

Code: [Select]
runForce = PlayerStandardArmor.runForce;

Runforce isn't the maximum speed, but rather the acceleration.
maxForwardSpeed, maxBackwardSpeed, and maxSideSpeed are what you're looking for.
Put runforce really high to instantly move at these max speeds.
Thanks.
Code: [Select]
runForce = PlayerStandardArmor.runForce;
Thanks.