00:00
00:00
egg82

15 Game Reviews w/ Response

All 37 Reviews

0/10 not actually a maze.

This fits into category 1: Baby's first game.
This is terrible and shouldn't be on NG, but don't get discouraged and continue game development.

orion1220 responds:

If you get far enough it is a maze.Thanks for showing up

Looking at this Flash in the list I thought to myself, "this is going to be another Flash IDE AS2 tutorial, isn't it?"
lo and behold, the first frame in and I was not disappointed.

Please, guys, don't make tutorials like these. The Flash IDE is an animation IDE made for animators. Not programmers. Animators.
It's the whole "right tool for the right job" thing, and you seem to have missed the boat on some great free software like FlashDevelop. Please learn AS3 and how to code correctly using Object-Oriented-Programming (inheritance) - you will find that your projects become much better and much more organized over time.

ZhaoAS2 responds:

See you next time.

Apologies for the short, shallow review but I did want to mention a couple things and I just didn't find myself interested enough to keep playing.

First, your movement is broken. I remember a review that said this earlier, but I wanted to tell you exactly why it's broken and how to fix it. The review said you snap back into place after pressing the key for a short period of time, and you responded saying it's a design choice because some colleagues of yours found out they sometimes moved accidentally. The problem isn't that they moved accidentally, then problem is when they moved accidentally it was more of a pain to get back to where they were before. That indicates the movement is simply too slow, which is an easy fix.

When you see a problem or when someone tells you there's a problem, don't fix that directly because usually that means there's a deeper underlying cause and your fix won't do anything except waste your time.

Next, I don't believe this has any replay value. You play it once, find the king, and then you close out and never come back to it again. I would suggest randomizing the king's position or the map some to give it replay value. Then add a high-score table so the player is aware there's replay value and can challenge their friends.

Finally, the graphic style is interesting but lacks color or definition. I understand the art style you were going for, and i'm being a bit nitpicky now, but for me it would have been nice if the graphics had something else with them.

A thought-out game meets an okay mechanic and is implemented "meh"-ly - all-in-all not bad but not something i'd spend a lot of my time on.

7moore7 responds:

Updated the game. I fixed the movement issues. And the game has always randomly generated where the King spawns in every one of the FOUR (4) worlds. The graphic style is exactly what I was going for, and I am quite sure that most people will not be a fan of what they see - but this isn't a game meant to make every single person happy or designed to bring in millions of dollars in revenue. It is simple. Very simple. The gameplay, the graphics, and the music (which some players are still not hearing, and for the life of me I can't figure out why). And this is a game that practically begs for a scoreboard or similar system, but in sticking with my Where's Waldo theme, there are no scoreboards when you look for Waldo. Thank you for taking the time to put your thoughts down in words. Especially thank you for having something more intelligent and constructive than, "This game sux" or "Great game."

Short review, sorry.

The graphics were great for a Flash game, though the music needs work.
The concept is nice, a good twist on an old genera. Gathering resources yourself is a plus.
The issues pointed out in the description are present, as well as there only seeming to be one level and one tower placement available. Also the blockade structures aren't placeable again after they're torn down.
I was having some fun up until I realized I had run out of resources and was eventually going to slowly die.

That said, it's obviously incomplete and shouldn't have passed judgement. Feedback is great, but incomplete games shouldering in with the complete ones are not.

WashAshore responds:

Thank you egg82 for your honest review. I hope to add updates soon to make Invasion Force feel more playable and complete.

Please don't put "my first game"s on NG or really anywhere on the internet for everyone to see.

First, don't use the Flash IDE to code. It's an animation IDE, not a code IDE.
Framrate's locked at 24 FPS (which is bad in and of itself) - but it makes the controls that much more floaty and hard to control.
Hitboxes are way off, use pixel-perfect collision detection rather than bounding boxes.
Most people use WASD, which a lot of Flash programmers fail to understand for some reason. Allow rebindable keys to solve all of the issues present with keyboard layouts and the like.
Don't use password systems, they're awful.
The graphics aren't great. At all. There's also no animation whatsoever, though that's helped by the fast that we seem to controlling a ball (there's a pattern to most of these Flash game I play, isn't there?)
Music and sound are great, then I don't have to listen to emptiness.
More visual/audio feedback is always good when you collect rewards. Something that makes you feel good instead of just... Nothing.
Space key is commonly used as a jump key, not an interact key. Tutorials or even intuitive controls would help.
The end is... Well, yeah.

AmyJoy2213 responds:

Thanks for your feedback. Your tips were very helpful. I just wanted to post my first attempt so my sister could play it. Sorry! I will take your constructive criticism and use it in the future. Hopefully one day I'll create an interesting and fun game for everyone to play. Thanks again! :)

Most of my issues with this game are bugs or things that weren't able to be fixed because of the time limit of the jam. I'll skip those as much as possible and focus on the actual mechanics of the game.

This is what seems to be a standard platformer, but with a few gimmicks to it to keep it interesting. Now, I say "gimmick" and you think: "oh, yay" - but that's what most games are these days; a standard something-or-other with a few (or a lot of) gimmicks thrown in to keep it interesting. Don't judge a game based on how many gimmicks it throws in, because that's 99% of games. It depends on how WELL each of them are executed.

So, here's what we've got:
An isometric view. Yes, this is a platformer. So, how in the world does an isometric view fit in a patformer? Well, this introduces another gimmick: invisible things.
Let's start at the base; the platforming. You would think you simply use wasd or the arrow keys to run and jump to different platforms, but instead this game is mouse-driven. You hold the left mouse button to move around, and later fly for a short amount of time. The question is: is this implemented well? The short answer is no. The problem is the mouse needs to be in a specific position in order to do certain things, and moving from platform to platform (especially along the y-axis) is made much more difficult by this. Is there a good way to do something like this? Maybe, but it'd be very difficult. So, I wouldn't say "oh, this is so easy to do and you're an idiot for not getting it right" because it's not. E for effort, really.
The platforming itself is also off, which contributes to the feel of clunkyness with the game. Moving along a single platform is fine, but when you're required to jump or move from one platform to another in any way, it proves difficult to do. Moving down is near-impossible unless you play tetris and are familiar with tricks like moving left or right just before the piece sets in. Moving up is impossible without the help of wings, which last a very short amount of time, and which may get shorter as the levels progress. This makes it difficult to move up. this leaves moving across, which again proves difficult when things are in your way.
Yes, there are invisible things. This is a pretty widely-used gimmick in platformers, you shouldn't be terribly surprised. How do you see invisible things, you may ask? Well, in some platformers, you don't. In this one, you can. Kinda. They are revealed with the help of a torch and the isometric view, which is revealed after pressing a button to hide your inventory. The big problem I have with this is that the only reason the isometric view is there is to solve some arbitrary problem the developer decided to create because why not? It works. Not well, but it's functional. The problem is, after the euphoric feeling of "oh, this is cool" this gives the game an even clunkier feel, especially combined with the time limit (which doubles as your health) - time limits don't work with clunky mechanics. It just incites frustration.
So, already somewhat-frustrated by the mechanics, I get another gimmick. The level-down system. This is a really cool mechanic, but it relies heavily on the rest of the game being good. Which it's not. The problem is, i'm being punished for completing the game. This is cool if I make big mistakes or perhaps if the rest of the game were compelling or really, really good, but as-is it just makes me want to... Not complete the game.
ie. close the window.

all-in-all, a few good ideas and idea combinations coming from this game for the jam (which is what the jam's all about, after all) - but not a good game in general. That's the problem with a lot of jams. The games that come out usually aren't very good because people experiment with a bunch of ideas. That's not the problem, here. the problem is the good ideas weren't executed well.

FlyingColours responds:

Thanks for the detailed review! It's greatly appreciated especially as I now know all the problems with the game. I'll be responding in my post-mortem news post. :P

well, it's good to see there are so many helpful reviews here!

pros: I loved the idea. The concept was original, it was basically a "build your own platformer" in game style. The graphics were spot-on, and the engine itself was good. Honestly, I couldn't see any bugs.

cons: The controls are off. Jumping and ducking should be grouped with the directional keys, and other keys should perform other functions (remember, a PC gamer's natural hand position is on w, a, s, d, shift, and space)
the game was too easy - the first time you die on a level is the last time you will die on that level.

Spudzy responds:

Not all games need 'up' as the jumping key. But thanks for the honest review. And yeah, I hope we actually start getting more helpful reviews coming in.

pros: I like the story concept, it was new and interesting. It also threw a few "memes" in to be funny
overall, a great game! I expect this to be one of the top game choices for the jam. Professionally done, yet still fun to play.

cons: The engine was a little buggy in places, and it screwed with the controls a bit.
Also, try not to use current "memes" as they wear off after a while and become old and boring. Don't be afraid to come up with something new!
Also: Though it looks professional, be careful! A game that looks TOO professionally done will both have people criticizing the game much harsher, and will lose its "flavor" - its "indie-dev"-ness (i'm struggling for words at this point)

MintPaw responds:

Fffffffuuuuuuuuuuuu
Why you no leave 5 star review!

pros: It's nice to hear and see a bit of 8-bit every now and then :)
good job, you didn't make a platformer like pretty much everyone else xD

cons: There's somewhat of a disconnect between the story and the game - like the story was an afterthought. Be careful when adding stories, they need to both be equally there! One can't just simply carry the other.
The concept is refreshing for the Jam, but try some new ideas. Play around a bit, that concept is from the 90's ;)

TharosTheDragon responds:

I agree with you. The story is slapped on. It was the last thing we added.

pros: I liked the music and the style. The overall feel was good, it looked and felt like you guys had fun with it. The player knows if you did or didn't. It shows! ;)
the story was unique and interesting. I liked it, it made me laugh xD

cons: the concept is very old worn-out, and it felt more like a mini-game rather than a full game. Try adding to it!

VioletVulpine responds:

K, Thanks.

I'm me. I is me. Me is also me. You are you. So really, it's mostly about me. Questions?

Age 31, Male

Occupational Hazard

of Rock

Everywhere

Joined on 6/24/06

Level:
5
Exp Points:
220 / 280
Exp Rank:
> 100,000
Vote Power:
4.28 votes
Rank:
Civilian
Global Rank:
74,251
Blams:
27
Saves:
61
B/P Bonus:
0%
Whistle:
Normal
Medals:
297
Supporter:
3y