Quicksave Autohotkey Script

Talk about anything Legend of Grimrock 1 related here.
Post Reply
ArmoredCavalry
Posts: 2
Joined: Thu Apr 12, 2012 6:45 pm

Quicksave Autohotkey Script

Post by ArmoredCavalry »

I got sort of tired of clicking through the menus to save, so I made this quick script for anyone interested:

Code: Select all

#IfWinActive Legend of Grimrock
F5::
{
	send {Esc}
	send {Down}
	send {Enter}
	KeyWait, LButton, D
	KeyWait, LButton
	KeyWait, LButton, D
	KeyWait, LButton
	send {Enter}
}
return
Basically it lets you hit F5 (or any key you specify), and then pops open the list of saves. Once you click on the save you want and confirm you want to overwrite, it will hit enter again to keep the old description (e.g. 'quick'). If someone knows a key you can press to navigate the saves, or confirm an overwrite, I'd happily include those. As-is though, I didn't want to automate overwriting saves using screen-coordinate mouse-clicks. For now, this script (in theory) is perfectly safe, as it requires the user to specify the save slot and confirm any overwrites.
Post Reply