00:00
00:00
Newgrounds Background Image Theme

KI1 just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

Reviews for "Simple Game Tutorial"

Thanks for creating a great tutorial!!!

I finnaly can create games! but what should i do to make more options on the right click? please, answer

The coding is right but none of it is explained

There is no point having a tutorial for actionscript if you don't explain the script itself otherwise noobs wont gain anything from this. Those who understand the coding with out your explanation don't need this tute. Those who would see this tute are people who don't know actionscript and are hoping you will explain some. Nothing personal and i don't like giving low scores but "copy this and past it here" does not teach anything

helped me out sooo much

thanks

where did you get the music, its great

i want it...:D

kingcarlo responds:

I got it from the audio portal. u can see its by Darkstalker-X on teh side, so if you want it, just search him on the audio portal and his music will be there:) thanks for the good grade.

This tutorial is ok.

Well im a expert at making flash games and this tutorial wouldnt help me one bit it doesnt explain any of the actions and what they do most likely you got it from another site and but all the bits togeather. And some of the script has bits it doesnt need heres the shortend platform game script:

onClipEvent (enterFrame) {
moveSpeed = 10;
if (Key.isDown(Key.RIGHT)) {
this._x += moveSpeed;
}
else if (Key.isDown(Key.LEFT)) {
this._x -= moveSpeed;
}
if (Key.isDown(Key.SPACE) && !jumping) {
vel_y = 36;
jumping = true;
}
if (jumping == true) {
vel_y -= 2;
if (vel_y<=-15) {
vel_y = -15;
}
this._y -= vel_y;
}
if (_root.ground.hitTest(this._x, this._y+35, true)) {
vel_y = 0;
jumping = false;
}
this._y += 16;
if (_root.ground.hitTest(this._x, this._y+1, true)) {
this._y -= 16;
}
}

And the shooting one sucks as well each time you fire it cancels the first shot out learn some better coding.

This tutorial has only info for newbies to compy and past code to make a game that the cant understand and dont know what to edit.

kingcarlo responds:

Well hey, this tutorial doesnt say "For Experts only". I made this tutorial so that people could get some good actionscript for their games, and learn a little bit during this. Just because you are such a "master" of flash, doesnt mean you have to come in hear and give it a bad grade because it wont help you. I'm sure there are some people who need help with a game, and that would like to use this tutorial.

well done

well done. i am a tutorial maker myself so i know how it is a bit hard to put in all of the different frames, buttons, actions, teach them, maybe even teach yourself, and put in nice graphics, so well done, you covered a broad amount of topics, except the graphics werent the best, you should work a little more on that. otherwise it was a great tutorial with good topics, well done.