If you're like me when you discovered to loot or do dialogue options you had to press ENTER instead of E you nearly lost your mind trying to figure out how to change that. In lieu of finding another way I created an AutoHotkey script so when I press E it'll also send ENTER so E can be used for both.
I realize there's a mod now that can do that but it does a lot of other stuff too and some people may not want that so until there is one that just does it maybe this can help people like me that just want this.
Required Files
• Autohotkey (any version)
Installation
• Download and install AutoHotkey.
• Extract the e enter.ahk file anywhere. I'd probably avoid putting it in your program files or system files but just about anywhere else should be fine.
Use
• Open the e enter.ahk file (open it like you would a program, double click it).
• The script only functions in Oblivion Remastered and you can use \ to toggle it on or off in case you need to type console commands or something.
• When you press e now it'll send both e and enter. It'll also hold down enter and e at the same time, in case there's scenarios where that's needed, and release them at the same time.
Uninstallation
• You can close the script which will be in your tray (like down by your clock at the bottom right) just right click the green H icon and Exit.
• Delete e enter.ahk
Considerations
I'm pretty sure for some reason by default E closes loot windows... I've taken to just clicking individual stuff with my mouse to loot it. But if you want a key for it instead of enter you could edit the script and after the final return on line 19 add, like...
*q::
SendInput, {q down}{Enter down}
return
*q up::
SendInput, {q up}{Enter up}
return
Or whatever you want the key to be.