ForumsProgramming ForumSuggestion for making a simple point and click. 'almost no actionscript required'

23 7921
JustScott
offline
JustScott
96 posts
Nomad

if you really really don't understand action script and don't want to do much of it but make a point and click game, and your willing to put the time into making a game, the only suggestion of a game i can suggest which i have made.... though it is not on armor games cause i cbf putting loading screen onto it lol....
is to make a game thats only requires 2 action scripts one being:
stop();
just stop the frame and the other being

which just goes to the frame/scence you set it to and will play the movie. then you just set up buttons and your what happens for instance say theres a button saying run away, its just shown this big guy trying to attack you and you make it stop and then have 2 buttons 1 saying 'Do Nothing' and the other saying 'Run Away' then you just make 2 different movies for each choice of what happens and there you go you can make a survival game just off.... i did if you would like to see mine just send me and email add me on msn or something i don't mind i will normally respond

  • 23 Replies
singid25
offline
singid25
1,262 posts
Nomad

I plan to make a zombie game like this, so thank you for the brief explanation. I'll favorite this now.

Darkroot
offline
Darkroot
2,763 posts
Peasant

JustScott I would recomend learning more actionscript instead of making a button game you aready did that and you proved to yourself you are capable of making something in flash. Now you should expand your boundaries and maybe make a simple platformer using event listners

Here is an sample keyboard input for movement bear with me I did this in my head the in keycodes are memorizes so I hope they are right

public function keyDownFunction(event:KeyboardEvent) {

Darkroot
offline
Darkroot
2,763 posts
Peasant

ops pressed enter
sor for double post anyway

if (gameMode != &quotlay&quot return;

if (event.keyCode == 37) {
youmovieclip.moveLeft == true;
} else if (event.keyCode == 39) {
youmovieclip.moveRight == true;
} else if (event.keyCode == 32) {
if (!youmovieclip.inAir) {
youmovieclip.jump = true;
}
}
}
public function keyUpfunction (event:KeyboardEvent) {
if (event.keyCode == 37) {
youmovieclip.moveleft = false;
} else if (event.keyCode == 39) {
youmovieclip.moveRight = false;
}
}

this is just an example but requires more code I encourage you to try to make something more than a button game.

JustScott
offline
JustScott
96 posts
Nomad

good to kno i got encouragement .. ill give it short just for U!

7432200
offline
7432200
134 posts
Nomad

The only games you can make with that are s***

JustScott
offline
JustScott
96 posts
Nomad

thx for saying my game is terrible...

jkmadman1
offline
jkmadman1
1,066 posts
Nomad

That was pretty retarded.

JustScott
offline
JustScott
96 posts
Nomad

YES but retarded in a fun way

Showing 16-23 of 23