Announcement

User registrations are currently disabled due to high spam traffic.

#1 21/11/08 4:19pm

g0ofygoober
Hardcore Member
Registered: 28/10/08
Posts: 194
Website

jetman

here is my new game jetman

http://www.dilan.ws/psp/pspjetman.swf

it is not finished yet but it is at the point where all the code is done and only needs more stuff for the player to interact with to be added

the aim of the game is just to fly around interacting with things and just have fun

some objects will take away heath and others will just do cool or funny stuff when you hit them

use the x button to fly and the left and right buttons to move while flying.

please tell me what you think of it so far or if i am doing anything wrong

also tell me what kinds of objects should be in the different layers of the game

EDIT: for some reason the word psp in the link keeps going in caps so you will need to change it to lower case for it to work

Last edited by g0ofygoober (21/11/08 4:24pm)

Offline

 

#2 21/11/08 11:46pm

Breakeraj
Addict
Registered: 19/02/08
Posts: 240

Re: jetman

Link is broken. Im on PC

Offline

 

#3 22/11/08 7:19am

davros13
Serious Addict
From: in my location
Registered: 01/06/08
Posts: 438
Website

Re: jetman

I got it to work nice engine!!!


[img]http://i42.tinypic.com/5vd3cy.png[/img]

Offline

 

#4 22/11/08 11:56am

g0ofygoober
Hardcore Member
Registered: 28/10/08
Posts: 194
Website

Re: jetman

thanks it took me ages to get it right

the link dosent work because this site must automatiacly make the word psp into capitals or something like that. You need to change it into lower case for it to work

Offline

 

#5 22/11/08 12:02pm

sfc2000
PSP-RATOR <(@..@)>
Registered: 24/03/07
Posts: 1830

Re: jetman

Fixed word censor


nice game big_smile

Offline

 

#6 22/11/08 1:07pm

davros13
Serious Addict
From: in my location
Registered: 01/06/08
Posts: 438
Website

Re: jetman

g0ofygoober wrote:

thanks it took me ages to get it right

the link dosent work because this site must automatiacly make the word psp into capitals or something like that. You need to change it into lower case for it to work

What program did you use dude?
Also can I see the movement code, if so send it too cwscwscws@googlemail.com

If I use any of the code you will get credit!!


[img]http://i42.tinypic.com/5vd3cy.png[/img]

Offline

 

#7 25/11/08 3:24am

MadSkeetElite
Hardcore Member
From: Bend, Oregon
Registered: 28/09/08
Posts: 142
Website

Re: jetman

Good start! A bit slow on my PSP and it is kinda bland with only a few objects (balloon, tree, toilet, then repeated again). Didnt see my health ever go down either...i sat and held X for like 15 minutes and the sky FINALLY ended. lol. One more idea to put in: make sum of it like a maze/platform game, I thnk tht wuld be fun. but ya, good start! dont give up either! god typin on a psp takes 4ever...


Steam: ZachCool900
XFire: madskeetelite
Free Radical (Timesplitters series, Haze) has shut down... sad
http://www.rewards1.com/index.php?referrer_id=567358

Offline

 

#8 28/11/08 3:53pm

g0ofygoober
Hardcore Member
Registered: 28/10/08
Posts: 194
Website

Re: jetman

davros13 wrote:

What program did you use dude?
Also can I see the movement code, if so send it too cwscwscws@googlemail.com

If I use any of the code you will get credit!!

i used flash cs3 and wrote it in actionscript 2

here is the movement code:

onClipEvent (load) {
    thrust = 2;
    power = 8;
    xspeed = 0;
    yspeed = 0;
    gravity = 1;
    friction = 0.94;

    right = true;
    left = false;
    up = false;
    groundhit = false;
}

onClipEvent (enterFrame) {
    if (Key.isDown(Key.RIGHT) && groundhit == false) {
        xspeed = (power*-1);
        right = true;
    } else {
        right = false;
    }
    if (Key.isDown(Key.LEFT) && groundhit == false) {
        xspeed = power;
        left = true;
    } else {
        left = false;
    }
    if (_root.mouseclick == true || Key.isDown(Key.SPACE)) {
        yspeed += thrust;
        up = true;
        fuel -= 0.05;
        _root.world._y += 1;
    } else {
        up = false;
    }
    if (yspeed>10) {
        yspeed -= 2;
    }
    if (_root.world.ground.hitTest(_x, _y, true)) {
        groundhit = true;
    } else {
        groundhit = false;
    }
    if (groundhit == false) {
        yspeed -= gravity;
    } else if (groundhit == true) {
        yspeed = 0.0;
    }

    xspeed *= friction;
    _root.world._y += yspeed;
    _root.world._x += xspeed;

    if (up == true) {
        this.flame.play();
    } else {
        this.flame.gotoAndStop(4);
    }
    if (groundhit == false) {
        if (right == true) {
            this.gotoAndStop(1);
            this._xscale = 100;
        } else if (left == true) {
            this.gotoAndStop(1);
            this._xscale = -100;
        }
    } else if (groundhit == true) {
        this.gotoAndStop(3);
        this._xscale = 100;
    }
} smile

Offline

 

#9 28/11/08 5:50pm

davros13
Serious Addict
From: in my location
Registered: 01/06/08
Posts: 438
Website

Re: jetman

Thx very much!!


[img]http://i42.tinypic.com/5vd3cy.png[/img]

Offline

 

#10 17/12/08 4:56pm

g0ofygoober
Hardcore Member
Registered: 28/10/08
Posts: 194
Website

Re: jetman

ok the game is almost finished
iv added a load more objects and stuff

new link: http://www.dilan.ws/psp/pspjetman3.swf

this version might not work on the psp yet, i still need to go through and make sure all the images work properly on the psp and bring the filesize down.

tell me what you think

to do:
-ad platforms
-stop from going through the ground when you fall
-finish adding objects

also for this game to go on the site would i have to get the permission for every image I have used in the game

Offline

 

Board footer

Powered by PunBB
© Copyright 2002–2005 Rickard Andersson