
Current poll< 5 (0 Votes)
5 - 10 (2 Votes)
10 - 15 (0 Votes)
15 - 20 (0 Votes)
20 - 25 (2 Votes)
25 - 30 (5 Votes)
> 30 (2 Votes)
Recent Blog Posts
I will be releasing GL V1.0.b (beta) within the next few weeks, my workplace has gone down to a two...
Dayo 01-26-2012 05:45 PMRecently one of our members (Octarine) has provided the forum with a 'small' test, which you can...
Nickson 01-25-2012 11:39 PMAs the engine progress, I wanted to offer as much tools to the admin as possible. Included in the...
a_bertrand 01-17-2012 08:21 PMWell well, it's 2012. A new year, and a productive year at least? I have no idea what 2012 will...
Nickson 01-12-2012 12:13 AM
<html> <head><title>Simple Javascript hangman</title></head> <body> <span id='word'></span> <input type='button' onclick='getWord()' value='Generate word' /> <script> var words=['computer','telephone','screen','bunny','octopus','fishbone','diagram', 'definition','illustration','magazine','helicopter', 'airship','balloon','glider','turbine','development']; function getWord() { var w=Math.floor(Math.random()*words.length); document.getElementById('word').innerHTML=words[w]; } </script> </body>
<html> <head><title>Simple Javascript hangman</title></head> <body> Word to guess: <span id='word'></span><br/> <input type='button' onclick='getWord()' value='Generate word' /> <script> var words=['computer','telephone','screen','bunny','octopus','fishbone','diagram', 'definition','illustration','magazine','helicopter', 'airship','balloon','glider','turbine','development']; var myWord=""; var wordDisplay=""; function getWord() { var w=Math.floor(Math.random()*words.length); myWord=words[w]; wordDisplay=""; for(var i=0;i < myWord.length;i++) { if(wordDisplay != "") wordDisplay+=" "; wordDisplay+=""; } document.getElementById('word').innerHTML=wordDisplay; } </script> </body>
<html> <head><title>Simple Javascript hangman</title></head> <body> Possible faults: <span id='faults'></span> Word to guess: <span id='word'></span><br/> <input type='button' onclick='init()' value='Generate word' /> <script> var words=['computer','telephone','screen','bunny','octopus','fishbone','diagram',
Recent Articles
Recent ThreadsHello everyone,
I plan to make a MMO review blog soon and I'm in search for 2 partners, you would not require to make any investment although investment
Hi im very noobie at css i really needed some help.
I coding in a template basically so far 70% i managed to code somehow :d
i made
I would like to point out this site which I can see grabbed some of my art work on my site after analyzing their slideshow part. I do not take kindly
Yesterday, 11:06 PM by Nickson
Whats the best type of game to make that i will make alot of money on ?
Yesterday, 10:13 PM by modernmafiia
CSRF, Sessions and XSS
Here we deal with a few extra problems, and cleanup the code a lot more. I've
corrected a few minor issues in
I've used AdvertiseYourGame.com both as an advertiser and publisher and had good success with it, but for about the last week all of their banners show
Yesterday, 09:11 PM by JordanD
Would anyone be kind enough to quickly upload a game engine thats working to a free host for me please?
Yesterday, 08:09 PM by Djkanna
***EDIT****
This Post is updated Frequently to save you from having to scroll through all the other posts 
As promised, I've went

Past year and 2012
The year 2011 was full of ideas for me which caused very little progress in my own personal...
Sim 01-26-2012 08:12 PM