0 of 0

File information

Last updated

Original upload

Created by

MerseyRockoff

Uploaded by

MerseyRockoff

Virus scan

Safe to use

20 comments

  1. glores
    glores
    • member
    • 0 kudos
    Requires holding the button, it is possible to just click + and speedup?
    1. AlexAlepr
      AlexAlepr
      • member
      • 0 kudos
      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;
                  }
              }
          }
          
          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;
                  }
              }
          }
    2. onestrongbow
      onestrongbow
      • supporter
      • 1 kudos
      thanks , works great
    3. nieda113
      nieda113
      • supporter
      • 5 kudos
      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...
  2. killstreak
    killstreak
    • member
    • 3 kudos
    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
  3. onestrongbow
    onestrongbow
    • supporter
    • 1 kudos
    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 ?
  4. InMyBestInterest
    InMyBestInterest
    • premium
    • 8 kudos
    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.
  5. ElementaryLewis
    ElementaryLewis
    • premium
    • 663 kudos
    Hello.

    This mod need to update for the version 4.01.
    Here the changelog Scripts 4.00(Hotfix2) vs 4.01 for help.
  6. 1355080076cira
    1355080076cira
    • member
    • 0 kudos
    don't work in 4.01  please update
  7. k205
    k205
    • member
    • 0 kudos
    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.)
  8. JeboteIsusbog
    JeboteIsusbog
    • supporter
    • 0 kudos
    Perhaps a dumb question since I know nothing about modding, but, can I somehow toggle the "NumPad+" and "NumPad-" keys?
    Thanks!
    1. MerseyRockoff
      MerseyRockoff
      • premium
      • 420 kudos
      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.
  9. wlyang
    wlyang
    • member
    • 0 kudos
    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
    1. MerseyRockoff
      MerseyRockoff
      • premium
      • 420 kudos
      You need to copy different keys in your input.settings file. I have provided the list of possible keys in a .txt file that came with the download.
  10. Kalel9
    Kalel9
    • member
    • 30 kudos
    Should we add keybind also for [SCENE_IS_STARTING_HACK] n [Scene] ?
    1. MerseyRockoff
      MerseyRockoff
      • premium
      • 420 kudos
      I haven't tested in scenes, you can try it out and let me know if it works.
    2. Kalel9
      Kalel9
      • member
      • 30 kudos
      Except audio speed works.
      Also works for Friendly meditation. Slows down time speed of the meditation but seems working.