Equilinox

Equilinox

Not enough ratings
How to toggle time acceleration
By Aon
How to quickly and quite easily get lots of DP while not having to hold the mouse button down.
   
Award
Favorite
Favorited
Unfavorite
Intro
So in this guide I'll be showing you how to easily get lots of dp. It's kind of annoying to have to hold down the mouse button on a specific spot the whole time. The developer (ThinMatrix) intended it to be this way... but you and me cheaty sneakers don't play by the rules ;D. All you'll need is to install AutoHotkey (AHK) it's a program that lets you run macros to help speed things up.
AutoHotkey Installation
So don't worry, this program is trusted and is used by many, many people. First you'll want to head to the main website:


Now go to download, click on the installer at the top, and wait. The installation process should be rather straight forward.
Setting up the macro
Now, once you've installed it, go to your desktop. You'll see that if you right click on your desktop, New > AutoHotkey script.



It doesn't really matter what you name it. Now right click on that, and then click "Edit Script".



Now you'll see a bunch of text in a notepad, we don't really need that, just go ahead and delete that. Now all you need to do is insert the following into the notepad:

alt::
alt := not alt
if (alt)
{
Click down
}
else
{
Click up
}
Return

(You'll have to move your mouse onto the button and then press ALT, I would've made it move there automatically but different resolutions are an issue)



This just means that it'll hold in the mouse button and move your mouse to the position of the fast forward button. (If you want it to be space change "alt::" to "space::" at the start, space is not recommended) All you need to do now is SAVE IT, and double click it and it'll run! Now you just need to open the game and press LEFT ALT and there you go! Once you're finished just press the button again to toggle it off. :)

Hope this helped you guys out, please tell me if I did anything wrong or if I could improve in any way.
10 Comments
GremlinMo 3 Feb, 2024 @ 11:16pm 
oh thx for this guide btw, life saver
GremlinMo 3 Feb, 2024 @ 11:14pm 
why couldn't the developer really support this game more and add a better feature instead of needing to do all this, i'd love to support the developer if they gave more to this game like possibly add on i.e disasters , weather manipulator add on ect and buy them, hell i'd possibly buy a number two of this game
KhisanthMagus 28 Dec, 2023 @ 3:03pm 
I remember the old set a battery on a keyboard key I used in the 1990s lol

Now I have OP Auto Clicker. Far simpler than this guide with no drop down menus or script writing needed and everything on one screen. Once installed open the app, place mouse where you want, and hit F6(changeable using hotkeys button). It will spam clicks where ever the mouse is. Press F6 to stop again. To avoid stray movement and keep the pointer clicking the same spot you can select "pick location", click where you want it to repeat at, make sure to click the circle next to pick location instead of current location, and hit F6 (or whatever you changed it to). There is also a frequency setting and it's often good to increase the milliseconds some or it clicks so rapidly it can lag games. There are other options including recording multiple actions but not necessary for this and if all you want is to click rapidly it is basically ready to go with a button press from the moment you install it.
Chunk 25 May, 2023 @ 10:17am 
Add a comment

Turnipseed May 7, 2022 @ 6:10pm
@elephant I just put stuff on my mouse

gunge Sep 26, 2020 @ 4:01pm
or you could uhhhh put a rock on your mouse

koobdie Apr 17, 2019 @ 8:02pm
Likebeingawesome that really helped now I just leave my computer running over night and get a lot of DP

Likebeingawesome Apr 1, 2019 @ 9:41pm
I don't need a complex script. All I do is hold it down on my mouse and then unplug and plug back in my mouse.

FallenLogic Dec 4, 2018 @ 8:35pm
This script would be a bit more portable if it just toggled mouseclick and didn't move the mouse, so you could position it beforehand.

Pretty sure this works (changed to right alt b/c I don't use it for Ctrl+Alt+Del, etc.)

RAlt::
RAlt := not RAlt
if (RAlt)
{
Click down
}
else
{
Click up
}
Return


Also, the website is autohotkey.com

Katdust Dec 2, 2018 @ 11:39pm
What resolution are you using? cause when i cut it on it just puts the mouse in the middle of the screen and does nothing.
Turnipseed 7 May, 2022 @ 3:10pm 
@elephant I just put stuff on my mouse
city$$$$$$$$ 26 Sep, 2020 @ 1:01pm 
or you could uhhhh put a rock on your mouse
koobdie 17 Apr, 2019 @ 5:02pm 
Likebeingawesome that really helped now I just leave my computer running over night and get a lot of DP
Likebeingawesome 1 Apr, 2019 @ 6:41pm 
I don't need a complex script. All I do is hold it down on my mouse and then unplug and plug back in my mouse.
FallenLogic 4 Dec, 2018 @ 5:35pm 
This script would be a bit more portable if it just toggled mouseclick and didn't move the mouse, so you could position it beforehand.

Pretty sure this works (changed to right alt b/c I don't use it for Ctrl+Alt+Del, etc.)

RAlt::
RAlt := not RAlt
if (RAlt)
{
Click down
}
else
{
Click up
}
Return


Also, the website is autohotkey.com
Katdust 2 Dec, 2018 @ 8:39pm 
What resolution are you using? cause when i cut it on it just puts the mouse in the middle of the screen and does nothing.