Hacker News new | ask | show | jobs
by tgibson 3603 days ago
Once I figured there would be lots of clicking, I went into the console and typed the following to automate the Kinetigen:

var ki = setInterval(function() { kinetigenClick(); kinetigenRelease(); }, 10);

Then later on at a certain point in the game, I had to stop it:

clearInterval(ki);

1 comments

Tried pasting your code into the console, but i'm getting the following error:

(program):1 Uncaught ReferenceError: kinetigenClick is not defined

What am I doing wrong?