Show HN: Looptap – A minimal game to waste your time
121–130 of 183 posts
Re: Show HN: Looptap – A minimal game to waste your time
#122One of my favorite things to do with these neat little games is to build something that plays them for me by just pasting stuff into the browser JS console. https://pastebin.com/aTYuaNVS At a score of 1,619 the ball is moving so fast it no longer works! I switched to a new tab (hoping that the event loop would be sent to the background/context switch/whatever) and ta-da - it misclicked. High score of 1,637.
It's not exactly playing the game, but this was my approach: setInterval(() => { loopTapApp.arc = [ -Infinity, Infinity ] loopTapApp.tap({ preventDefault: () => {}, stopPropagation: () => {} }) })
Re: Show HN: Looptap – A minimal game to waste your time
#123One of my favorite things to do with these neat little games is to build something that plays them for me by just pasting stuff into the browser JS console. https://pastebin.com/aTYuaNVS At a score of 1,619 the ball is moving so fast it no longer works! I switched to a new tab (hoping that the event loop would be sent to the background/context switch/whatever) and ta-da - it misclicked. High score of 1,637.
loopTapApp.score = Number.MAX_SAFE_INTEGER;Re: Show HN: Looptap – A minimal game to waste your time
#124Awesome work! I strongly recommend monetizing this. If this was a native iOS/Android app, you could show an interstitial ad after each Game Over and offer a small in-app purchase to remove all ads. It worked for 2048, and I believe it would work here as well! Addictive drop-dead simplicity is repeatable recipe for success in games. I'm working towards this same strategy in my own projects, but I think you've really n…
Re: Show HN: Looptap – A minimal game to waste your time
#125it's basically a clone of what is already playable in the link they provide literally the same what is the point other than pure 100% identical copy no shame? https://coogyloop.com/
Re: Show HN: Looptap – A minimal game to waste your time
#126One of my favorite things to do with these neat little games is to build something that plays them for me by just pasting stuff into the browser JS console. https://pastebin.com/aTYuaNVS At a score of 1,619 the ball is moving so fast it no longer works! I switched to a new tab (hoping that the event loop would be sent to the background/context switch/whatever) and ta-da - it misclicked. High score of 1,637.
Here's my solution: loopTapApp.score = Number.MAX_SAFE_INTEGER;
Re: Show HN: Looptap – A minimal game to waste your time
#127Re: Show HN: Looptap – A minimal game to waste your time
#128Re: Show HN: Looptap – A minimal game to waste your time
#129Thanks, you've just wasted valuable engineering time of multiple people. The actual cost of this game is much more than what we realize.
Re: Show HN: Looptap – A minimal game to waste your time
#130Otherwise fun game :)