Live data from Hacker News

Stimulation Clicker

neal.fun

131–140 of 620 posts

Re: Stimulation Clicker

#133
post #114

If you want to speed run it let max = 1000000; let btn = $('.main-btn'); function cl() { btn.click(); max--; if (max > 0) { setTimeout(cl, 1) } } cl()

A small improvement would be to stop based on the balance, rather than a number of clicks, to avoid going into ludicrous Yes JS Numbers Are All Floats territory.

  let max_amt = 2000000000*2; // Twice most expensive item
  let btn = $('.main-btn');
  function cl() {
    btn.click();
    let curr = $(".main-stat-num").innerText.replace(/\D/g, '');
    if (curr  

Re: Stimulation Clicker

#135
post #12

Fantastic encapsulation and commentary on the modern web and attentionspace. There's certainly better ways to do this, but here's one way to automate 1000 clicks from the console: for (let i = 0; i Automating this art piece probably also says ... something.

Automate that bitcoin!

```

setInterval(() => { let max = 100; while(max-->0) { let price = +document.querySelector(".last-price").textContent.trim().slice(1).replace(",","").split("\n")[0]; if (price > 20000) { document.querySelector(".stock-sell").click(); } else if (price ```

Re: Stimulation Clicker

#136
I managed to cheat this by buying a bunch of DVDs and making my window as small as possible, meaning they hit the edges much more often and gained me infinity stimulation.

Re: Stimulation Clicker

#137
This game is truly a work of art. I literally got a migraine playing this game though and couldn't finish it unfortunately. This is the second piece of media to do this to me behind Koyaanisqatsi... now that I think of it, this seems like a modern interpretation of the film Koyaanisqatsi.

Re: Stimulation Clicker

#139
post #91

I finished the game without cheating. I felt like a frog being slowly boiled (and it really does feel like you're boiling at the end). It's quite the journey... I love how everything here isn't even farfetched. It's just standard YouTube and TikTok content. The red notification bubbles were also a nice touch, I felt myself really drawn to those, and if I think back, I guess that's the earliest example I can recall of…

As far as clickers go, finishing this game without cheating is very easy. Only takes like 20-30 min. But nonetheless, it was enjoyable. Really regretted clicking the subway surfer wormhole button. Luckily that was right at the end.

How much does it require to finish? I mean how many stimulation points?

I gave up when I bought auto hydraulic press.

Post reply on HN