Internet Commerce

Partners & Affiliates














Developer Channel

internet.com


Tutorials Home What's New Top Rated Submit myTutes Random!

Search Tutorials


Tutorials Tutorials » Games

Categories Making a cool multi-level game
Author: Jesse

 
Page 1
1 2 3 4 5 6 7 8 9 10 next»

OK, first thing's first. In the Actions panel for the root timeline, type in the following code:

stop()
level = 0
levels = {}

That's pretty simple. It stops the movie(duh!) Then creates a variable called level which is equal to zero. Then, we make an object called levels, that will store all the levels. Now let's look at the levels!

levels.level1 = {baddys:5, baddySpeed:5, baddyPower:.25, powerUps:5, powerUpTypes:3, powerUpTimer:250}
levels.level2 = {baddys:10, baddySpeed:6, baddyPower:.5, powerUps:7, powerUpTypes:7, powerUpTimer:125}
levels.level3 = {baddys:10, baddySpeed:8, baddyPower:.75, powerUps:8, powerUpTypes:8, powerUpTimer:50}
levels.level4 = {baddys:12, baddySpeed:10, baddyPower:1, powerUps:5, powerUpTypes:8, powerUpTimer:25}

Look at each level. They all have variables called baddys, baddySpeed, baddyPower, powerUps, powerUpTypes, and powerUpTimer. This can be hard to understand, so i'll just explain it now. Baddys means how many bad guys are in the level. BaddySpeed is how fast they go. BaddyPower is how much energy you lose when you hit them. PowerUps is how many powerUps are in the level(things that let you do cooler things for a certain amount of time.) Then, PowerUpTypes is how many frames the powerUps are allowed to go to. And, PowerUpTimer is how long you can have a powerUp. Note that in a more complicated game, you should make a function that creates levels, or even a level editor. For instance, the function could be written like this:

function makeLevel(num, baddys, xArray, yArray, tArray){
 levels["level"+num] = {}
 levels["level"+num].baddys = baddys
 for(a=1; a<=baddys; ++a){
 levels["level"+num]["baddy"+a] = {}
 levels["level"+num]["baddy"+a].x = xArray[a-1]
 levels["level"+num]["baddy"+a].y = yArray[a-1]
 levels["level"+num]["baddy"+a].type = tArray[a-1]
 }
}
makeLevel(1, 5, [0, 100, 200, 300, 400], [0, 0, 0, 0, 0], [1, 2, 3, 5, 4])

As you can see, this would be a great way to make levels in a game faster, then create a function to load them(which would have to attach all the baddys to the screen according to their x and y positions in the array, and types) But we won't do that in this tutorial, because we create most of the positions and frames randomly. Now let's get back to the game!

1 2 3 4 5 6 7 8 9 10 next»

» Level Intermediate

Added: : 2004-12-18
Rating: 6.12 Votes: 18
Hits: 245
» Author
Just started working with flash and now i can't stop!
» Download
Download the files used in this tutorial.
Download (21 kb)
Get conversion and unzipping tools for PC and Mac here!

» Forums
More help? Search our boards for quick answers!

Please rate this tutorial, 10 is the top rating, you can also click the comments link to read/write a review.
10 9 8 7 6 5 4 3 2 1
Read or Post Comments
 
   
 


The Network for Technology Professionals

Search:

About Internet.com

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | E-mail Offers