Comments

Log in with itch.io to leave a comment.

(+1)

I don't usually play these kinds of games, but I enjoyed this one a lot! I'm definitely interested in seeing future builds of the game!

What do the numbers and colors mean? A tutorial would help probably. 

Also how do you check if its a valid word? And do you make sure there are always valid words on the board?


If you really want to develop this further then I'd suggest focusing more on making it relaxing and cozy. Maybe its just me, but right now trying to find a word on the word and not seeing it is just giving me anxiety :D And there is not enough of a dopamine hit when I do find a word.

That's a really good point. I'll bump that as a priority. 
Pero to put it in the simplest way possible, it's basically scrabble except all the tiles are on the board. You just need to find ANY word that belongs to the English dictionary and it is valid.

I've updated the description of the game to have instructions. I'll integrate them on the build soon.

(1 edit)

"Also how do you check if its a valid word? And do you make sure there are always valid words on the board?"

Not really. The words validate after the player finalizes it in runtime. I made an algorithm to basically make sure that letters are randomly generated from a pool of letters. Each letter generally being proportional to how often they occur in basic words (so that the Zs, Ws, and Vs, only occur once per set so they don't clog the grid). But it is possible to have multiple copies of them in-game if you ignore them on the grid long enough.

But how do you check if a word is valid? Is there a dictionary in the game?

(1 edit) (+1)

Yes. But word lists, technically. But I took the master list off from an open-source dictionary and converted it to a custom resource w/ a string array. Then divided the master list into multiple lists for performance. The game checks the list based on its initials so it doesn't have to check the entire word list. It was a pain to get right.