Morrowind Equations

General discussion regarding the OpenMW project.
For technical support, please use the Support subforum.
User avatar
Zini
Posts: 5538
Joined: 06 Aug 2011, 15:16

Re: Morrowind Equations

Post by Zini »

Having a complete list of what still needs to be done on the wiki would be useful ...
Nandorianen
Posts: 10
Joined: 07 Aug 2012, 08:37

Re: Morrowind Equations

Post 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>?
User avatar
Zini
Posts: 5538
Joined: 06 Aug 2011, 15:16

Re: Morrowind Equations

Post 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.
User avatar
Kiesel
Posts: 16
Joined: 04 Aug 2012, 22:38

Re: Morrowind Equations

Post 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
User avatar
jvoisin
Posts: 303
Joined: 11 Aug 2011, 18:47
Contact:

Re: Morrowind Equations

Post by jvoisin »

I think the green/yellow/red color code used on the formulae page are enough.
User avatar
Logitech
Posts: 13
Joined: 01 Feb 2013, 03:59

Re: Morrowind Equations

Post 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.
User avatar
scrawl
Posts: 2152
Joined: 18 Feb 2012, 11:51

Re: Morrowind Equations

Post 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).
Last edited by scrawl on 31 Jan 2015, 22:32, edited 2 times in total.
User avatar
Logitech
Posts: 13
Joined: 01 Feb 2013, 03:59

Re: Morrowind Equations

Post by Logitech »

thanks, replied in that topic.
Post Reply