The Witcher 3

File information

Last updated

Original upload

Created by

Keelhauled

Uploaded by

modcollector245

Virus scan

Safe to use

Tags for this mod

About this mod

Changes the walk toggle to function as hold to walk.

Permissions and credits
Donations
DESCRIPTION
Changes the walk toggle to function as hold to walk.

INSTALLATION
Unpack the file to "YOURWITCHER3FOLDER\mods".

CODE
event OnCommWalkToggle( action : SInputAction )
{
    if( IsReleased(action) )
    {
        thePlayer.SetWalkToggle( false );
    }
    else if( IsPressed(action) && !thePlayer.GetIsSprinting() && !thePlayer.modifyPlayerSpeed )
    {
        thePlayer.SetWalkToggle( true );
    }
}