The return to the post-apocalyptic world of Chernobyl. Players can finally wander through a large open seamless world, containing iconic elements of... Read more
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:
Installation of ue4ss and mod:
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.
Клавиши управления:
Установка ue4ss и мода:
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: