Author |
Prestige Calculation |
chris aka sunshine Cadet
Joined: May 29, 2001 Posts: 1649 From: Germany
| Posted: 2001-10-23 15:47  
This is the latest prestige calculation:
float User::calculatePrestige() const
{
return( (m_ShipsDamaged * 3.0f) +
(m_ShipsCaptured * 15.0f) +
(m_PlanetsDamaged * 1.0f) +
(m_PlanetsCaptured * 5.0f) +
(m_FriendlyFire * -3.0f) +
(m_Repair * 2.5f) +
(m_Construction * 1.0f) +
(m_Kamikaze * 5.0f) +
(m_SelfDestructs * -5.0f) +
(m_Jumps * 0.1f) +
(m_PlanetCollisions * -1.0f) +
(m_Credits * 0.01f ) +
(m_ShipsLost * -0.001f ) +
(m_Scout * 1.0f) +
m_BonusPrestige );
}
just added this to avoid all the questions about additional prestige
no warranty for additional changes
[ This Message was edited by: sunshine on 2001-10-23 15:50 ]
[ This Message was edited by: sunshine on 2001-10-23 15:50 ]
_________________ Christian 'sunshine' Weyand
|