HOME | DD

ZEGMAN — smiley face maze of awesomness

Published: 2008-06-02 20:28:54 +0000 UTC; Views: 4020; Favourites: 51; Downloads: 37
Redirect to original
Description Looking back on this(August 24th,2009) It's actually kind of embarassing. I'm not deleting it because it's awesome.
Related content
Comments: 107

Fotus9 In reply to ??? [2008-07-09 14:57:12 +0000 UTC]

I finally*

👍: 0 ⏩: 1

ZEGMAN In reply to Fotus9 [2008-07-09 17:41:15 +0000 UTC]

?

👍: 0 ⏩: 1

Fotus9 In reply to ZEGMAN [2008-07-10 10:53:06 +0000 UTC]

👍: 0 ⏩: 0

DragmiresGirl [2008-06-20 12:39:02 +0000 UTC]

not excactly the best game in the world... but it really makes addicted *O*

👍: 0 ⏩: 0

Link2005 [2008-06-19 01:54:53 +0000 UTC]

HOLY SHIT THIS IS FUN.

👍: 0 ⏩: 1

ZEGMAN In reply to Link2005 [2008-06-19 02:03:51 +0000 UTC]

THANKS

👍: 0 ⏩: 0

M0nk3m4n In reply to ??? [2008-06-13 18:56:54 +0000 UTC]

Pretty fun...but uh, the background made it kinda
hard to see the green places sometimes, haha.
I had trouble playing this for two reasons, one...it's
hard!Lol and two, it reminded me I need to work on
my game that deals with smileys...uggh
Check it out if ya got time eh?[link]

👍: 0 ⏩: 1

ZEGMAN In reply to M0nk3m4n [2008-06-13 18:57:29 +0000 UTC]

lulz K

👍: 0 ⏩: 1

M0nk3m4n In reply to ZEGMAN [2008-06-13 19:06:46 +0000 UTC]

huhuhu, yyyyup.

👍: 0 ⏩: 0

Averagejohn [2008-06-04 22:33:17 +0000 UTC]

the background...
the headache inducing background...
one glitch although minor in level 8 i randomly died
and i hate you for making this, because i must finish it now

👍: 0 ⏩: 2

ZEGMAN In reply to Averagejohn [2008-06-04 22:38:08 +0000 UTC]

epic soundtrack?
did you notice its completely anti cheat?

👍: 0 ⏩: 0

ZEGMAN In reply to Averagejohn [2008-06-04 22:35:41 +0000 UTC]

lol heres a tip becuase of the random dying, make sure you slow down when you get to the red because some levels you appear near a wall and if you are holding down left for example when the flash player goes to a different frame, it will instantly go into the wall.
so try to slow down when getting to the red ball.

👍: 0 ⏩: 0

Fotus9 In reply to ??? [2008-06-03 07:24:03 +0000 UTC]

Oh my gawd I just love it! Incredibly Incredible!!!! I mean it is just one of the best maze games I ever played! Ok, maybe I'm exaggerating, but it's great! And woooooot! Totally anti-cheat!

👍: 0 ⏩: 1

ZEGMAN In reply to Fotus9 [2008-06-03 18:03:12 +0000 UTC]

o ya! thank you!
see how far you can get and if you find the secret!
.................
i guess i will post the secret in my journal update some time..

👍: 0 ⏩: 1

Fotus9 In reply to ZEGMAN [2008-06-04 12:58:56 +0000 UTC]

I still didn't find any secret... I got to level ten... (So that's half!!! )

I'll try to do more levels

👍: 0 ⏩: 1

ZEGMAN In reply to Fotus9 [2008-06-04 16:10:51 +0000 UTC]

👍: 0 ⏩: 0

Kaazuma-sama In reply to ??? [2008-06-03 03:10:25 +0000 UTC]

level four is so freaking hard... lol

👍: 0 ⏩: 2

ZEGMAN In reply to Kaazuma-sama [2008-06-03 18:04:08 +0000 UTC]

lol not really ... just move up imediantly one centimeter and wait about 2 seconds and go straight across

👍: 0 ⏩: 0

Kaazuma-sama In reply to Kaazuma-sama [2008-06-03 03:14:03 +0000 UTC]

NO LVL 11 SUCKS

👍: 0 ⏩: 1

ZEGMAN In reply to Kaazuma-sama [2008-07-27 18:48:02 +0000 UTC]

👍: 0 ⏩: 0

MarkerFlashes In reply to ??? [2008-06-03 02:29:42 +0000 UTC]

Addicting. xD


Could you please send me the actionscript you used for the walls?

The code that once you hit a wall it takes you to the "Game Over" screen.


Thanks in advance if you can. [:

👍: 0 ⏩: 1

ZEGMAN In reply to MarkerFlashes [2008-06-03 18:04:54 +0000 UTC]

ya sure! i have it at home from the help of chris layton just wait till i get home

👍: 0 ⏩: 1

MarkerFlashes In reply to ZEGMAN [2008-06-03 19:07:28 +0000 UTC]

Thanks dude!

👍: 0 ⏩: 1

ZEGMAN In reply to MarkerFlashes [2008-06-03 19:12:21 +0000 UTC]

yep

👍: 0 ⏩: 1

MarkerFlashes In reply to ZEGMAN [2008-06-04 20:27:30 +0000 UTC]

Got it yet? [:


Thanks.

👍: 0 ⏩: 1

ZEGMAN In reply to MarkerFlashes [2008-06-04 22:32:01 +0000 UTC]

ok here is a code for boundries(you can't go past them):
__________________________
onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT) && !this.hitTest(_root.BorderL)) {
this._xscale = Math.abs(this._xscale)*-1;
this._x -= speed;
}
if (Key.isDown(Key.RIGHT) && !this.hitTest(_root.BorderR)) {
this._x += speed;
this._xscale = Math.abs(this._xscale);
}
if (Key.isDown(Key.UP) && !this.hitTest(_root.BorderU)) {
this._y -= speed;
}
if (Key.isDown(Key.DOWN) && !this.hitTest(_root.BorderD)) {
this._y += speed;
}
(just make 4 boxes just around the outside of the frame and label them borderU borderD.....
_____________________________
and the code for the game over screen:
(put this in the character)
_____________________________
if(this.hitTest(_root.instancename)){
_root.gotoAndStop(6);
}
}
make a movie clip with the instance name whatever and put it in the instance name part of code i put there.

if you want more than one wall, then paste the code twice but make sure there is only one } inbetween seperate codes. also make sure that two walls don't have the same instance name, you need more codes for more walls!
heres an example:
________________________
if(this.hitTest(_root.wall)){
_root.gotoAndStop(6);
}
if(this.hitTest(_root.wall2)){
_root.gotoAndStop(6);
}
if(this.hitTest(_root.wall3)){
_root.gotoAndStop(6);
}
}
etc....

there you go

👍: 0 ⏩: 3

ZEGMAN In reply to ZEGMAN [2008-08-08 00:02:41 +0000 UTC]

[link]

👍: 0 ⏩: 0

Gallex In reply to ZEGMAN [2008-06-23 16:23:40 +0000 UTC]

Hit Test is annoying.

👍: 0 ⏩: 0

Gallex In reply to ZEGMAN [2008-06-09 15:00:03 +0000 UTC]

haha, crazy script.
Where did you find all this?

👍: 0 ⏩: 1

ZEGMAN In reply to Gallex [2008-06-09 17:59:39 +0000 UTC]

helped me

👍: 0 ⏩: 0

Yassiej [2008-06-03 01:43:54 +0000 UTC]

Awesome xD
Can't get through that level where those green bubbly things are moving xD .. (I think it's level 4) xP

👍: 0 ⏩: 1

Fotus9 In reply to Yassiej [2008-06-03 07:28:09 +0000 UTC]

That one? Level four??? I got to level nine! And nine is kinda easy, but I looked to the TV and when I saw I lost. Damn.

👍: 0 ⏩: 2

ZEGMAN In reply to Fotus9 [2008-06-03 18:05:29 +0000 UTC]

LOLOLOL

👍: 0 ⏩: 1

Fotus9 In reply to ZEGMAN [2008-06-04 12:59:45 +0000 UTC]

yeah...

👍: 0 ⏩: 0

Yassiej In reply to Fotus9 [2008-06-03 13:56:09 +0000 UTC]

Lulzz

👍: 0 ⏩: 1

ZEGMAN In reply to Yassiej [2008-06-03 18:05:42 +0000 UTC]

lul indeed

👍: 0 ⏩: 0

quirkyblonde [2008-06-02 21:48:08 +0000 UTC]

I got to level 6...then I died....addictive thought! It might be better if you made the green part black...also there's a few spots that can use a bit of filling in.

👍: 0 ⏩: 0

ThE-maD-STRawbErRy In reply to ??? [2008-06-02 20:46:56 +0000 UTC]

still level ten... I'll try again later. I have FINALS this week and AP Computer Science 2AB is tomorrow. meh... I'm gonna die. xP

👍: 0 ⏩: 1

ZEGMAN In reply to ThE-maD-STRawbErRy [2008-06-02 20:47:31 +0000 UTC]

i also have exams ...well next week

👍: 0 ⏩: 1

ThE-maD-STRawbErRy In reply to ZEGMAN [2008-06-02 20:50:16 +0000 UTC]

I'll be a senior soon! Yay... ;( Too bad they took away all the cool stuff that usually comes with it (exam exemptions, student aid, maybe senior lunch off campus, senior out period... you get the idea.)

👍: 0 ⏩: 1

ZEGMAN In reply to ThE-maD-STRawbErRy [2008-06-02 20:50:57 +0000 UTC]

yah.

👍: 0 ⏩: 0

ThE-maD-STRawbErRy In reply to ??? [2008-06-02 20:36:04 +0000 UTC]

I got... to level ten. And... hmmm... I wonder. Flash flash flash? lol

👍: 0 ⏩: 1

ZEGMAN In reply to ThE-maD-STRawbErRy [2008-06-02 20:42:09 +0000 UTC]

good job! i beat it LOL you know?

👍: 0 ⏩: 1

ThE-maD-STRawbErRy In reply to ZEGMAN [2008-06-02 20:44:33 +0000 UTC]

Gee, I wonder HOW you beat it? -_-'

👍: 0 ⏩: 1

ZEGMAN In reply to ThE-maD-STRawbErRy [2008-06-02 20:45:17 +0000 UTC]

cuz i made it!! LOLOLOL whats your record?

👍: 0 ⏩: 0

pandaliciously [2008-06-02 20:31:55 +0000 UTC]

I started to play it. And once I saw it was all rainbow-y as a bg, I quit. It's really annoying. And painful to my eyes.
There are a lot of games like this. But what really makes it hard is when you use a mouse instead of the arrow keys.

👍: 0 ⏩: 1

ZEGMAN In reply to pandaliciously [2008-06-02 20:35:53 +0000 UTC]

sorry for that i can upload one in my scraps without the backround and give you the link if you want

👍: 0 ⏩: 1

pandaliciously In reply to ZEGMAN [2008-06-02 20:54:54 +0000 UTC]

Lol. Nah, it's okay. xDDD

They I'll get hooked to finish it. And I have other things to worry about! xDDD

👍: 0 ⏩: 1

ZEGMAN In reply to pandaliciously [2008-06-02 20:57:39 +0000 UTC]

LOL
K.

👍: 0 ⏩: 0

wolverinegurl In reply to ??? [2008-06-02 20:31:16 +0000 UTC]

its fun but hard i only got to level 4 grr

👍: 0 ⏩: 1


| Next =>