Mediocre Maze

Mediocre Maze

por uncanny78
Reportar um bug
Marcar jogo
Loading ad...

Mediocre Maze

Avaliação:
2.2
Lançamento: February 07, 2009
Última atualização: February 07, 2009
Desenvolvedor: uncanny78

Tags para Mediocre Maze

Descrição

This is a simple maze game where you have to get the blue square to the red circle as fast as possible. Points are added everytime you hit a wall. The lower the score the better. This is my first attempt at Flash and Actionscript so please be kind and don’t flame me too badly.

Como jogar

Use the arrow keys to navigate the maze.

Comentários

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)