Mediocre Maze

Mediocre Maze

por uncanny78
Reportar un error
Marcar juego
Loading ad...

Mediocre Maze

Valoración:
2.2
Lanzamiento: February 07, 2009
Última actualización: February 07, 2009
Desarrollador: uncanny78

Etiquetas para Mediocre Maze

Descripción

Este es un juego de laberinto sencillo donde tienes que llevar el cuadrado azul al círculo rojo lo más rápido posible. Se suman puntos cada vez que chocas con una pared. Cuanto menor sea la puntuación, mejor. Este es mi primer intento con Flash y Actionscript, así que por favor sé amable y no me critiques demasiado.

Cómo jugar

Usa las flechas para navegar por el laberinto.

Comentarios

0/1000
UziOunce avatar

UziOunce

Nov. 28, 2010

1
0

Er,kinda SHIT

Kain avatar

Kain

Feb. 07, 2009

1
0

For a first attempt, it is decent. If you wanted to improve upon it, make an interface when you start so that the timer doesn't begin as soon as the game loads.

JDCAce avatar

JDCAce

Feb. 11, 2009

1
1

I agree with Kain about the menu, or at least delayed timer. Also, if you're good to put music, or any unnecessary audio at all, in your game, you really should give the player a mute option.

uncanny78 avatar

uncanny78

Feb. 11, 2009

1
1

1230567: I changed it to else if as it was sticking to the wall using ifs when you moved diagonally. It was blowing up my hittests. This is AS3 BTW.

1230567 avatar

1230567

Feb. 11, 2009

1
1

try using new if statements for the movement, else if statements just cancel everything else, so if i hold all the keys its easy to see you have

if(Key.isDown(Key.LEFT)){
box._x -= 5;
}
if(Key.isDown(Key.RIGHT)){
box._x += 5;
}

and the same thing with up and down for the y values?... just take else the else ifs XD

(this is AS2.0 incase you use AS3.0)