Mediocre Maze

Mediocre Maze

by uncanny78
回報問題
舉報遊戲
Loading ad...

Mediocre Maze

評價:
2.2
推出時間: February 07, 2009
上次更新: February 07, 2009
開發者: uncanny78

Mediocre Maze 關聯標籤

簡介

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.

玩法說明

Use the arrow keys to navigate the maze.

留言

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)