View Single Post
  #34  
Old April 4th, 2001, 06:42 PM

Mark Walton Mark Walton is offline
Corporal
 
Join Date: Apr 2001
Location: UK
Posts: 117
Thanks: 0
Thanked 0 Times in 0 Posts
Mark Walton is on a distinguished road
Default Re: Armor, Shields and Damage (FAQ)

Could the way damage is handled just change slightly to (not real code of couse)

Damage -= shields;
Damage -= armour;
If ((Damage + Retained_Damage) >= component.structure)
{
component.destroyed;
Retained_Damage -= (component.structure - Damage); // not less than 0 of course!
}
else
{
Retained_Damage += Damage
}


So, retained damage is never added to the damage score as such; it just waits until there is enough of it, when added to current damage, to actually destroy a component.
Reply With Quote