Originally posted by /u/Livid-Explanation716
Is there any recent scripts up? For automatically sending hunters, observing sky etc.
I’ve found old scripts from 6-9 years ago, but they don’t work and I’m not programmer enough to fix them.
Please help.
Almostasleeprightnow
Here is what I do:
Auto Tick - makes game time be faster.
autoTick = setInterval(function(){
game.tick()
}, 30)
Auto Observe
starClick = setInterval(function() { $("#gameLog").find("input").click(); }, 2 * 1000);
End Auto Observe
clearInterval(starClick);
Auto Praise
autoPraise = setInterval(function() {
$("#fastPraiseContainer").children()[0].click();
}
, 5 * 1000);
End Auto Praise
clearInterval(autoPray);
There are more at the link I posted at the top, and the more you do it, the more you can figure out how to modify them to do what you want
XenosHg
Both the lightweight Script Kitties Extended that really helps in early game
https://github.com/JonathanBeverley/KittensGame
And a massive Kitten Scientists v2 that can automate late-game runs completely, including resets
https://github.com/kitten-science/kitten-scientists
Should mostly work on the recent versions of the game (as far as I know)
and can be found on the wiki but apparently not on both wiki versions