• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[Minigame] Typing Master!

Status
Not open for further replies.
Typing Master!

If you ever played Typing Maniac on facebook, then I am gladly to present something similar to it in warcraft! I will add some upgrades and items in the future versions, for now this is still a beta, download it below! Please post your highscores and suggestions! Thank you :)

Special Thanks to Hashjie for helping with the System :D
 

Attachments

  • Typing Master 1.00a (P).w3x
    16.5 KB · Views: 90
  • Typing Master 1.00b (P).w3x
    16.6 KB · Views: 119
Last edited:
Level 4
Joined
Aug 26, 2012
Messages
85
the leaderboard is messed up.

when i typed correctly, it decreases my points. (Eg. 10, 9, 8, 2, -1, -10, so on)
the correct points are shown at the bottom left screen through Game Text

next, when the words goes down to the bottom and disappears, the Lives increased.
 
Level 25
Joined
Jul 10, 2006
Messages
3,315
You need to keep all possible words as a stack/list/array, like this:

word[1] = tree
word[2] = map
word[3] = forum
... etc
word[120] = last

Now save 120 (the highest array number in your list) as an int variable WordCount.

When you display a new word, set a temp int to random number from 1 to WordCount, which will give you a word on that list.
But now you must also temporarily remove the word from the list.
So for loop (integer i from temp int to WordCount) do:
set word = word[i + 1]
What this does is replaces the storage variable of the chosen word with the next one of the list, and that with with the next, and so on.
Now set WordCount = WordCount - 1, because there is one less word in the list.

When the word has been typed, just add it to the end of the list.
So do
WordCount = WordCount + 1
word[WordCount] = my word
 
Level 12
Joined
Sep 11, 2011
Messages
1,176
Or an old friend of mine from Crimsonland's Typ-o-Shooter mode:
uniqueuniqueunique

Also, has no one bothered to try my previously attached Typo Shooter? :/

i thought it was piece of cake, BUT THEN YOU RUIN MY DAY FLOODING WORDS EVERYWHERE.

also, f***ing tanks defeated me!

but i had lot of fun xD
the idea is very nice.

EDIT : wait, what was these ability ?
 
Level 25
Joined
Jul 10, 2006
Messages
3,315
Thanks for testing guys! I will surely add more words in the future, for now there's only 81, lol. Any Suggestions? :D

Google "list of simple words"

i thought it was piece of cake, BUT THEN YOU RUIN MY DAY FLOODING WORDS EVERYWHERE.

also, f***ing tanks defeated me!

but i had lot of fun xD
the idea is very nice.

EDIT : wait, what was these ability ?

It's the only version I could find of a map I made a long time ago and lost. Later versions were multiplayer, and had loads of special units.

Need to add a "typo" mode that jumbles all the words a bit :D
 
Status
Not open for further replies.
Top