Insaniquarium Deluxe Guide

How to avoid carpal tunnel syndrome (AutoHotKey Auto-clicker script) for Insaniquarium! Deluxe

How to avoid carpal tunnel syndrome (AutoHotKey Auto-clicker script)

Overview

By running a small configurable script you can change your repetitive strain injury into a single long left-click!

Introduction

Completing the adventure mode for Insaniquarium can and will result in some extreme arm strain towards the end due to the excessive clicking that the game will demand of you.
You may reach a point where there are so many items on screen that you would need a vacuum cleaner rather than a mouse cursor to actually pick up any of them, a similar thing can be said for the later alien encounters which with their super inflated health would probably be better treated with the ghostbusters laser than with the puny single shot ray-gun that you have to hand, fortunately there’s a solution for players who are determined to push back the alien menace!

With this guide, you could be comfortably managing tanks of this intensity and beyond!

The Software (AutoHotKey)

What is AHK?

AutoHotKey is a program for Windows (Not currently officially supported on Mac or Linux, unfortunately) that allows users to write and run scripts for automating basic to advanced user actions by using the program’s own simple scripting language, these scripts can be written and modified by the user with any text editor like Windows’ own Notepad

Why AHK?

While there are a number of tools online that can be downloaded which provide you with the needed functionality, I have elected to use this software as it is safe and secure, and scripts written in it can be very easily modified to meet your needs.

Where do I get it?

At the time of my writing (26/07/2020) the program can be downloaded from its official website which can be found at this link[www.autohotkey.com]
The program is free and most of the information that you would need to know about it can be found either on the website or by browsing Reddit or the AutoHotKey forums

The Script and how to use it

When looking for a good auto-clicking script I was sure to remember a golden rule of all programming: Don’t bother trying to re-invent the wheel.

The internet is a big place, and in most cases if you need to do something, someone else has already asked about it online, and some other helpful person was able to answer them. This case was no exception to the rule, and I was able to find a

Auto Clicker (AHK) from incremental_games

in which some users laid out their favourite auto clicking scripts for AHK

Full credit to Reddit user /u/Ravioles for the following little script

The actual code:
~$*LButton:: While (GetKeyState(“Lbutton”, “P”) and GetKeyState(“F8”, “T”)){ Click Sleep 50 } return
What it does:

While this script is running, it will wait until it receives an input of Lbutton, which is your left click. At the same time the program will await an input of the F8 key as a toggle of “on” or “off” for the autoclick. If F8 has been pressed to turn the script on, pressing left click will cause the program to send a “click” signal every 50 milliseconds.

The beauty of this is that you can change it if you like, feel free to edit the mention of “F8” to some other key, modify the number after “Sleep” to control the interval at which the script attempts to send a click, etc.

Yeah but how do I turn these words into actions

Assuming that you have installed AutoHotKey from the site (see above section):
Simply highlight and copy the code above, open up a text editor (Notepad works fine!) and paste the code in.
Now go to “file” > “save as”
When given the option to save the file, change the file type to “All files”, select a save location, and then give the file a name, adding .ahk to the end of it.
click Save

Once you have saved this file it should appear in the location you selected, if you have AHK installed you will immediately notice that the file now has an icon to indicate that it is a valid script
Simply double click this file to run it, if there are no errors then you have probably done it right!
To end the script you just need to go to the system tray in the lower right corner of your screen, right click on the AHK icon, and close it.

The End

If all has gone well then you should be able to simply hold down left click when you next play Insaniquarium and you will begin to drop food, pick up treasures, and shoot your gun at rapid speed!
Feel free to mess around with the script to your liking, but be warned that there is capacity to mess things up, so if you really aren’t sure then it may be best not to change too much.
You can also look online for either other scripts people have made or for instructions on how you can write your own, feel free to share in the comments if you figure yourself to be a bit of a scripting wizard!

Thank you for reading my guide, hopefully this will save you from some potential arm pains, this kind of muscular strain is something to take seriously, people have needed surgery to correct it in some serious cases, so keep your arms healthy if you want to keep gaming into your elderly years.

SteamSolo.com