Posts from How to break the save system?
Auto-translated
_________________
Группа картостроителей
Там ответы на вопросы, руководства, гайды и прочее
Discord-сервер "Герои 5: S.T.A.L.K.E.R"
Сервер по модификации "Герои 5: S.T.A.L.K.E.R"
_________________
1 | r = os.clock() |

---------------------------------------------
Неудачное планирование ведёт к неудаче ...
NCF - мод, добавляющий дополнительных существ в HeroesV 3.1
If there's a way to do something properly, do it. Someone who's used to frequently pressing F5 won't appreciate this "good enough" approach. After the third or fourth save, they'll swear and delete the scenario.
You guys have no sense of humor...
...After this, files can only be saved using f5, and loading is impossible at all (it seems).
You can save by pressing Enter in the "save game" menu.
You can save by pressing Enter in the "save game" menu.
Thank you. It's good that Enter only allows you to save, but not load. I found another issue - the hotkey F8
Added 11 minutes later
And it works even in the first mod (where the crashes occur).
[UI\SaveLoad\SaveSpecific\Save.(WindowMSButton).xdb] remove the command
<Commands>
<Item href="/UI/SaveLoad/Save.(UISDirectRunReaction).xdb#xpointer(/UISDirectRunReaction)"/>
</Commands>and
<Commands/>similarly, remove the command for loading in [UI\SaveLoad\SaveSpecific\Load.(WindowMSButton).xdb].
And for double-clicking [UI/SaveLoad/LoadsList.(WindowScrollableContainer).xdb]
<Commands>
<Item href="LoadDblClick.(UISDirectRunReaction).xdb#xpointer(/UISDirectRunReaction)"/>
</Commands>As for [quickload 'F8'] and [quicksave 'F5'], nothing can be done about them—these commands are hardcoded into the exe. Of course, you could break them there too by using a HEX editor to change the values, for example to quicklo1d and quicksa1e. But that's not a great option.
К. Прутков-инженер. Мысль № 77.
Многие вещи нам непонятны не потому, что наши понятия слабы; но потому, что сии вещи не входят в круг наших понятий.
© Козьма Прутков
unbind COMMAND_NAME
or bind COMMAND_NAME "MOUSE_B5"
_________________
Группа картостроителей
Там ответы на вопросы, руководства, гайды и прочее
Discord-сервер "Герои 5: S.T.A.L.K.E.R"
Сервер по модификации "Герои 5: S.T.A.L.K.E.R"
_________________
To disable the save and load buttons
However, there's nothing you can do about [quickload 'F8'] and [quicksave 'F5'] – these commands are hardcoded into the executable. Of course, you could break it by changing the values in a hex editor, for example, to quicklo1d and quicksa1e. But that's not a great solution.
Added 1 minute ago
You could try using a script command to write to the console
unbind COMMAND_NAME
or bind COMMAND_NAME "MOUSE_B5"
PS. It worked using
unbind quicksave
unbind quickload