Last active
October 22, 2022 15:26
-
-
Save IceBotYT/9b260502d1d74d614c7c53c3a50a1f5a to your computer and use it in GitHub Desktop.
A simple AHK script to clear a Scrap Mechanic world
This file contains hidden or 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
#Requires AutoHotkey v2.0-beta.12 | |
+z:: | |
{ | |
title := WinGetTitle("A") | |
if (title != "Scrap Mechanic") | |
{ | |
return | |
} | |
Send "{Enter}/allowclear{Enter}" | |
Sleep 50 | |
Send "{Enter}/clear{Enter}" | |
Sleep 60 | |
Click "1163, 820" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment