The Witcher 3

File information

Last updated

Original upload

Created by

10010001

Uploaded by

10010001

Virus scan

Safe to use

Tags for this mod

About this mod

Customizable sprinting, swimming and diving speed

Permissions and credits
Donations
This mod makes it possible to alter the sprinting, swimming, and diving speed.


Since I found combat too easy with this mod enabled, I added an option to disable it while in combat (modSpeedInCombat).

You can customize this to your preference by editing modSprintingSpeed\content\scripts\game\player\player.ws line 38:

private var sprintingSpeed: float;default sprintingSpeed = 1.6;
private var swimmingSpeed: float;default swimmingSpeed = 1.6;
private var divingSpeed: float;default divingSpeed = 1.8;
private var runningSpeed: float;default runningSpeed = 1.2;
private var modSpeedInCombat: bool;default modSpeedInCombat = false;
Or use the console command SetSprintingSpeed(speed : float)

Install the optional gamepad file if you want the speed change to depend on how much you tilt your analog stick.


Warning:
This mod provides its own player.ws (and r4Player.ws if you installed the optional gamepad file). If you have any other mods installed that also use these files you will have to manually edit them.

There may be conflicts with mods that use SetAnimationTimeMultiplier.


Changes in 1.3:
  • Added option to disable mod while in combat
  • Replaced SetAnimationTimeMultiplier with SetAnimationSpeedMultiplier and added CauserIds. This should resolve any conflicts with any effects that change the animation speed, like slowdown effects et cetera...

Changes in 1.2:
  • Fixed script annotations

Changes in 1.11:
  • Added adjustable Running Speed

Changes in 1.11:

  • Fixed script annotations.


Changes in 1.1:

  • Seperate values for sprinting, swimming, and diving speed
  • Annotated all the changes i made in player.ws
  • Optional gamepad file. Speed depends on how much you tilt the analog stick. I made this optional because i had to make changes to r4Player.ws for this
  • Added SetDivingSpeed and SetSwimmingSpeed functions