So I was thinking about making a game for the arcade sort of like Wario Ware or Four Second Fire Storm but I need some ideas for mini games! Just give me anything as long as its fun.
There's a cow. And it's travelling down a steep hill. And it has plungers tied to its legs. And a UFO is coming after him. And you have to press (or release) Z, X, C, and V repeatedly in the correct order fast enough to make each of his legs move so he can escape. And each time you play the game, the order is different.
Well the idea is certainly not stupid, but I did change it quite a bit. Heres my first (unfinished) attempt but there is a bug I can't figure out how to fix. http://www.mediafire.com/?jmdjn1fwznn
No its not for the compotition but didn't it end though? Oh and the bug is if two of the same arrow are next to eachother when you press the button it counts both of them.
I know the bug you mean, not that i have seen it in your game but i have gotten round it myself in the past. Instead of;
* Player presses left arrow
- add 1 to counter
Try changing it slightly with an extra line in the above, plus another event (below) to;
* Player presses left arrow
+ "Button counter" = 0
- add 1 to counter
- set "button counter" to 10
* "Button counter">0
- subtract 1 from "button counter"
You can alter the value of "button counter" to something longer if the bug still remains, or shorter if you want (though it would take Superman to press a button twice within a tenth of a second!)