Page 1 of 1

Jack Flea - The flamefist 3rd gameplay!!

PostPosted: Tue Jun 29, 2010 10:56 am
by Hblade
Gamepplay 3!! :D I renamed him to Jack :P my friend came up with that idea

Re: Flea - The firefist - First gameplay look (No Hud yet :3

PostPosted: Tue Jun 29, 2010 12:35 pm
by lcl
Cool! :D (btw, what means hud? I have no idea... :oops:)
How did you make that fire? It's awesome! :D

Re: Flea - The firefist - First gameplay look (No Hud yet :3

PostPosted: Tue Jun 29, 2010 2:53 pm
by Hblade
Using particles :D

Also: HUD means stuff like, Health and score and stuff :D

Re: Flea - The firefist - First gameplay look (No Hud yet :3

PostPosted: Tue Jun 29, 2010 5:07 pm
by lcl
Thanks! xD

Re: Flea - The flamefist - Second gameplay video

PostPosted: Wed Jun 30, 2010 5:16 pm
by Hblade
Updated :D

Re: Flea - The flamefist - Second gameplay video

PostPosted: Wed Jun 30, 2010 5:23 pm
by jimmynewguy
Looks fun actually! I was a little worried about a flea being a character, but you can go a ways with bosses being dogs and such. Or even maybe "level up" into a bigger dear tick lol. Just one thing - make sure you finish it :) oh and add more moves :P

Re: Flea - The flamefist - Second gameplay video

PostPosted: Wed Jun 30, 2010 5:32 pm
by Hblade
I'm adding a shield :D And also: Im remodeling, the enemies bullets will bounce off the wall 2 times before getting destroyed :D

Re: Flea - The flamefist - Second gameplay video

PostPosted: Thu Jul 01, 2010 8:59 am
by Bee-Ant
Here, the canvas HP bar...
canvas->DrawActor:
Code: Select all
int i;
int hpwidth=200;
int hpheight=16;
erase(0,0,0,1);

//draw border
setpen(255,255,255,0,2);
moveto(8,8);lineto(208,8);
lineto(hpwidth+8,hpheight+8);lineto(8,hpheight+8);
lineto(8,8);

//draw hp
setpen(0,255,0,0,1);
for(i=0;i<16;i++)
{
    moveto(8,8+i);
    lineto(hp*(hpwidth+8)/maxhp,8+i);
}

8 is the offset...

Re: Flea - The flamefist - Second gameplay video

PostPosted: Thu Jul 01, 2010 9:09 am
by DST
Here's how i'd do it:

Code: Select all
int j=width;      //desired meter length
int i=(player.health*j)/player.hpmax; 
int k=10;         //height of healthbar
int l=k*.5;        //position of healthbar

erase(255, 0, 0, 1);
setpen(200, 0, 0, 0, k);  //red
moveto(0, l);
lineto(j, l);     //draw background color
setpen(0, 255, 0, 0, k);  //green
moveto(0, l);
 lineto(i, l);    //draw current health

Re: Jack Flea - The flamefist 3rd gameplay!!

PostPosted: Thu Jul 01, 2010 9:38 am
by Hblade
Updated :D Thanks bee-DST