Jump to content

Talk:Accuracy Formula (UFO2000): Difference between revisions

From UFOpaedia
No edit summary
 
No edit summary
Line 1: Line 1:
There seems to be some kind of problem with the latex math formula generating. Either that or a problem with me. I'd appreciate some feedback about this, since it would look nice to have actual pretty looking formulas. And there are some very ugly formulas coming.
There seems to be some kind of problem with the latex math formula generating. Either that or a problem with me. I'd appreciate some feedback about this, since it would look nice to have actual pretty looking formulas. And there are some very ugly formulas coming.
- [[User:Arcozelo|Arcozelo]]
------
I guess MediaWiki isn't set up here. But, couldn't those formulas be simplified somewhat?
  <math>hp &=& acc \times \frac{max.health - current.health}{\frac{max.health}{2}}</math>
  <math>hp &=& \frac{2 \times acc \times (max.health - current.health)}{max.health}</math>
  <math>mp &=& acc \times \frac{100 - current.morale}{\frac{100}{2}}</math>
  <math>mp &=& \frac{acc \times (100 - current.morale)}{50}</math>
Or, even down to non-TeX format:
  hp = acc * (max.health - current.health) / (max.health / 2)
  hp = 2 * acc * (max.health - current.health) / max.health
  mp = acc * (100 - current.morale) / (100 / 2)
  mp = acc * (100 - current.morale) / 50
- [[User:Bomb_Bloke|Bomb Bloke]]

Revision as of 15:41, 17 June 2006

There seems to be some kind of problem with the latex math formula generating. Either that or a problem with me. I'd appreciate some feedback about this, since it would look nice to have actual pretty looking formulas. And there are some very ugly formulas coming.

- Arcozelo


I guess MediaWiki isn't set up here. But, couldn't those formulas be simplified somewhat?

 <math>hp &=& acc \times \frac{max.health - current.health}{\frac{max.health}{2}}</math>
 <math>hp &=& \frac{2 \times acc \times (max.health - current.health)}{max.health}</math>
 <math>mp &=& acc \times \frac{100 - current.morale}{\frac{100}{2}}</math>
 <math>mp &=& \frac{acc \times (100 - current.morale)}{50}</math>

Or, even down to non-TeX format:

 hp = acc * (max.health - current.health) / (max.health / 2)
 hp = 2 * acc * (max.health - current.health) / max.health
 mp = acc * (100 - current.morale) / (100 / 2)
 mp = acc * (100 - current.morale) / 50

- Bomb Bloke