Skip to content

Instantly share code, notes, and snippets.

@geryit
Last active February 6, 2019 23:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geryit/4be2b521ee9baa65c8c2f2890a47856f to your computer and use it in GitHub Desktop.
Save geryit/4be2b521ee9baa65c8c2f2890a47856f to your computer and use it in GitHub Desktop.
Add this into `/Document/My Games/Age of Empires 3/Startup/user.con`
// Agra(wonder) hotkeys (sepoy with key "s" etc )
map("s", "WonderAccel", "tis(\"ypSepoy\", 5)")
map("d", "WonderAccel", "tis(\"ypNatMercGurkha\", 5)")
map("x", "WonderAccel", "tis(\"ypRajput\", 5)")
map("d", "BarracksAccel", "tis(\"ypNatMercGurkha\", 5)")
// Flair shortcut (ctrl + space)
map ("control-space", "game", "editMode(\"flare\")")
//Delete all wall connectors (ctrl+t)
map ("control-t", "game", "uiFindAllOfType(\"WallConnector\")uiDeleteAllSelectedUnits")
//Gate (g)
map ("g", "game", "uiTransformSelectedUnit(\"CWallGate\")")
// Stealth
map ("s", "game", "unitSetTactic(\"Stealth\")")
// Delete unit without confirm
map ("delete", "game", "uiDeleteAllSelectedUnits")
// Set military gather points from tc and agra
map ("n", "TownCenterAccel", "editMode(\"GatherPointMilitary\") uiSetProtoCursor(\"WaypointFlag\", false)")
map ("n", "WonderAccel", "editMode(\"GatherPointMilitary\") uiSetProtoCursor(\"WaypointFlag\", false)")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment