S.T.A.L.K.E.R. 2: Heart of Chornobyl
The return to the post-apocalyptic world of Chernobyl. Players can finally roam through a large open seamless world containing iconic elements from the original... Read more
Time dilation
-
zamedlenie-vremeni_1733127818_699632.zipDownload 6.93 kBArchive password: vgtimes
This mod allows you to slow down time around the player. This is a ue4ss lua mod, first you need to install ue4ss3.0.1.
Control keys:
- side mouse button 1: return to normal speed;
- side mouse button 2: change speed by 20% and 50%.
Installation of ue4ss and mod:
- Download UE4SS;
- Extract all contents to the game folder:
- Steam\steamapps\common\S.T.A.L.K.E.R. 2 Heart of Chornobyl\Stalker2\Binaries\Win64;
- Download this mod and extract it to the Mods folder:
- Steam\steamapps\common\S.T.A.L.K.E.R. 2 Heart of Chornobyl\Stalker2\Binaries\Win64\Mods\;
- Open the mods.txt file using 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.
PS-1: There are two modes for activating lua mods for us4ss. One of them is defining the activation and loading order in the Mods\mods.txt file. Another is to create an enabled.txt file in the mod's lua folder and ue4ss will follow the default order to run it. You can choose any of these methods.
PS-2: About hotkey 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 -- don't use 0.3! 0.4 \ 0.1 is fine!
SetParam("Change Speed")
else
speed = 0.5
SetParam("Change Speed")
end
end)
RegisterKeyBind(Key.XBUTTON_TWO , function()
speed = 1
SetParam("reset Speed")
end)
Key can be changed. ? to determine the hotkeys you are comfortable with (for keyboard key codes, refer to the codes in \keybindings\Keybinds\Scripts\main.lua. For some function keys, you can try asking ChatGPT to get an answer.
Этот мод позволяет замедлять время вокруг игрока. Это lua-мод ue4ss, сначала вам нужно установить ue4ss3.0.1.
Клавиши управления:
- боковая клавиша мыши 1: возврат к нормальной скорости;
- боковая клавиша мыши 2: изменение скорости на 20% и 50%.
Установка ue4ss и мода:
- Скачать UE4SS;
- Извлечь все содержимое в папку с игрой:
- Steam\steamapps\common\S.T.A.L.K.E.R. 2 Heart of Chornobyl\Stalker2\Binaries\Win64;
- Скачать этот мод и извлечь в папку Mods:
- Steam\steamapps\common\S.T.A.L.K.E.R. 2 Heart of Chornobyl\Stalker2\Binaries\Win64\Mods\;
- Открыть файл mods.txt с помощью любого текстового редактора:
- Steam\steamapps\common\S.T.A.L.K.E.R. 2 Heart of Chornobyl\Stalker2\Binaries\Win64\Mods\mods.txt
- Добавить ниже этой строки:
jsbLuaProfilerMod : 0
Этот текст:
GameSpeedAdjust : 1
Сохраните файл.
PS-1: Существует два режима активации lua модов для us4ss. Один из них — это определение активации и порядка загрузки в файле Mods\mods.txt. Другой — это создание файла enabled.txt в папке lua мода, и ue4ss будет следовать порядку по умолчанию для его запуска. Можно выбрать любой из этих способов.
PS-2: О настройках горячих клавиш. В последней части файла main.lua можно найти определения этих двух методов:
RegisterKeyBind(Key.XBUTTON_ONE, function()
if speed == 0.5 then
speed = 0.2 -- не используйте 0.3! можно 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)
Можно изменить Key. ? для определения удобных вам горячих клавиш (для кодов клавиш клавиатуры, обратитесь к кодам в \ keybindings\Keybinds\Scripts\main.lua. Для некоторых функциональных клавиш можно попробовать спросить у ChatGPT, чтобы получить ответ.
Useful links: