0 of 0

File information

Last updated

Original upload

Created by

Boilingmetal

Uploaded by

wenxiao

Virus scan

Safe to use

About this mod

Mouse side key 1: Return to normal speed
Mouse side key 2: Switch the speed by 20% and 50%.

This is a lua mod of ue4ss, you need to install ue4ss3.0.1 first.

Requirements
Permissions and credits
Changelogs
How To Use:
Mouse side key 1: Return to normal speed
Mouse side key 2: Switch the speed by 20% and 50%.

Version:
1.2 - without super speed when slomo
1.3 - with super speed when slomo

NOTE:
This is a lua mod of ue4ss, you need to install ue4ss3.0.1 first.

ue4ss and mod install ( by @joewalabel ) :
----------
1- Download UE4SS (UE4SS_v3.0.1.zip) from here: https://github.com/UE4SS-RE/RE-UE4SS/releases/tag/v3.0.1

2- Extract all the content to your game folder:
Steam\steamapps\common\S.T.A.L.K.E.R. 2 Heart of Chornobyl\Stalker2\Binaries\Win64

3- Download this mod and extract to the Mods folder:
Steam\steamapps\common\S.T.A.L.K.E.R. 2 Heart of Chornobyl\Stalker2\Binaries\Win64\Mods\

4- Open the file mods.txt with any text editor:
Steam\steamapps\common\S.T.A.L.K.E.R. 2 Heart of Chornobyl\Stalker2\Binaries\Win64\Mods\mods.txt
Add below this line:
jsbLuaProfilerMod : 0
This text::
GameSpeedAdjust : 1
Save the file.

5- Open the game and load ur save. Use the mouse buttons. Enjoy!
----------

PS-1: There are two lua mod activation modes for us4ss. One is to define whether to activate and the loading order in the file ".. Mods\mods.txt". One is to put an "enabled.txt" file in the folder of lua mod, and ue4ss will follow the default order (alphabetical, I guess? ) to start it. You can choose the way you like.

PS-2: About shortcut key settings. In the last part of the main.lua file, you can find the definitions of these two methods:
----------
RegisterKeyBind(Key.XBUTTON_ONE, function()
    if speed == 0.5 then
        speed = 0.2 -- do not use 0.3! canbe 0.4 \ 0.1
        SetParam("Change Speed")
    else
        speed = 0.5
        SetParam("Change Speed")
    end
end)

RegisterKeyBind(Key.XBUTTON_TWO, function()
    speed = 1
    SetParam("reset Speed")
end)
----------

You can change “Key. ?”  to defines the shortcut keys you like. ( For the codes of keyboard keys, please refer to the codes in "... \ keybindings \Keybinds\Scripts\main.lua". Some function key codes, you can try to ask chatgpt to get the answer. )

Known issue & TODO:
1. When using the weapon quick switching ring, the time slowing effect will be cancelled, which will be fatal in the battle.(Try to fix it in 1.2 ) FIXED
2. At the second level of time slowing, you act like a bug in amber, which is unpleasant. FIXED WITH UGLY METHOD :P
3. This ability is currently cost-free, which disrupts the balance.
4. Add visual effects to bullet time. This allows you to identify whether you are using your ability.
5. Need a config file to change hot-key and super-speed behavior.