VecPix Forum Index VecPix
Welcome to VecPix Forum
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

First person shooter

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    VecPix Forum Index -> ziOx
View previous topic :: View next topic  
Author Message
goosebogey



Joined: 18 May 2004
Posts: 2

PostPosted: Tue May 18, 2004 1:26 am    Post subject: First person shooter help Reply with quote

I'm making a first-person shooter using this walkthrough: http://www.vecpix.com/tutorials/flash/fl009.php and I'm on the part where you use a random number technique with 'Speedy.' Instead of Speedy, I'm using a character called 'eye'. Here's my code:

onClipEvent (load) {
function reseteye() {
this._x = 650;
this._y = Math.floor(Math.random()*21+150);
speed = Math.floor(Math.random()*6)+8;
eyeCalc = 0;
this.play();
}
reseteye();
}
onClipEvent (enterFrame) {
if (!eyeCalc) {
eyeYn = Math.floor(Math.random()*200);
}
if (eyeYn == 1) {
eyeCalc = 1;
this._x -= speed;
}
if (this._x<-50) {
reseteye();
}
}
on (press) {
speed = 0;
this.gotoAndPlay("eyeShot");
}


The trouble is, when you shoot it, it just stops and doesn't reset. How can I make it do this, and how do I make a 'shot' sequence with a sound effect?[/code]
Back to top
View user's profile Send private message Send e-mail Visit poster's website
goosebogey



Joined: 18 May 2004
Posts: 2

PostPosted: Fri Jun 04, 2004 11:47 pm    Post subject: Reply with quote

Anyone?
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    VecPix Forum Index -> ziOx All times are GMT + 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group