Skip to content

Instantly share code, notes, and snippets.

@Ytrog
Last active March 27, 2019 15:27
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 Ytrog/c543cf35bed194f8e4b96b3228128dfb to your computer and use it in GitHub Desktop.
Save Ytrog/c543cf35bed194f8e4b96b3228128dfb to your computer and use it in GitHub Desktop.
DND AutoHotKey script
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; ctrl+o
^o::
Send, (())
Send, {Left}{Left}
Return
; ctrl+d
^d::
SendRaw, !r1d20
Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment