As I couldn't find a simple thread on how to fix this I decided to make one I can link in such cases:
The file that needs to be altered is the "game.prefs" file which usually can be found at "C:\Users\X\AppData\Local\Gas Powered Games\Supreme Commander Forged Alliance\game.prefs".
To re add the key for the cheat menu (F2) search for the entry "console_font_size" and add the following entry in the line below:
- Code: Select all
UserDebugKeyMap = {
['Alt-F2'] = 'debug_create_unit',
},
Actually you can also add the other debug keys I guess:
- Code: Select all
UserDebugKeyMap = {
['Ctrl-Alt-F5'] = 'debug_scenario_method_ctrl_alt_f5',
['Ctrl-Alt-B'] = 'debug_blingbling',
['Shift-F4'] = 'debug_scenario_method_shift_f4',
['Shift-F5'] = 'debug_scenario_method_shift_f5',
['Ctrl-Shift-F5'] = 'debug_scenario_method_f5',
['Ctrl-Slash'] = 'debug_pause_single_step',
['Alt-T'] = 'debug_teleport',
['Ctrl-Alt-Shift-F8'] = 'debug_campaign_instawin',
['Alt-F9'] = 'debug_open_lua_debugger',
['Ctrl-Alt-Z'] = 'debug_sally_shears',
['Alt-W'] = 'debug_dump_focus_ui_control',
['Ctrl-Shift-C'] = 'debug_copy_units',
['Ctrl-Alt-W'] = 'debug_render_wireframe',
['Ctrl-F3'] = 'debug_scenario_method_ctrl_f3',
['Ctrl-Shift-Alt-C'] = 'debug_collision',
['Alt-D'] = 'debug_dump_ui_controls',
['Alt-B'] = 'debug_bones',
['Ctrl-Alt-Period'] = 'debug_graphics_fidelity_2',
['Shift-F6'] = 'debug_create_entity',
['Ctrl-Alt-Comma'] = 'debug_graphics_fidelity_0',
['Ctrl-Shift-X'] = 'debug_redo_console_command',
['Ctrl-Alt-P'] = 'debug_navpath',
['Shift-F7'] = 'debug_show_stats',
['Ctrl-Alt-O'] = 'debug_grid',
['Alt-Delete'] = 'debug_destroy_units',
['Alt-F11'] = 'debug_show_frame_stats',
['Ctrl-Alt-F4'] = 'debug_scenario_method_ctrl_alt_f3',
['Alt-Q'] = 'debug_show_focus_ui_control',
['Ctrl-Shift-W'] = 'debug_weapons',
['Ctrl-Alt-E'] = 'debug_show_emmitter_window',
['Alt-V'] = 'debug_skeletons',
['Alt-N'] = 'debug_nodamage',
['Alt-F2'] = 'debug_create_unit',
['Shift-F8'] = 'debug_show_army_stats',
['Ctrl-F10'] = 'debug_restart_session',
['Ctrl-F5'] = 'debug_scenario_method_ctrl_f5',
['Shift-F3'] = 'debug_scenario_method_shift_f3',
['Ctrl-Shift-V'] = 'debug_paste_units',
['Alt-F3'] = 'debug_scenario_method_f3',
['Ctrl-Shift-F4'] = 'debug_scenario_method_f4',
['Ctrl-Shift-F1'] = 'debug_toggle_pannels',
['Ctrl-F4'] = 'debug_scenario_method_ctrl_f4',
['Alt-A'] = 'debug_run_opponent_AI',
F9 = 'debug_toggle_log_window'
},
To re add the key for altering key bindings in game (F1) search for "Lobby_NoRushOption" and in the line below add:
- Code: Select all
UserKeyMap = {
F1 = 'toggle_key_bindings',
},
That should do it.
Hope this helps...