Page 10 of 10

Re: Morrowind Equations

Posted: 09 Aug 2012, 13:39
by Zini
Having a complete list of what still needs to be done on the wiki would be useful ...

Re: Morrowind Equations

Posted: 10 Aug 2012, 12:09
by Nandorianen
You mean, someone needs to <post on the wiki> everything that needs to be done, or someone needs to post everything that <needs to be done on the wiki>?

Re: Morrowind Equations

Posted: 10 Aug 2012, 12:44
by Zini
The former. And to clarify more:

"everything that needs to be done": Every formula/mechanic that is either not listed on the wiki or listed incorrectly.

Re: Morrowind Equations

Posted: 11 Aug 2012, 05:54
by Kiesel
I made a page for it, but I don't know what needs to be put here: http://wiki.openmw.org/index.php?title= ... _mechanics

Re: Morrowind Equations

Posted: 12 Aug 2012, 12:31
by jvoisin
I think the green/yellow/red color code used on the formulae page are enough.

Re: Morrowind Equations

Posted: 31 Jan 2015, 18:36
by Logitech
Sorry for bumping old topic, but I'm looking for a formula for Fatigue loss on attack. OpenMW wiki mentions that it is implemented, used, but un-researched. Does it mean it is currently unknown how it works? I think in vanilla Morrowind it takes weapon weight into account (there is noticeable higher fatigue cost for attacking with 2h Axe than with short blade), so the common formula that is used for other actions:

Code: Select all

fFatigueAttackBase + ( 1 - currentEncumbrance / maxEncumbrance ) * fFatigueAttackMult
is inaccurate. If someone has any information regarding it please post it here.

Re: Morrowind Equations

Posted: 31 Jan 2015, 20:07
by scrawl
See the code we are using: https://github.com/OpenMW/openmw/blob/4 ... c.cpp#L491 Edit: changed link to permalink.

That is,
fFatigueAttackBase + normalizedEncumbrance * fFatigueAttackMult + weaponWeight * attackStrength * fWeaponFatigueMult

Not sure if this is accurate, it was just a guess at the time. If you want to be sure, you'll have to ask Hrnchamd himself (see the "Reversing Morrowind's Formulas" topic on here).

Re: Morrowind Equations

Posted: 31 Jan 2015, 22:11
by Logitech
thanks, replied in that topic.