Page 2 of 2

Re: Hangman

Posted: Mon Dec 17, 2012 7:55 pm
by Nixola
If I manage to get bored enough to code it, I'll call it "Hangman Coded Only And Absolutely By Nixola From Love2d.org's Forum"

Re: Hangman

Posted: Tue Dec 18, 2012 6:13 am
by substitute541
I agree with Codex that this should be a new tutorial for the Love2D Wiki.

But this person, should learn Lua and Love2D first before he requests a game.

Anyways, I might create one in my free time... although, with the proper credits on it. :cool:

Re: Hangman

Posted: Tue Dec 18, 2012 6:24 am
by substitute541
Here's a dictionary of 172,806 words, just in case anyone needs it... (note : you need a text editor that supports newline character).

https://dl.dropbox.com/u/105405645/words

Re: Hangman

Posted: Tue Dec 18, 2012 12:41 pm
by veethree
I might do that..But i'll make sure to put my name and variations of it all over the code so you can't just take credit for it :D

Re: Hangman

Posted: Wed Dec 19, 2012 1:59 pm
by nupetname
btw i just asc for help cos i have never learn lua.. if someone can help i apreciate thatt :)

Re: Hangman

Posted: Wed Dec 19, 2012 2:13 pm
by Nixola
You might ask, then, where can you learn Lua

Re: Hangman

Posted: Thu Jan 03, 2013 5:54 pm
by Saegor
try to make something with this

nothing is working yet but you may find some inspiration

Re: Hangman

Posted: Fri Jan 25, 2013 12:03 am
by nupetname
here on this forum no one is going to get help

Re: Hangman

Posted: Fri Jan 25, 2013 12:34 am
by Jasoco
substitute541 wrote:Here's a dictionary of 172,806 words, just in case anyone needs it... (note : you need a text editor that supports newline character).

https://dl.dropbox.com/u/105405645/words
Out of curiosity I decided to load all the words into a table. Surprisingly it only took .8 seconds to load them all and didn't take up much memory at all.

Color me shocked and surprised and pleased.

Curious, what's the source of this list and is there a permanent repository that can be accessed for updating in the future? Just in case I ever decide to do anything word-game related.

Re: Hangman

Posted: Fri Jan 25, 2013 4:41 am
by substitute541
Jasoco wrote:
substitute541 wrote:Here's a dictionary of 172,806 words, just in case anyone needs it... (note : you need a text editor that supports newline character).

https://dl.dropbox.com/u/105405645/words
Out of curiosity I decided to load all the words into a table. Surprisingly it only took .8 seconds to load them all and didn't take up much memory at all.

Color me shocked and surprised and pleased.

Curious, what's the source of this list and is there a permanent repository that can be accessed for updating in the future? Just in case I ever decide to do anything word-game related.
Um, yeah, it was from some free online course problem sets (specifically, pset3 about finishing an implementation of Scramble by making a lookup function using any search algorithm [mine is binary search]).