View Full Version : Shooting game help
WolfRyder
April 27th, 2006, 11:04 PM
Hi all,
Can someone please help me make a game like:
http://www.flashkit.com/movies/Games/Full_Game_Source/Killbox-Birjer_R-9080/index.php
Even though the code is put its flash 5 and i thought that some of you
knew how to simplify it.please......
All the help is very very much appricicated
WolfRyder
P.S.PLease!:cons:
cobrasniper555
April 28th, 2006, 12:41 AM
Ya, I would like to know too. This is the type of shooting I talk about in my other post/s. If anyone has an engine that does the same thing or a script with the same thing, feel free to share it...please???
gonzolo
April 30th, 2006, 05:09 PM
try my engine
http://www.kirupa.com/forum/showthre...81#post1836781
cobrasniper555
April 30th, 2006, 07:08 PM
Dude, that link doesn't work.
gonzolo
April 30th, 2006, 07:12 PM
i'm making new graffix as we speak
http://gonzolo.dk/shooter/shooter.fla
http://gonzolo.dk/shooter/shooter.swf
InfestedDemon
May 1st, 2006, 06:20 AM
woah! it....it....changed
KIERIOSHIMOTO
May 1st, 2006, 06:51 AM
i'm making new graffix as we speak
http://gonzolo.dk/shooter/shooter.fla
http://gonzolo.dk/shooter/shooter.swf
mate i hope you havnt made your "GFX" yet....
InfestedDemon
May 1st, 2006, 07:17 AM
i dont think he has
gonzolo
May 1st, 2006, 10:36 AM
well i sux at graffix!!! thanks for pointing that out :( now u made me sad!!!
also it's a template so it doesent have to be good looking!!!
studioxidesign
May 5th, 2006, 08:08 PM
Hey Guys. I had a quick question. I have seen quite a few games like this and I was wondering the script to make the player rotate according to the _xmouse and _ymouse position.. here's my simple script to move the character around
onClipEvent (enterFrame) {
if (Key.isDown(Key.UP)) {
this._y -= 5;
}
if (Key.isDown(Key.DOWN)) {
this._y += 5;
}
if (Key.isDown(Key.LEFT)) {
this._x -= 5;
}
if (Key.isDown(Key.RIGHT)) {
this._x += 5;
}
}
Let me know if you can help ...
Thanks,
Brent
Studio XI
www.studioxidesign.com
gonzolo
May 5th, 2006, 08:15 PM
onClipEvent (enterFrame) {
this.a = this._y - _root._ymouse;
this.b = this._x - _root._xmouse;
this.angleA = Math.atan2 (this.a, this.b);
this.degrees = this.angleA / (Math.PI / 180);
this._rotation = this.degrees;
}
studioxidesign
May 5th, 2006, 08:21 PM
onClipEvent (enterFrame) {
this.a = this._y - _root._ymouse;
this.b = this._x - _root._xmouse;
this.angleA = Math.atan2 (this.a, this.b);
this.degrees = this.angleA / (Math.PI / 180);
this._rotation = this.degrees;
}
Hey Thanks bro... I got it..
-Brent
Studio XI
www.studioxidesign.com
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.