Yes. I did it. On 24 string added: private var speedTimeChanged : bool; default speedTimeChanged = false; And below between author's comments "//---===modSpeedUpOrSlowDownTime===---//" changed code this way: event OnSpeedup(action : SInputAction) { if (IsPressed(action)) { if (speedTimeChanged==false){ theGame.SetTimeScale(4, theGame.GetTimescaleSource(ETS_DebugInput), theGame.GetTimescalePriority(ETS_DebugInput)); speedTimeChanged=true; } else { theGame.RemoveTimeScale(theGame.GetTimescaleSource(ETS_DebugInput)); speedTimeChanged=false; } } }
Hi the mod works so far but how to: incerase slow time? and secondly whats the exact path of your fix,, i cant find that private var speedTimeChanged : bool line in the mods settings xml. THx 4 rpl. Update: Scrapped that mod , was working once next load it wouldnt work anymore...
can someone pls give me a very detailed installation instructions for this mod pls. I have the speed mod for cyberpunk and that was so easy to install. cheers in advance
any way to apply the slow to sound also ? i saw that critical slowmo does it , was wondering if it's possible with this mod too , maybe by adding some lines of code ?
This mod is just what I was looking for to use in some of the more challenging horse races to slow down the action to make some of the tight turns. Would it be possible to make a version that does not require holding the key down for it to work? I would like to use the key as a toggle as in press a key once, release it and it is on and press the same key again and it is off? Thanks for the mod.
thanks for the mod! When I use the mod, both Geralt and the world view become faster. I hope for a version that makes only Geralt and Siri faster.. (It was written as a translator.)
Yes, before copying the provided lines into your input.settings file, you can change the IK_NumPlus and IK_NumMinus keys to something else. I even provided keys.txt file with the download, so you'd know all the possible options.
thanks for the mod! may I ask which keys I need to edit if I don't want to use "NumPad-" but by pressing down the right stick of the xbox controller because I'm trying to slow down time during battle to take some nice photos,but "NumPad-" can not be reached in time
20 comments
private var speedTimeChanged : bool; default speedTimeChanged = false;
And below between author's comments "//---===modSpeedUpOrSlowDownTime===---//" changed code this way:
event OnSpeedup(action : SInputAction)
{
if (IsPressed(action))
{
if (speedTimeChanged==false){
theGame.SetTimeScale(4, theGame.GetTimescaleSource(ETS_DebugInput), theGame.GetTimescalePriority(ETS_DebugInput));
speedTimeChanged=true;
}
else {
theGame.RemoveTimeScale(theGame.GetTimescaleSource(ETS_DebugInput));
speedTimeChanged=false;
}
}
}
event OnSlowdown(action : SInputAction)
{
if (IsPressed(action))
{
if (speedTimeChanged==false){
theGame.SetTimeScale(0.25, theGame.GetTimescaleSource(ETS_DebugInput), theGame.GetTimescalePriority(ETS_DebugInput));
speedTimeChanged=true;
}
else {
theGame.RemoveTimeScale(theGame.GetTimescaleSource(ETS_DebugInput));
speedTimeChanged=false;
}
}
}
incerase slow time? and secondly whats the exact path of your fix,, i cant find that private var speedTimeChanged : bool line in the mods settings xml.
THx 4 rpl.
Update:
Scrapped that mod , was working once next load it wouldnt work anymore...
This mod need to update for the version 4.01.
Here the changelog Scripts 4.00(Hotfix2) vs 4.01 for help.
When I use the mod, both Geralt and the world view become faster.
I hope for a version that makes only Geralt and Siri faster..
(It was written as a translator.)
Thanks!
may I ask which keys I need to edit if I don't want to use "NumPad-" but by pressing down the right stick of the xbox controller
because I'm trying to slow down time during battle to take some nice photos,but "NumPad-" can not be reached in time
Also works for Friendly meditation. Slows down time speed of the meditation but seems working.