Show HN: Looptap – A minimal game to waste your time
61–70 of 183 posts
Re: Show HN: Looptap – A minimal game to waste your time
#62One 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.
Re: Show HN: Looptap – A minimal game to waste your time
#63Re: Show HN: Looptap – A minimal game to waste your time
#64Re: Show HN: Looptap – A minimal game to waste your time
#65Without a "share" button that creates an emoji summary of your results, this will never get as viral as Wordle
Re: Show HN: Looptap – A minimal game to waste your time
#66One 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.
sad. i got stuck in a loop at 1477. it just kept going round and round.
Re: Show HN: Looptap – A minimal game to waste your time
#67The ryhtm should accelerate each N clicks so that the game eventually ends. Otherwise no matter how many points you get by clicking fast it's possible to accumulate the same amount by playing it safe.
Re: Show HN: Looptap – A minimal game to waste your time
#68It'd be more fun if you somehow got "bonus points" for reducing the time between clicks. I kept playing it safe trying to time the ball but it kind of felt like cheating!
this.score = this.score + (tapInterval Re: Show HN: Looptap – A minimal game to waste your time
#69 1. Add a share button to share your score
2. Add a timer component (can be hidden). It will add urgency.
3. Speed up the ball as time goes on (maybe i haven't gotten far enough for this to happen...?)
4. If you're adding more points for "same rotation hit", make it clear that it's doing that and don't just add more points to the score (shake the number, throw some fireworks, or something). Your focus is on the ball not the score so you won't even notice the number went up a little bit more than usual until you lose.Re: Show HN: Looptap – A minimal game to waste your time
#70One 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.
Also, in retrospect, I probably should have read the code before pasting it into my console.