Last active
July 2, 2022 21:26
-
-
Save KellanClark/710d83bd371e1906030f070977f3cc94 to your computer and use it in GitHub Desktop.
Mario Counting AHK Macro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; This script helps for counting in binary using Mario emojis on the Emudev Discord server. | |
; All you have to do is type 1s and 0s then the script will convert them for you as you type. | |
#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. | |
0:: | |
Send, :luigideathstare:{Space} | |
return | |
1:: | |
Send, :thelook:{Space} | |
return | |
F9::Pause | |
F10::Reload |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment