Aaditya Parashar
Full Member
Just somebody with an abnormal coding routine.
Posts: 127
|
Post by Aaditya Parashar on Jun 26, 2023 7:14:22 GMT
Type Speed with various power-ups. Type as fast as you can. Power-ups currently include: 1. Clear some words - amount of words cleared depends on the difficulty. 2. Freeze time for some seconds 3. Replace some words with a smaller one
TypeSpeed.bas (45.63 KB)
Update: New Mode You can now enter the dash '-' character Increased required money for power ups as per the difficulty level. TypeSpeed2.bas (46.05 KB)
|
|
|
Post by dustinian on Jul 4, 2023 15:01:59 GMT
Love the game! But when "so-called" comes up, the command line won't take the "-" character when I type it... sorry if I missed an instruction for getting "-" to work!
|
|
|
Post by bplus on Jul 4, 2023 19:43:01 GMT
Ah Asc of "-" = 45 so line 147
If Asc(Key$) = 13 Or Asc(Key$) = 45 Or (Asc(Key$) >= 65 And Asc(Key$) <= 122) Then InputWord$ = InputWord$ + Key$ Or substitute another word on line: 2624 like soaked
|
|
Aaditya Parashar
Full Member
Just somebody with an abnormal coding routine.
Posts: 127
|
Post by Aaditya Parashar on Jul 6, 2023 2:42:49 GMT
I haven't done that so that the player would just eliminate that word only using powerups, making it more challenging. But we can use it.
|
|
|
Post by bplus on Jul 6, 2023 13:35:58 GMT
Well making it impossible is a pretty interesting challenge. I am glad I grew up watching Captain Kirk handle "impossible" situations
|
|
|
Post by crumpets on Jul 29, 2023 10:48:27 GMT
Very addictive and fun but it feels as though the difficulties are all a little low or maybe I just type too much already. Impossible mode is where the fun is at for me.
|
|
Aaditya Parashar
Full Member
Just somebody with an abnormal coding routine.
Posts: 127
|
Post by Aaditya Parashar on Jul 31, 2023 2:47:44 GMT
Updated
|
|