Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Nice, thanks! The hill works perfect, haven't been interrupted yet
Theres a pretty easy way to get unlimited currency that is easily exploitable if you want. Ill give you a hint.... Use at your own risk. And by "risk" I mean, it'll destroy your sense of achievement in the game when you start exploiting.
The game is tied to your clock.
Use Notepad to copy and paste the stuff below the dashed line at the end of this comment and save the file with an AHK extension (Example. Cell-20ms-Clicker.ahk)
Note: Do not include the dashed line in your script...
You can adjust the milliseconds (ms) to whatever you want, but I experimented a lot on my i7-6700K computer and 20ms seemed optimal. If your hardware is older you may need to increase it to 30ms or even higher.
Once you have installed AutoHotKey and saved the file you created with a .AHK extension, you can double click the .AHK file to start it or you can right click the .AHK file and select Run Script. Then, with Cell to Singularity open you hold down the CTRL (Control) key and press F5 to start the script.
To pause the script you press the Pause key on your keyboard.
To resume the script you press the Pause key on your keyboard.
To quit the script you press the ESC (Escape) key.
Once you start this script and get it running you can mess around in the game and do what you want because this doesn't do Mouse clicks and won't select anything you don't want selected. This is why I love it so much!
Note: Just make sure you don't take your Mouse cursor outside of the game because changing focus to something that will accept letters typed on your keyboard will end up with a long string of LLLLLLLLLs in it considering this script types about 20 of the letter L per second.
Use this at your own risk and only if you are comfortable with doing this kind of thing. I make no warranties and won't provide any support for this method. I barely understand it myself...
Have fun!
----------------------------------------------
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance, force
#MaxThreadsPerHotkey 2
^F5::
Toggle := !Toggle
while Toggle
{
Send, L
Sleep, 20 ; 20 milliseconds
}
{
Pause::Pause ; The Pause/Break key.
Esc::ExitApp ;Escape key will exit... place this at the bottom of the script
}
Return