Got any game tutorials?

Fellow flashers;

I’m just wondering if anyone has got any good game tutorials. Basicly for beginners.
But everything is Ok! If you got any good sites with these tut’s on, i’d be happy:D
(For those who didn’t understand: by game tutorials I mean tutorials for making games in flash)

Now take care! bye bye then!

you can find allot of tutorials for games in flash at Kirupa :slight_smile:

[U]introduction & creating a platform game:[/U]
http://www.kirupa.com/developer/actionscript/game_programming_1.htm
http://search.atomz.com/search/?sp-advanced=1&sp-q=paltform&B1=search&sp-a=00040c2f-sp00000000&sp-w-control=1;

in addition to that, making a game is just depends on your imagination with using flash . for Example , you can make a “Maze” game just by making a several frames and 3 Simple Buttons(that will be the Start,border & end) and linking them to a proper frame.
code for that:


stop(); //in the first Frame for stopping it.
 
on(rollOver){
gotoAndstop(N) // N - the frame number
}
//this will be on the border button and linked to a frame that will tell the user that he touched the border
 
on(press){
gotoAndstop(N) // N - the frame number
}
//this will be on the End&start buttons and will be linked to the frame with the "Maze"(Start) and to the frame that tells the user that he passed the "Maze"(End)

Hope i Helped… :slight_smile:
$tas

Yes thanks:)
I’ve actually made a maze game! :slight_smile:
And added some movieclips for “enemies”! :smiley: