Hacker coded the first version of this (that crashed the game), Hooman fixed it (the problem was apparently a shortcoming in MSVC++).
int GetHitPoints(Unit &unit)
{
int unitObj = *((int*)0x54F848) + (120*unit.unitID);
int hp = 0;
__asm
{
mov ecx, unitObj
mov eax, [ecx]
call [eax]
add eax, 8
mov eax, [eax]
mov hp, eax
}
return hp;
}
When setting unit damage with SetDamage(), units don't automatically die if the damage set exceeds the unit's maximum hit points, which is why I needed this function.
Well, it's not really a problem for structures. Don't think there's any research to increase a structure's HP (just armor for guard posts). Vehicles, on the other hand...
Anyway, here's an example of how you could use the code:
IUnit x; // Need to use extended unit functions for GetDamage (http://www.wiki.outpostuniverse.net/Op2extra)
x.SetDamage(1000);
if (x.GetDamage() == GetHitPoints(x)) // When using setdamage, if the damage exceeds the unit's HP, it DOES NOT automatically die. Utterly dumb programming.
x.DoDeath();