my issues is that it only fills about 4/5ths of the canvas, the rest is left blank... shouldnt (width/hp)*health; work?
because surely if width was 200, then you has (200/100)*100 it would make it back to 200?
any solutions result in +1 and my thanks

- Code: Select all
void hpbar(int hp, int R, int G, int B)
{
int w;
int i,j;
if(hp<1)hp=1;
if(health<1)health=1;
w = (width/hp)*health;
erase(0,0,0,1);
for(i=0;i<w;i++)
{
for(j=0;j<height;j++)
{
setpen(R,G,B,.5,1);
putpixel(i,j);
}
}
}
savvy