SilentNightSound / GI-Model-Importer

Tools and instructions for importing custom models into a certain anime game
https://discord.gg/agmg
GNU General Public License v3.0
2.6k stars 362 forks source link

Removal of & Disabling GIMI Menu on Game Start + Function Key Shortcuts #192

Closed buffalodragon closed 8 months ago

buffalodragon commented 9 months ago

Hello SilentNightSound, and others,

How can I modify the files to completely remove this menu from ever popping up at all: image

Additionally, how can I disable the various function shortcuts that come with the modloader? For instance, I do not need F1 to see the shortcuts available, and I don't need any of the Numpad shortcuts or other shortcuts available, outside of F6 & F10.

Thank you, Buffalo

buffalodragon commented 9 months ago

Additionally, I am using the "for-playing-mods" version of GIMI, and the F1 key especially annoys me, since it's also the shortcut to access a function within the game.

Modder4869 commented 9 months ago

help.ini

buffalodragon commented 8 months ago

help.ini

Thank you for this. I was able to get part of my solution done--I have successfully disabled the short help prompt and disable the F1 shortcut key.

But cannot find anything else in it or other corresponding files (that stood out) to disable the numpad keys that modifies the various shaders, or the two F-keys that deal with frme dumping or performance monitor (F8 and Ctrl+F9 respectively).

Thank you.

buffalodragon commented 8 months ago

Ignore previous. I have found it.

For all looking for it as well, open the mentioned files in Notepad.txt, or your choice of text editor.

The ...\3dmigoto\ShaderFixes\help.ini file can have the following commented out:

Disable F1 menu, line 3:

;key = no_modifiers F1

Disable startup help menu overlay, line 14 and line 22. Disabling both may not be required:

;pre ResourceHelpShort = null
;ResourceHelp = ref ResourceHelpShort

To disable the other hotkeys, you will need to open ...\3dmigoto\d3dx.ini and find your desired keys there. For instance, I have disabled Green Text Mode (Numpad 0), Frame Dumps (F8), toggle mods (held) (F9), and performance monitor (Ctrl+F9). Use the "Find" option (Ctrl+F), and search directly for the hotkey. As an example, to disable the Green Text Mode, I looked for "NUMPAD0," and commented line 269 out:

;next_marking_mode = no_modifiers VK_DECIMAL VK_NUMPAD0

Enjoy!