A way to disable/modify hotkeys?

jkp1187

Unindicted Co-Conspirator
Joined
Aug 29, 2004
Messages
2,496
Location
Pittsburgh, Pennsylvania
Is there any way to modify which hotkeys perform a given command? (Or, preferably, disable a hotkey for a specific command altogether?)


I just finished accidentally hitting the "E" key, sending a stack of transports filled with tanks, marines, and infantry off "exploring" (ending up next to a couple of enemy destroyers), while the protecting battleships and destroyers remained behind. It seems like I am always bumping that darned "E" key at inopportune moments, forcing at least two to three reloads during the game. I've really had enough of it, but am not ready to commit to physically removing the "E" key from my keyboard just yet....

Thanks in advance.
 
In AutomateInfos.xml in the XML\Units folder.

Code:
		<AutomateInfo>
			<Description>TXT_KEY_ACTION_AUTOMATE_EXPLORE</Description>
			<Help>TXT_KEY_ACTION_AUTOMATE_EXPLORE_HELP</Help>
			<HotKey>KB_E</HotKey>
			<bAltDown>0</bAltDown>
			<bShiftDown>0</bShiftDown>
			<bCtrlDown>0</bCtrlDown>
			<iHotKeyPriority>0</iHotKeyPriority>
			<HotKeyAlt/>
			<bAltDownAlt>0</bAltDownAlt>
			<bShiftDownAlt>0</bShiftDownAlt>
			<bCtrlDownAlt>0</bCtrlDownAlt>
			<iHotKeyPriorityAlt>0</iHotKeyPriorityAlt>
			<Command>COMMAND_AUTOMATE</Command>
			<Automate>AUTOMATE_EXPLORE</Automate>
			<bVisible>1</bVisible>
			<Button>Art/Interface/Buttons/Actions/Explore.dds</Button>
		</AutomateInfo>
 
Top Bottom