-- Maps specific key combinations to console commands -- Key combos should be seperated by -'s -- See keyNames.lua for key names! Key names for modifiers are as follows and must be followed by a dash ('-') -- Shift = 0x10 -- Ctrl = 0x11 -- Alt = 0x12 keyDescriptions = { ['escape'] = 'Brings up Game Menu', ['ssmode'] = 'Toggles Screen Shot mode', ['pause'] = 'Toggles Game Pause', ['cap_frame'] = 'Take a screen shot', ['group1'] = 'Recall Group 1', ['group2'] = 'Recall Group 2', ['group3'] = 'Recall Group 3', ['group4'] = 'Recall Group 4', ['group5'] = 'Recall Group 5', ['group6'] = 'Recall Group 6', ['group7'] = 'Recall Group 7', ['group8'] = 'Recall Group 8', ['group9'] = 'Recall Group 9', ['group0'] = 'Recall Group 10', ['toggle_lifebars'] = 'Toggle life bars', ['set_group1'] = 'Set Group 1', ['set_group2'] = 'Set Group 2', ['set_group3'] = 'Set Group 3', ['set_group4'] = 'Set Group 4', ['set_group5'] = 'Set Group 5', ['set_group6'] = 'Set Group 6', ['set_group7'] = 'Set Group 7', ['set_group8'] = 'Set Group 8', ['set_group9'] = 'Set Group 9', ['set_group0'] = 'Set Group 10', ['next_cam_position'] = 'Go to the next saved Camera Position', ['add_cam_position'] = 'Save a Camera Position', ['rem_cam_position'] = 'Delete current Camera Position', ['zoom_in'] = 'Zoom your View in', ['zoom_out'] = 'Zoom your View out', ['zoom_in_fast'] = 'Zoom your View in fast', ['zoom_out_fast'] = 'Zoom your View out fast', ['tog_military'] = 'Toggle Military Overlay', ['tog_defense'] = 'Toggle Defense Overlay', ['tog_econ'] = 'Toggle Economy Overlay', ['tog_intel'] = 'Toggle Intel Overlay', ['repair'] = 'Repair', ['reclaim'] = 'Reclaim', ['track_unit'] = 'Track a unit in the Primary view', ['track_unit_minimap'] = 'Track a unit in the Strategic view', ['track_unit_second_mon'] = 'Track a unit on the Second Monitor', # ['redo_selection'] = 'Redo Selection', # ['invert_selection'] = 'Invert Selection', ['patrol'] = 'Patrol', ['attack'] = 'Attack', ['capture'] = 'Capture', ['select_air'] = 'Select all Air units', ['stop'] = 'Stop and cancel all Orders', ['select_naval'] = 'Select all Naval units', ['dive'] = 'Dive', ['cap_frames'] = 'Capture Frames', ['ferry'] = 'Ferry', ['guard'] = 'Guard', ['transport'] = 'Transport', ['launch_tactical'] = 'Launch a Tactical Missile', ['overcharge'] = 'Overcharge', ['pause_unit'] = 'Pause', ['suicide'] = 'Self-Destruct', ['select_land'] = 'Select all Land units', ['select_all_units_of_same_type'] = 'Select all units similar to those selected', ['reset_camera'] = 'Reset the Camera', # ['build'] = 'Silo Build mode', ['select_engineers'] = 'Select all Engineers', ['nuke'] = 'Nuke', ['rename'] = 'Rename the selected unit', ['move'] = 'Move', ['goto_engineer'] = 'Go to the nearest idle Engineer', ['select_idle_engineer'] = 'Select the nearest idle Engineeer', ['cycle_engineers'] = 'Cycle through all Engineers', ['goto_commander'] = 'Go to your ACU', ['select_commander'] = 'Select your ACU', ['select_all'] = 'Select all units', ['select_all_onscreen'] = 'Select all units on the screen', ['select_all_eng_onscreen'] = 'Select all Engineers on the screen', ['select_all_factory_onscreen'] = 'Select all Factories on the screen', ['select_nearest_factory'] = 'Select the nearest Factory', ['select_nearest_land_factory'] = 'Select the nearest Land Factory', ['select_nearest_air_factory'] = 'Select the nearest Air Factory', ['select_nearest_naval_factory'] = 'Select the nearest Naval Factory', ['decrease_game_speed'] = 'Decrease game speed', ['increase_game_speed'] = 'Increase game speed', ['reset_game_speed'] = 'Reset game speed to 0 (Normal Speed)', ['focus_window_primary'] = 'Set focus to the Primary Monitor', ['focus_window_secondary'] = 'Set focus to the Secondary Monitor', ['split_screen_enable'] = 'Enable split screen', ['split_screen_disable'] = 'Disable split screen', ['pause_single_step'] = 'While paused, step forward one tick', ['chat_page_up'] = 'Chat page up', ['chat_page_down'] = 'Chat page down', ['chat_line_up'] = 'Chat line up', ['chat_line_down'] = 'Chat line down', ['switch_skin_up'] = 'Rotate skins up', ['switch_skin_down'] = 'Rotate skins down', ['switch_layout_up'] = 'Rotate layouts up', ['switch_layout_down'] = 'Rotate layouts down', ['toggle_score_screen'] = 'Toggles the Score Overlay', ['toggle_objective_screen'] = 'Toggles the Objective Window', ['toggle_transmission_screen'] = 'Toggles the Transmission Window', ['toggle_diplomacy_screen'] = 'Toggles the Diplomacy Window', ['toggle_disconnect_screen'] = 'Toggles the Connectivity Screen', ['toggle_key_bindings'] = 'Toggles the Key Bindings Screen', }