Quote from: »Arj0n« on Mon 26/03/2012 12:10:58Of course you can't enter it. I just want to set my eyes on it.
But this way you can't enter Raseir....

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: »Arj0n« on Mon 26/03/2012 12:10:58Of course you can't enter it. I just want to set my eyes on it.
But this way you can't enter Raseir....
function DealLife() {
if(p.HP < 1) object[0].Graphic = 105; // empty life
else if(p.HP <= p.MaxHP * 5/100 && p.HP > 0) object[0].Graphic = 189; // more than 0 but less than 5% of max life
else if(p.HP <= p.MaxHP * 10/100 && p.HP > p.MaxHP * 5/100) object[0].Graphic = 104;
else if(p.HP <= p.MaxHP * 15/100 && p.HP > p.MaxHP * 10/100) object[0].Graphic = 188;
else if(p.HP <= p.MaxHP * 20/100 && p.HP > p.MaxHP * 15/100) object[0].Graphic = 103;
else if(p.HP <= p.MaxHP * 25/100 && p.HP > p.MaxHP * 20/100) object[0].Graphic = 187;
else if(p.HP <= p.MaxHP * 30/100 && p.HP > p.MaxHP * 25/100) object[0].Graphic = 102;
// etc.
else if(p.HP <= p.MaxHP && p.HP > p.MaxHP * 95/100) object[0].Graphic = 46; // full life
}
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.061 seconds with 14 queries.