[COLOR=#000000][FONT=verdana]Hi,[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]I have a project due in 2 days and I’m getting really worried because of the sheer amount of work it seems I have to do. Things in my game aren’t working and I can’t seem to see why. I would really appreciate any help and assistance anyone could provide. First off, I’d love to upload the .fla to show you all but it’s over 80mb. The guy who did the art for me (it’s his first time doing art for games) made all his images huge and imported them into flash, then made them into movie clips and resized them in the flash environment. It’s caused the filesize to be massive and I just don’t have time to resize them all as I have the code to work on and make right. But I’ll provide the full code below if anyone wants to test anything. Just create boxes as place holders and set up linkage etc.[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]Now, onto my issues. I have used attachMovie to create fireballs that eminate from my dragon character’s mouth. Problem is, I’m trying to use removeMovieClip to get rid of the fireballs once they’ve hit my turret enemy. They are registering as having hit the turret but not removing themselves. Also, I have them set up to remove themselves when they exit the boundaries of the stage, but it appears that only the first in a line of fireballs is doing so. How do I make it so that all the fireballs that hit the turret and exit the stage remove themselves?[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]I did try a point collision hitTest, which has been commented out and marked FIX in the code as it also didn’t work. It would prevent the dragon from firing until all the fireballs were no longer hitTesting the turret. I used it because it’s slightly more ideal and pixel perfect but I’m happy to use a standard hitTest to get the job done for now.[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]Below is the code on my dragon character, I know it’s messy and unrefined but I haven’t had a lot of time and I’m just hoping to get it working for now. I will clean it up at a later date. Please, if anyone could help it would go a long way towards getting this done by Wednesday:
[/FONT][/COLOR][LEFT]
[COLOR=#993300][FONT=monospace]onClipEvent[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#993300][FONT=monospace]load[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]{
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] gravity = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]3[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] ySpeed = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]0[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] flyState = [/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"diving"[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] spaceState = [/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"up"[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] xDist;
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] yDist;
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] radians;
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] degrees;
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] tempClip;
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]swapDepths[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]1000000[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] flameArray = [/FONT][/COLOR][COLOR=#993300][FONT=monospace]new[/FONT][/COLOR][COLOR=#993300][FONT=monospace]Array[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] count = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]0[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] continuousFire = [/FONT][/COLOR][COLOR=#993300][FONT=monospace]false[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] fireNum = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]0[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] D_width = [/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_width[/FONT][/COLOR][COLOR=#000000][FONT=monospace] / [/FONT][/COLOR][COLOR=#000000][FONT=monospace]2[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] headHalfWidth = [/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]head[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_width[/FONT][/COLOR][COLOR=#000000][FONT=monospace] / [/FONT][/COLOR][COLOR=#000000][FONT=monospace]2[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] health = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]100[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] recharge = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]0[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]15[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] var[/FONT][/COLOR][COLOR=#000000][FONT=monospace] fireDamage = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]10[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]}
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]
onClipEvent[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]enterFrame[/FONT][/COLOR][COLOR=#000000][FONT=monospace])
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]{[/FONT][/COLOR][COLOR=#000000][FONT=monospace]
fireDamage = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]10[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
health += recharge;
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]
if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]health > [/FONT][/COLOR][COLOR=#000000][FONT=monospace]99[/FONT][/COLOR][COLOR=#000000][FONT=monospace])
[/FONT][/COLOR][COLOR=#000000][FONT=monospace] {[/FONT][/COLOR][COLOR=#000000][FONT=monospace]
health = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]100[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#000000][FONT=monospace] }
[/FONT][/COLOR][COLOR=#F000F0][FONT=monospace]* //Flight Control
*[/FONT][/COLOR][COLOR=#993300][FONT=monospace] this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_y[/FONT][/COLOR][COLOR=#000000][FONT=monospace] += gravity;
[/FONT][/COLOR][COLOR=#993300][FONT=monospace] this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_y[/FONT][/COLOR][COLOR=#000000][FONT=monospace] -= ySpeed;
ySpeed *= [/FONT][/COLOR][COLOR=#000000][FONT=monospace]0[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]9[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#993300][FONT=monospace]Key[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]isDown[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#993300][FONT=monospace]Key[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]SPACE[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace] && flyState == [/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"diving"[/FONT][/COLOR][COLOR=#000000][FONT=monospace])
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]{
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]spaceState == [/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"up"[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]{[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]ySpeed = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]10[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]play[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[FONT=monospace][COLOR=#000000]flyState = [/COLOR][/FONT][COLOR=#0000FF][FONT=monospace]"flap"[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]spaceState = [/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"down"[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]![/FONT][/COLOR][COLOR=#993300][FONT=monospace]Key[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]isDown[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#993300][FONT=monospace]Key[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]SPACE[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace])
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]{[/FONT][/COLOR][COLOR=#000000][FONT=monospace]
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]spaceState = [/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"up"[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]flyState == [/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"flap"[/FONT][/COLOR][COLOR=#000000][FONT=monospace])
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]{
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_currentframe[/FONT][/COLOR][COLOR=#000000][FONT=monospace] == [/FONT][/COLOR][COLOR=#000000][FONT=monospace]10[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]{[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]flyState = [/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"diving"[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]gotoAndStop[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]1[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]health > [/FONT][/COLOR][COLOR=#000000][FONT=monospace]70[/FONT][/COLOR][COLOR=#000000][FONT=monospace])
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]{
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]creepingDeath[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_alpha[/FONT][/COLOR][COLOR=#000000][FONT=monospace] = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]0[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]else [/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]health < [/FONT][/COLOR][COLOR=#000000][FONT=monospace]71[/FONT][/COLOR][COLOR=#000000][FONT=monospace] && health > [/FONT][/COLOR][COLOR=#000000][FONT=monospace]50[/FONT][/COLOR][COLOR=#000000][FONT=monospace])
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]{
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]creepingDeath[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_alpha[/FONT][/COLOR][COLOR=#000000][FONT=monospace] = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]100[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]creepingDeath[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]gotoAndStop[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]1[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]else [/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]health < [/FONT][/COLOR][COLOR=#000000][FONT=monospace]51[/FONT][/COLOR][COLOR=#000000][FONT=monospace] && health > [/FONT][/COLOR][COLOR=#000000][FONT=monospace]30[/FONT][/COLOR][COLOR=#000000][FONT=monospace])
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]{
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]creepingDeath[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]gotoAndStop[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]2[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]else [/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]health < [/FONT][/COLOR][COLOR=#000000][FONT=monospace]31[/FONT][/COLOR][COLOR=#000000][FONT=monospace] && health > [/FONT][/COLOR][COLOR=#000000][FONT=monospace]0[/FONT][/COLOR][COLOR=#000000][FONT=monospace])
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]{
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]creepingDeath[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]gotoAndStop[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]3[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]else [/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]health <= [/FONT][/COLOR][COLOR=#000000][FONT=monospace]0[/FONT][/COLOR][COLOR=#000000][FONT=monospace])
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]{[/FONT][/COLOR][COLOR=#000000][FONT=monospace]
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]health = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]0[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]recharge = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]0[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]gotoAndPlay[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]3[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]continuousFire == [/FONT][/COLOR][COLOR=#993300][FONT=monospace]true[/FONT][/COLOR][COLOR=#000000][FONT=monospace])
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]{[/FONT][/COLOR][COLOR=#000000][FONT=monospace]
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]fireNum++;[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]tempClip = [/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]attachMovie[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"Fire"[/FONT][/COLOR][COLOR=#000000][FONT=monospace], [/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"Fire"[/FONT][/COLOR][COLOR=#000000][FONT=monospace] + fireNum, count);
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]tempClip.[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_x[/FONT][/COLOR][COLOR=#000000][FONT=monospace] = [/FONT][/COLOR][COLOR=#000000][FONT=monospace]0[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]tempClip.[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_y[/FONT][/COLOR][COLOR=#000000][FONT=monospace] = -[/FONT][/COLOR][COLOR=#000000][FONT=monospace]100[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]flameArray.[/FONT][/COLOR][COLOR=#993300][FONT=monospace]push[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]tempClip[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]count++;[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]tempClip.[/FONT][/COLOR][COLOR=#000000][FONT=monospace]fireState[/FONT][/COLOR][COLOR=#000000][FONT=monospace] = [/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"aim"[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]tempClip.[/FONT][/COLOR][COLOR=#000000][FONT=monospace]D_radians2[/FONT][/COLOR][COLOR=#000000][FONT=monospace] = [/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_rotation[/FONT][/COLOR][COLOR=#000000][FONT=monospace] * [/FONT][/COLOR][COLOR=#993300][FONT=monospace]Math[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]PI[/FONT][/COLOR][COLOR=#000000][FONT=monospace] / [/FONT][/COLOR][COLOR=#000000][FONT=monospace]180[/FONT][/COLOR][COLOR=#000000][FONT=monospace]; [/FONT][/COLOR]
[COLOR=#000000]
[/COLOR][COLOR=#000000][FONT=monospace]tempClip.[/FONT][/COLOR][COLOR=#993300][FONT=monospace]onEnterFrame[/FONT][/COLOR][COLOR=#000000][FONT=monospace] = [/FONT][/COLOR][COLOR=#993300][FONT=monospace]function[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]{[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]fireState[/FONT][/COLOR][COLOR=#000000][FONT=monospace] == [/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"aim"[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]{[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_rotation[/FONT][/COLOR][COLOR=#000000][FONT=monospace] = [/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]dragon[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]head[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_rotation[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_x[/FONT][/COLOR][COLOR=#000000][FONT=monospace] = [/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]dragon[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_x[/FONT][/COLOR][COLOR=#000000][FONT=monospace] + [/FONT][/COLOR][COLOR=#000000][FONT=monospace]10[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_y[/FONT][/COLOR][COLOR=#000000][FONT=monospace] = [/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]dragon[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_y[/FONT][/COLOR][COLOR=#000000][FONT=monospace] + [/FONT][/COLOR][COLOR=#000000][FONT=monospace]10[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
*//this._x = _root.dragon._x + (Math.cos(radians) * D_width) + headWidth;*
*//this._y = _root.dragon._y + (Math.sin(radians) * D_width) + headWidth;*
[COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]D_radians2[/FONT][/COLOR][COLOR=#000000][FONT=monospace] = [/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_rotation[/FONT][/COLOR][COLOR=#000000][FONT=monospace] * [/FONT][/COLOR][COLOR=#993300][FONT=monospace]Math[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]PI[/FONT][/COLOR][COLOR=#000000][FONT=monospace] / [/FONT][/COLOR][COLOR=#000000][FONT=monospace]180[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_x[/FONT][/COLOR][COLOR=#000000][FONT=monospace] += [/FONT][/COLOR][COLOR=#993300][FONT=monospace]Math[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]cos[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]D_radians2[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace] * [/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]dragon[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]head[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_width[/FONT][/COLOR][COLOR=#000000][FONT=monospace]/[/FONT][/COLOR][COLOR=#000000][FONT=monospace]2[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_y[/FONT][/COLOR][COLOR=#000000][FONT=monospace] += [/FONT][/COLOR][COLOR=#993300][FONT=monospace]Math[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]sin[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]D_radians2[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace] * [/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]dragon[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]head[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_width[/FONT][/COLOR][COLOR=#000000][FONT=monospace]/[/FONT][/COLOR][COLOR=#000000][FONT=monospace]2[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]fireState[/FONT][/COLOR][COLOR=#000000][FONT=monospace] = [/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"fire"[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]tempClip.[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_x[/FONT][/COLOR][COLOR=#000000][FONT=monospace] > [/FONT][/COLOR][COLOR=#000000][FONT=monospace]750[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]{[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]removeMovieClip[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]tempClip + i[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
*//trace('destroyed flame');*
[COLOR=#000000][FONT=monospace]}[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]tempClip + i.[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_y[/FONT][/COLOR][COLOR=#000000][FONT=monospace] > [/FONT][/COLOR][COLOR=#000000][FONT=monospace]400[/FONT][/COLOR][COLOR=#000000][FONT=monospace] || tempClip + i.[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_y[/FONT][/COLOR][COLOR=#000000][FONT=monospace] < [/FONT][/COLOR][COLOR=#000000][FONT=monospace]0[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]{[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]removeMovieClip[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]tempClip + i[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#F000F0][FONT=monospace]*//trace('destroyed flame');
*[/FONT][/COLOR][COLOR=#000000][FONT=monospace]}
[/FONT][/COLOR]
*//***FIX***removes clips and doesn't allow firing until hitTest is false for all flames*
*//if(_root.turretMedium.hitTest(this._x, this._y, true))*
*//{*
*//_root.turretMedium.health -= 5;*
*//removeMovieClip(tempClip);*
*//}*
[COLOR=#993300][FONT=monospace]
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]fireState[/FONT][/COLOR][COLOR=#000000][FONT=monospace] == [/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]"fire"[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]{[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_x[/FONT][/COLOR][COLOR=#000000][FONT=monospace] += [/FONT][/COLOR][COLOR=#993300][FONT=monospace]Math[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]cos[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]D_radians2[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace] * [/FONT][/COLOR][COLOR=#000000][FONT=monospace]10[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_y[/FONT][/COLOR][COLOR=#000000][FONT=monospace] += [/FONT][/COLOR][COLOR=#993300][FONT=monospace]Math[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]sin[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]D_radians2[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace] * [/FONT][/COLOR][COLOR=#000000][FONT=monospace]10[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]if[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#993300][FONT=monospace]this[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]hitTest[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]turretMedium[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_x[/FONT][/COLOR][COLOR=#000000][FONT=monospace], [/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]turretMedium[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_y[/FONT][/COLOR][COLOR=#000000][FONT=monospace], [/FONT][/COLOR][COLOR=#993300][FONT=monospace]true[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]{[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]trace[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#0000FF][FONT=monospace]'hit'[/FONT][/COLOR][COLOR=#000000][FONT=monospace]);[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]removeMovieClip[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]tempClip + i[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]turretMedium[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]health[/FONT][/COLOR][COLOR=#000000][FONT=monospace] -= fireDamage;[/FONT][/COLOR]
[FONT=monospace][COLOR=#000000]fireDamage = [/COLOR][/FONT][COLOR=#000000][FONT=monospace]0[/FONT][/COLOR][COLOR=#000000][FONT=monospace];[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}[/FONT][/COLOR]
[COLOR=#000000][FONT=monospace]}
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]onClipEvent[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]mouseDown[/FONT][/COLOR][COLOR=#000000][FONT=monospace])
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]{[/FONT][/COLOR][COLOR=#000000][FONT=monospace]
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]continuousFire = [/FONT][/COLOR][COLOR=#993300][FONT=monospace]true[/FONT][/COLOR][COLOR=#000000][FONT=monospace]; [/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]dragon[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]head[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]gotoAndStop[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]2[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]}
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]
onClipEvent[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]mouseUp[/FONT][/COLOR][COLOR=#000000][FONT=monospace])
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]{[/FONT][/COLOR][COLOR=#000000][FONT=monospace]
[/FONT][/COLOR][COLOR=#000000][FONT=monospace]continuousFire = [/FONT][/COLOR][COLOR=#993300][FONT=monospace]false[/FONT][/COLOR][COLOR=#000000][FONT=monospace];
[/FONT][/COLOR][COLOR=#993300][FONT=monospace]_root[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]dragon[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#000000][FONT=monospace]head[/FONT][/COLOR][COLOR=#000000][FONT=monospace].[/FONT][/COLOR][COLOR=#993300][FONT=monospace]gotoAndStop[/FONT][/COLOR][COLOR=#000000][FONT=monospace]([/FONT][/COLOR][COLOR=#000000][FONT=monospace]1[/FONT][/COLOR][COLOR=#000000][FONT=monospace])[/FONT][/COLOR][FONT=monospace][COLOR=#000000];
[/COLOR][/FONT][COLOR=#000000][FONT=monospace]}[/FONT][/COLOR]
[FONT=monospace][COLOR=#993300]
[/COLOR][/FONT][/LEFT]
[COLOR=#000000][FONT=verdana]
[/FONT][/COLOR][COLOR=#000000][FONT=verdana]Thank you in advance and please, please if anyone can help me fix this, do. I really need the grades [/FONT][/COLOR]
(P.S. Sorry for the formatting of the code, this site doesn’t seem to like maintaining the formatting Flash uses)