Ok this is my 2nd game looks pretty good to me. I will make more levels upon request just send me a shout or whisper with your ideas. Please click my adds lol!
DONT tell me ooo this and that and the other thing is wrong with it tell me whats wrong and how to fix it send me a shout or whisper if you need more info to tell me how to fix it
My first game i need a little help making a title screen where like you click a button to start the game and to fix the bugs my action script is
nClipEvent (load) {
yspeed = 0;
xspeed = 0;
wind = 0.00;
power = 0.65;
gravity = 0.1;
upconstant = 0.75;
friction = 0.99;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT)) {
xspeed = xspeed-power;
}
if (Key.isDown(Key.RIGHT)) {
xspeed = xspeed+power;
}
if (Key.isDown(Key.UP)) {
yspeed = yspeed-power*upconstant;
}
if (Key.isDown(Key.DOWN)) {
yspeed = yspeed+power*upconstant;
}
xspeed = (xspeed+wind)*friction;
yspeed = yspeed+gravity;
_y = _y+yspeed;
_x = _x+xspeed;
if (_root.wall.hitTest(_x, _y, true)) {
xspeed = 0;
yspeed = 0;
_x = 120;
_y = 120;
}
if (_root.coin.hitTest(_x, _y, true)) {
_root.coin._x = Math.random()*400+50;
}
}
overall if this is one of your beginning work its a very good test. make it into a full game and i think it might be a better game. I would help design levels but i first need to learn too lol= ) if you could help me i would love to learn and help you out.