Neat! A couple gameplay suggestions I would have is that while the game does pretty well figuring out which word I'm typing sometimes I will get "locked" on a word that I decide I don't actually want to complete (for example, if something is coming at me faster). And, while probably intentional, sometimes I just can't see words or there is some delay in when they actually get destroyed.
Games like this based on an existing skill would really benefit from the ability to start at higher levels. I'm a pretty proficient typist, it'd be a lot more interesting to me if there was any risk at all of me failing.
The game doesn't penalize wrong key presses. I made an automation cheat for it back in Dec 2013!<p><pre><code> import java.awt.*;
public class autokey {
public static void main(String[] args) throws Exception {
// Give the user time to switch windows
Thread.sleep(2000);
// Repeatedly type the letters A through Z until the mouse is moved
Robot rob = new Robot();
Point prevLoc = MouseInfo.getPointerInfo().getLocation();
while (MouseInfo.getPointerInfo().getLocation().equals(prevLoc)) {
for (int i = 'A'; i <= 'Z'; i++) {
rob.keyPress(i);
Thread.sleep(1);
}
Thread.sleep(50);
}
}
}</code></pre>
Really cool! What I have always wanted was a version of those touch typing training sites like tipp10 but with some social aspects. E.g. like a running app where you can rack up kilometers against your friends but for typing lessons!
I really like the game!<p>looks like the keyboard doesn’t work that well on mobile though (iOS). You need to press the keys below the key you want to type (eg if I want to type a T, I need to press G for it to work)
For more of a challenge, there are these texts (0):<p>> Random Wikipedia Article (probably hard) [1]<p>> Moby Dick (hard) [2]<p>> Donald Trump’s Speech, South Carolina (incomprehensible) [3]<p>0: <a href="https://zty.pe/?load" rel="nofollow">https://zty.pe/?load</a>
1: <a href="https://zty.pe/?url=https://en.wikipedia.org/wiki/Special:RandomInCategory/Good_articles" rel="nofollow">https://zty.pe/?url=https://en.wikipedia.org/wiki/Special:Ra...</a>
2: <a href="https://zty.pe/?text=11e5dad15e3dca9b" rel="nofollow">https://zty.pe/?text=11e5dad15e3dca9b</a>
3: <a href="https://zty.pe/?text=21bb8f1868f879f8" rel="nofollow">https://zty.pe/?text=21bb8f1868f879f8</a>
For those seeking something multiplayer <a href="https://play.typeracer.com/" rel="nofollow">https://play.typeracer.com/</a>