nuther online challenge game...

this is what i got

P1010627.JPG
 
24
smile.gif


there is definitely a pattern you can follow to easily get to 12 or so
cool.gif
 
woo hoo.. over 35 secs..
well i cheated..

1. saved the html page locally..
2. view source..
3. changed the speeds.

just stick a little infront of the times.. instead of 80.. make it 180...
if you want a real challenge make it 20..
smile.gif


function movenemies() {

gametime = gametime + 1

if (gametime >= 0 && gametime < 100) speed = 180;
else if (gametime >= 100 && gametime < 200) speed = 60;
else if (gametime >= 200 && gametime < 300) speed = 40;
else if (gametime >= 300 && gametime < 400) speed = 30;
else if (gametime >= 400 && gametime < 500) speed = 20;
 
Back
Top