Skip to content

Instantly share code, notes, and snippets.

@IceBotYT
Last active October 22, 2022 15:26
Show Gist options
  • Save IceBotYT/9b260502d1d74d614c7c53c3a50a1f5a to your computer and use it in GitHub Desktop.
Save IceBotYT/9b260502d1d74d614c7c53c3a50a1f5a to your computer and use it in GitHub Desktop.
A simple AHK script to clear a Scrap Mechanic world
#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