Search tutorials
Placing the Terrain
If (Ord(item)=71)
Comment: 71 = "G" -- the gun
Set Variable: "name" = "gun"
Else
Set Variable: "name" = "t"&tnum
Here we assigned each item about to be duplicated its name. Since the gun is the only character that needs a special name (in this demo it does not...) the rest of the characters simply get a unique name.
End If If (Ord(item)<%lt%><%gt>48)
Since there is no movie clip called "0" I could just let the code run anyways and it would work. But the extra CPU time to run the code can be avoided here. So I do.
Comment: 48 = "0" (no terrain) -- no use wasting CPU power to set up nothing.
Comment: ----------------------------------------------
Comment: place terrain
Comment: ----------------------------------------------
Set Variable: "tnum" = tnum+1
If (tnum<%gt%>2999)
Set Variable: "tnum" = 2500
End If
| » Level Advanced |
|
Added: 2000-06-06 Rating: 7 Votes: 72 |
| » Author |
| Flashjunkie is a self-professed obsessive addict of life. Due to the highly artistic nature required of an Art Director for an Ad agency, he took up Flash to add some math to his diet. |
| » Download |
| Download the files used in this tutorial. |
| Download (78 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!