ActionScript 2.0 :: Can't Get Character To Die When He Touches The Enemy

Oct 25, 2009

I added attack to my character in the game and he attacks and the enemy dissapears, the problem if I can't get my character to die when he touches the enemy. I got it to work once but what happened was that even if I hit the enemy, as soon as I hit it I got to the game over screen and got stuck on a loop between the gameover screen and the moment I defeat the monster.

View 2 Replies


Similar Posts:


ActionScript 2.0 :: Enemy Attack - Make The Enemy Pause When It Reaches The Character, Then Choose An Attack To Use?

Mar 18, 2006

I am currently making a game, similar to StreetFighter,where enemies will come on from the side and you fight them. Now i have the character movement and attacks fully scripted, and have made an enemy, and i make it move towards the character using:

onClipEvent(load){
movethy = 7;
scale = _xscale;[code].....

Now this works quite well and the enemy stops when it hits the character, but the problem is, it wont complete a full attack, instead it plays a few frames of the attack MC. Now i have every attack in a different MC (Frames 2-5) inside the Enemy MC. How can i make the enemy pause when it reaches the character, then choose an attack to use? From there i'll be on my way and can script the hittest and so forth.

View 2 Replies

ActionScript 2.0 :: Playing Sound When Character Touches Coin In Game?

Jul 5, 2011

I'm currently making a flash game and to insert sound. The sound effect has to play everytime the character touches the coin yet the coin still has to be able to unload. I never used sound before in flash.

View 1 Replies

ActionScript 3.0 :: Make It So When The Character Touches A Swirly Thing It Goes To Another Scene?

Jun 7, 2009

I'm making a game using Cs3, and As3, And I need a way to make it so when the character touches a swirly thing it goes to another scene...How do I do that?

View 3 Replies

ActionScript 2.0 :: Make A HitTest Script That Makes A Character That Touches A Few Spikes Teleports?

Nov 17, 2009

I am currently making a platformer game and I want to make a hitTest script that makes a character that touches a few spikes teleports to a position on the map.

[Code]...

View 0 Replies

Make An Enemy Bullet Go Towards The Main Character?

Oct 12, 2008

How would i make an enemy bullet go towards the main character?

View 7 Replies

ActionScript 3.0 :: Enemy Character To Fire A Bullet Every Second?

Jul 21, 2010

I am trying to program a game and I want the enemy character to fire a bullet every second, but instead he is firing an infinite amount of bullets right after the other. Here's the code with the timer:
 
if (k == 0){
var shootRight1 = new Timer(1000,1);
shootRight1.addEventListener(TimerEvent.TIMER_COMPLETE, enemy1shoot);
shootRight1.start();

[code]....

View 5 Replies

ActionScript 3.0 :: Way Of Removing Enemy Character Permanently

Jul 9, 2011

I am trying to remove an enemy after I kill them and I just started working with code in .as files. The enemy has it's own logic in a .as file and when I use removeChild, the movieclip is removed, but the logic continues to attack the main character (invisible).Is there a better way of removing the enemy character permanently. It kind of scares me that the method I use could just be leaving invisible movieclips on the screen as well.I've tried everything that I have used in previous games: removeChild(EnemyArray[i]);And this, which causes other problems with my code but removes the logic: EnemyArray[i] = null;But these still cause the problem.

View 4 Replies

Actionscript 3.0 :: Create A HitTestObject Function - When The Character Touches A Particle, The Particle Disappears?

Jan 12, 2010

I have a particle generator class and I want to create a hitTestObject function on another object to check for any collisions with the particles produced.I bascially have a character already on the stage called character_mc and I want to be able to collect the particles, that means when the character touches a particle, the particle disappears.

View 1 Replies

ActionScript 2.0 :: Movieclip - When It Hits The Enemy, It Goes To The Enemy's Second Frame?

May 31, 2004

i have one movieclip and i have another movieclip>enemy...okay so when the first movieclip goes over the enemy, nothing happens until i roll out! all i want to do is the movieclip, when it hits the enemy, it goes to the enemy's second frame and that's it ! there are no syntax error in this script, just something i want to do that apparently doesn't work right.here is my code:

Code:
onClipEvent (load) {
speed = 2;[code]...

View 14 Replies

ActionScript 2.0 :: If Hit The Enemy Ball (instance Name Is "enemy") It'll Disappear?

Mar 28, 2008

I have a ball (instance name is "ball") and if I hit the enemy ball (instance name is "enemy") it'll dissappear, and add 100 points. At the same time, I want them to multiply and get faster.The enemy has a follower code:

onClipEvent (enterFrame) {
if (_root.ball._x>_x) {
_x += 2;[code]....

And the ball has a code that is secret because if I give it to you it'll spoil the game idea.The dynamic text box has an instance of "points".I have my mute sound control done and the ball you control done.

View 2 Replies

Android :: Know Where The User Touches?

Mar 7, 2012

I'm trying to do that when the user touch (not click with mouse the program runs on androidthe code gets the (position of) touch x and y (like _xmouse but it dosen't work on ndroid)
How can I do it?

View 1 Replies

Flash :: Find Number Of Touches At A Point In Time?

Dec 7, 2010

I want to find out if the user is currently using more than one finger to draw on the screen.currently, the TouchEvent object doesn't have any property like touchCounts, which tells the number of touches on the screen. it just has a touchPointID, which helps to identify a particular touch.

do i need to handle this on my own ? for eg: in the TOUCH_BEGIN event handler i could see how many different unique touchPointID i have received and update the count myself.

View 1 Replies

ActionScript 2.0 :: HitTest - Object Touches Side Of Rectangle?

Oct 24, 2006

Just like the picture below, I only want the codes execute if the object touches the side of the rectangle, but not the corner, how do I do that?

View 1 Replies

ActionScript 3.0 :: Stop Directly When Player Touches Wall?

May 26, 2011

I got another problem that I just can't figure out how to solve.

PHP Code:[code]......

When I click Player, player goes to the right in speed 20. When he hits the wall he stops. BUT, he doesnt stop until the registation point hits the wall. Registation point is in the center. But I want him to stop directly when Player touches Wall.And Im gonna have wall around the "map". So i need him to stop if he touchs LeftWall, RightWall and what ever.

View 5 Replies

ActionScript 3.0 :: Character Animation - When I Press Left Or Right Key - Draw Each Frame That Makes Character Movement?

Sep 24, 2010

I have a 9 frames image of a character.In other language generally i used to make character animation by looping the array consisting of different frames and drawing each frame when pressing key.What i want to do is when i press left or right key, i want to draw each frame that makes character movement and update x coordinates of frames, and it will appear as character is moving.

View 4 Replies

ActionScript 3.0 :: Regular Expression To Test If A Single String Character Has Both Upper And Lower Case Character?

Nov 27, 2010

Does anyone know the regular expression to test if a single string character has both upper and lower case character?

eg. All A-Z and a-z.

View 0 Replies

ActionScript 2.0 :: Make A Movieclip Of A Character And When The Character Is Dragg?

Aug 11, 2009

i was wondering if any of you out there could tell me how it is possible to make a movieclip of a character and when the character is dragged about the screen by the curser, how do you make the characters arms and legs swing about in a realistic fashion.

View 2 Replies

IDE :: Get Sound For First Enemy And None For The Other Two?

Dec 3, 2009

Im doing a little game with three kinds of enemies. When each enemy blows up I'm trying to put in a different sound. Right now I get sound for my first enemy and none for the other two. The code is the same for all(?). Here's the code:

[Code]...

i have NO idea but will continue 2 scrabble around blindly 'till someone throws me a bone

View 2 Replies

ActionScript 2.0 :: [FMX] Advanced Hit Test When The Second Object Touches The Eactualy Object In The Movie Clip

Dec 15, 2002

I have a Movie Clip and Im trying to do a hit test on it but i want it to test when the second object touches th eactualy object in the movie clip, not just enters inside of the blue outline.

View 3 Replies

ActionScript 2.0 :: How To Duplicate The Enemy

May 2, 2009

I'm trying to make a small game and I've got most of it done. I just need to learn how to duplicate the enemy, so when one dies another one or two can take his place. The enemies instance name is "ninja" (no quotes).

View 1 Replies

ActionScript 2.0 :: Drunk Moving Character To Be Able To Catch Character And Play A Scene From Within The Drunk Characters Movie Clip

Jan 13, 2004

I would like my character to move as if he was drunk I am unsure how to do that I am using the keyboard for his movement. I also have a character that moves at random I would like the drunk moving character to be able to catch this character and play a scene from within the drunk characters movie clip but I want this character to try and escape the idea is the drunk character gets points for how long he is able to hang on to this character

View 2 Replies

ActionScript 3.0 :: Enemy Move To Player?

Mar 7, 2009

create a basic enemy AI that will make it possible for the enemy to move towards the player. Also something to make it so that the enemy will rotate when it moves.Good example of what im explaining is here but its Actionscript 2 instead [URL]

View 2 Replies

ActionScript 3.0 :: Enemy UI - Move To X And Y (Animation)

Jan 4, 2010

I've been trying to make my somewhat first game, and got stuck. Trying to make the "Enemy UI".
You don't need any background info.
Enemy is at 100X and 200Y.
Make him move to 350X and 50Y. ( in a somewhat animation )

So I was thinking, check if Current X is smaller or bigger than 350, then every frame (or by Time Animation ), do x++ or x-- Accordingly.
Same for the Y.
Is there a better way to it? Something that will make the animation smoother? A way that's better, can be "upgraded" in the future?

View 4 Replies

ActionScript 2.0 :: CS3 - Using 'A' Or 'S' The Foliage Or The Enemy Just Disappear

Jan 16, 2010

Excuse me, I'm making a flash game. But, it's kinda odd. I'm using Adobe Flash CS3 and Windows7 64-Bit as OS. Here's the link (around 1MB (FLA and SWF)) : [URL] The problem is : When I shoot using 'A' or 'S', the foliage or the enemy just disappear. Sometimes it's fine, sometimes it's wrong. Is my AS wrong ? Or is it because I'm using Windows 7 64-Bit ? It's for my final assignment. I've tried this past 2 days and I don't know what to do anymore >.< The deadline is this month.

View 1 Replies

Way To Remove 'Enemy' When It Comes Into Contact With 'bullet'

Jan 18, 2010

Basically i just need a simple way to remove the "Enemy" when it comes into contact with "bullet".Ive been looking on the internet but its just really confusing me at the moment. And im not sure how easy its gonna be with the way i have set it up.

View 1 Replies

ActionScript 3.0 :: Instance Of A Random 'enemy'

Nov 5, 2009

I am building a whack-a-mole game in AS3. I have the basic structure down but am trying to figure out how to have one instance of a random 'enemy' appear in one slot at a time. So there would not be a duplicate 'enemy' anywhere else simultaneously as well as only one instance can occupy a slot at a given time.Anyone have any suggestion on what direction? Array? for loop?

View 1 Replies

ActionScript 2.0 :: The Enemy Keeps Looking Left While Being Defeated?

Aug 17, 2011

When I defeat an enemy when it is looking left. it looks left while being defeated but When I defeat an enemy when it is looking right. it still looks left while being defeated.How can I make an enemy look right instead of left while it is defeated?

View 1 Replies

ActionScript 3.0 :: Create An Enemy Spaceship That Has A Simple AI?

Jul 31, 2011

i.e. everytime the spaceship reaches a point a new one will be created randomly and the ship is flying to it (etc., etc.)Problem is that it doesn't really work because after the ship flies around for some time it suddenly stops to move. It's a matter of time. Sometimes the problem occurs after 5 seconds then again the spaceships flies around for 2 - 3 minutes and stops the movement immediately.Currently I have no clue where the problem is. I already checked the distance function but so far it seems to be okay

This is the code (just an excerpt):

Code:
private function update(timeDifference:Number = 0):void
{
var step:Number = (timeDifference / 1000) * timeBasedUpdateModifier;
for each (tempEnemy in enemyManager.enemies)

[code]....

View 7 Replies

Code To Eliminate An Enemy Upon Mouse Click?

Dec 10, 2010

I need to figure out how to eliminate an enemy upon mouse click. I have a crosshair movie clip that im using because it follows the mouse. i need it to eliminate an enemy using the center of the crosshair when i click on them.

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved