Word game words list


Word lists for writing computer word games – Words & Stuff

This started out to be a post about writing a computer version of a word game, but ended up focusing mostly on computerized word lists.


Wordle got me thinking about a vaguely related (but not the same) word game called Fives that I learned as a kid. I wrote about Fives in a 1997 Words & Stuff post, in which I also mentioned that I had always wanted to turn it into a computer game.

And now I have! But so far it’s just a text-only game to run on the command line. The core of it turned out to be easy to write; I wrote the whole game in about a hundred lines of Perl code, without trying to be particularly brief/compact. I wrote it in Perl because I figured it would be quick and easy to write that way; but I neglected to take into account the fact that I haven’t written much Perl code in a long time, so I ended up having to look up the Perl syntax for all sorts of basic things.

Anyway, it works now, and I’ll probably put it on GitHub sometime soon. But I don’t really expect people to download and run the command-line version. So the next phase of the project is to translate it into JavaScript and make it display nicely in a web browser. I don’t expect that to be terribly difficult, but I figured I might as well get the logic working (with the command-line Perl version) before dealing with the layout/UI issues that the web version will require.


One issue that I’ll have to deal with before releasing it publicly is finding a freely licensed word list.

It turns out that it’s a good idea for a word game like Wordle to include two lists of five-letter words (or whatever other kind of words match the game’s criteria):

  • One list of as many legitimate five-letter words as possible. When a player enters a guess, the program checks their guess against this list to see whether the guess is a valid five-letter word. If they type GGGGG as a guess, then the program can determine that that’s not a valid word, at least not for the purposes of the game.
  • Another, much shorter, list of common five-letter words. When the program needs to pick a word to be the answer for the current game, it picks from this list. (Every word on this list, of course, has to be on the other list as well.)

So, for example, if a player wants to enter the word BAVIN as a guess, it’s nice to let them do so; that’s a legitimate word, listed in some dictionaries. But it’s a pretty obscure word, so you probably don’t want the program to pick it as the answer; players who don’t know the word would find it frustratingly hard to figure out.

But in order to include those two lists of words, you need to acquire them. One way to do that would be to license a word list from a company that provides them; some word game apps do this. Another way would be to use an existing freely usable list.

Many UNIX-derived operating systems include a freely usable word list, as a text file. For example, in macOS, the /usr/share/dict directory includes a couple of word lists. The web2 file in that directory contains about 235,000 words from Webster’s Second International, which was published in 1934 but the copyright has lapsed. So that list of words is in the public domain. And it’s easy enough to extract all five-letter words from that list.

(Or all five-letter words with no repeating letters, for use in Fives.)

But there are three problems with using that list, for my purposes:

  • It doesn’t include inflected forms of words. So, for example, it doesn’t include BAKED or BAKES.
  • It doesn’t include words coined since 1934.
  • It doesn’t indicate how common each word is. So it’s useful for the full guess-validation list, but I would have to extract common words manually to create the possible-answers list.

For the inflections issue, I came up with a kludgy workaround: I extracted all the four-letter words and added S to the end of each. (And could similarly add D to the ends of four-letter words ending in E. ) This kludge works surprisingly well, creating lots of legitimate five-letter plurals; but it means that my full list now also includes lots of strings that aren’t words, such as INKYS.

For the lack-of-recent-words issue, I suspect that there aren’t all that many five-letter words with no repeating letters coined in the past 90 years. But I also suspect that modern players would find it frustrating to guess such a word and be told that it’s not valid.

For the commonness issue, manually pulling out the common words isn’t that hard; I started to do it, and it went pretty quickly. But that approach requires making a lot of decisions about what counts as common.

So I went looking for other options.

So far, the most promising-looking option I’ve found is SCOWL, though I need to look into it a bit more. It also has the advantage of scoring words by how common they are.

Even if I go with SCOWL’s list, or something similar, I’ll still need to manually look through the possible-answers list before I publish the game. For example, I don’t want the game to pick various common insults as answers. But I think that using the SCOWL list as a starting point will make various things easier.

Scrabble Word List and more

Did you know there are 175,393 words in the scrabble dictionary?

Looking for a scrabble word list? Maybe a compound word, or words that start or end with any letter. We have it here. Check out our vast word lists that are great for games like Scrabble© and Words With Friends©. These lists can help you in your classroom, homework or just to study.

If you don't see a particular list you are looking for please let us know and we will consider adding it.

All of our word lists formerly part of the TWL06 and OWL3 have been updated to the new (OTCWL2014). Included are all our words in the scrabble dictionary results and scrabble word finder results.

You cant export any of our word lists in a JSON format. WARNING! some of these lists are very large. Please do not link to our lists directly to use for your app or website. Download them to your server and use them locally.

Words of a particular length

2 Letter Words - json

3 Letter Words - json

4 Letter Words - json

5 Letter Words - json

6 Letter Words - json

7 Letter Words - json

8 Letter Words - json

9 Letter Words - json

10 Letter Words - json

11 Letter Words - json

12 Letter Words - json

13 Letter Words - json

14 Letter Words - json

15 Letter Words - json

Sponsored

Words that contain a letter

Words with A - json

Words with B - json

Words with C - json

Words with D - json

Words with E - json

Words with F - json

Words with G - json

Words with H - json

Words with I - json

Words with J - json

Words with K - json

Words with L - json

Words with M - json

Words with N - json

Words with O - json

Words with P - json

Words with Q - json

Words with R - json

Words with S - json

Words with T - json

Words with U - json

Words with V - json

Words with W - json

Words with X - json

Words with Y - json

Words with Z - json

Words that start with any letter

Words that start with A - json

Words that start with B - json

Words that start with C - json

Words that start with D - json

Words that start with E - json

Words that start with F - json

Words that start with G - json

Words that start with H - json

Words that start with I - json

Words that start with J - json

Words that start with K - json

Words that start with L - json

Words that start with M - json

Words that start with N - json

Words that start with O - json

Words that start with P - json

Words that start with Q - json

Words that start with R - json

Words that start with S - json

Words that start with T - json

Words that start with U - json

Words that start with V - json

Words that start with W - json

Words that start with X - json

Words that start with Y - json

Words that start with Z - json

Words that end with any letter

Words that end with A - json

Words that end with B - json

Words that end with C - json

Words that end with D - json

Words that end with E - json

Words that end with F - json

Words that end with G - json

Words that end with H - json

Words that end with I - json

Words that end with J - json

Words that end with K - json

Words that end with L - json

Words that end with M - json

Words that end with N - json

Words that end with O - json

Words that end with P - json

Words that end with Q - json

Words that end with R - json

Words that end with S - json

Words that end with T - json

Words that end with U - json

Words that end with V - json

Words that end with W - json

Words that end with X - json

Words that end with Y - json

Words that end with Z - json

Sponsored

Misc Word Lists

Words you can make with our word unscrambler

Common English words and Frequencies

Compound Words - Over 100,000 compound words!

Vowel Dumps - Vowel Dumps you can play in scrabble

Enable - The official word list for Words with Friends and Wordox

English Word List - (Western) English Word List

TWL06 - North America Scrabble Word List

SOWPODS - Eurpoe Scrabble Word List

2 Word Phrases - Common phrases with 2 words

3 Word Phrases - Common phrases with 3 words

Scrabble words with no vowels - over 110 scrabble words that do not contain vowels with or without a Y

Words with all consonants - Words that only contain consonants

Highest scoring words - Highest possible scoring words with in scrabble

Q words without a U after - Words with Q and not a U after

Palindrome Words - Words that are spelled fowards and backwards the same

How to memorize - Learn how to memorize words to improve your game of scrabble.

Common Prefixes - Huge list of common prefix words used in the english dictionary

Free Scrabble Word Finder - Another huge word list

Tools for webmasters

Embeddable Word Solvers - Multi Language Scrabble Word Finders for your websites

Scrabble Dictionary API - Word verification for the offical scrabble dictionary

Word list for adult game Crocodile → slotObzor.com

For Adults • Board Games

Let's look at the following popular questions:

  1. Why Crocodile game?
  2. How to make cards with your own hands?
  3. Samples for printer
  4. How to use templates
  5. Examples of easy words
  6. Hard level
  7. Very difficult (adults only)
  8. Some useful tips

The most interesting "Word" game

It is very easy to come up with phrases or words for the game crocodile . The main thing is to be inspired. And, of course, one cannot do without creative ideas. Therefore, I propose a ready-made list of words for the game Crocodile for adults . + you need to remember that the cards for playing the crocodile are divided into 3 categories: simple, medium and complex. Simple words are suitable for children. But all the cards are more complicated - suitable for a more adult company.

How to make a Crocodile game with your own hands?

There are 2 options. The first is to print cards . It can be in color, or it can be in black and white. The second is to make task cards without a printer. That is, cut out rectangles from thick paper and write a word (phrase) on one side with a marker.

I recommend choosing a red marker. You can take not paper, but cardboard. So the cards will "hold out" a little longer. I don't recommend laminating them. Mixing them in this case will be inconvenient. I already wrote more about how to make the Crocodile game myself in this article.

Word templates (color and bw options):

Color print

Excellent quality. Can be edited with any editor

For color printer. Fits any size

Prints great on any printer

Color and B&W

How do I use templates?

Print multiple copies of the template. Cut carefully with scissors. Optionally, stick on cardboard. In the empty space - in the tablet - enter the desired word (expression). You can edit pictures in Photoshop or any other editor. Templates are suitable for playing in Telegram, WhatsApp, etc.

Crocodile word list for adults

Easy words

  1. Indicator;
  2. identikit;
  3. Diploma;
  4. Room;
  5. Void;
  6. Robot;
  7. Constructor;
  8. Response;
  9. Yula;
  10. Special Forces;
  11. Painter;
  12. Plumber;
  13. Treasure;
  14. Cookie;
  15. Twilight;
  16. Soda;
  17. Walk;
  18. funny;
  19. Trunk;
  20. Announcer;
  21. Vest;
  22. Yoga.
  23. Pencil;
  24. Idea;
  25. Creative

Difficult

  1. Madhouse;
  2. Sketch;
  3. Intelligence;
  4. Limit;
  5. Captain;
  6. Tariff;
  7. Semiconductor;
  8. Note;
  9. Mood;
  10. Fellow student;
  11. Cynologist;
  12. Party;
  13. Commander;
  14. Secretary;
  15. Modem;
  16. Convoy;
  17. Displacement;
  18. Pallet;
  19. Capital;
  20. Disaster;
  21. Test drive;
  22. Pearl;
  23. Panama;
  24. Altar;
  25. Charisma

Very difficult

  1. Enlightenment;
  2. Allegory;
  3. Poem;
  4. Parade;
  5. Ghoul;
  6. Petition;
  7. Passion;
  8. Patron;
  9. Content;
  10. Romance;
  11. Avatar;
  12. Forex;
  13. Requiem;
  14. Meal;
  15. Pentagram;
  16. Alpha;
  17. Correction;
  18. Fineness;
  19. Palette;
  20. Revenge;
  21. Concentration;
  22. Infirmity;
  23. Furor;
  24. Ability;
  25. Adultery

Tips:

  1. I do not recommend choosing words that are too difficult. After all, if the word is guessed for half an hour, then the game will quickly get bored!
  2. Play Crocodile in a big company. The more friends, the better!
  3. Do not reuse words. I recommend preparing at least 100 words. If you are going to play multiple days in a row.
  4. Do not forget about age restrictions. Do not play with children in an adult version.
  5. If you have forgotten the rules, read them before starting the game.

Have fun!

Similar entries

Interesting words for the game Crocodile: many options

tgames For adults, For children

In the game Crocodile show words by body movements. Letters are not allowed, only Roman numerals are allowed. If the word is guessed within a minute, a point is awarded to the walking team. Otherwise, no point is awarded and the turn passes to the next team .


Learn more


Wave

North Coast Community Services
710 Fraser Street, Prince Rupert, BC V8J 1P9
Ph: 250.627.7166 | Fx: 250.627.7482

© All Rights Reserved | powered by ExpressionEngine