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)
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)