Morrowind
0 of 0

File information

Last updated

Original upload

Created by

OperatorJack

Uploaded by

OperatorJack

Virus scan

Safe to use

7 comments

  1. CozmikComa
    CozmikComa
    • premium
    • 0 kudos
    Hey guys I am very new to pc gaming in general and have this mod downloaded and setup from a guide i followed but am confused on how exactly to edit the movement speed. Anyone able to help me navigate exactly what file i need to open and edit or what menu i need to be in? 
  2. jojy123
    jojy123
    • premium
    • 4 kudos
    Would it be possible to do something like this, but only for the player?

    I was able to do it myself by adding "if (e.reference == tes3.player) then" to the main lua file. Thank you very much for your mod :)
    1. proudunicorn
      proudunicorn
      • supporter
      • 16 kudos
      If you don't mind, I was wondering where you added this line? I tried here: 
      local function onCalcMoveSpeed(e)
          if (e.reference == tes3.player) then
      and here:
      if (e.reference == tes3.player) then
      local function onCalcMoveSpeed(e)

      but neither worked for me!
    2. jojy123
      jojy123
      • premium
      • 4 kudos
      Hi! Pure chance that I saw this so quickly haha, I was just starting a new playthrough today and grabbing mods.

      There needs to be an additional "end" added to the code, to close the loop created by having the if/then bit. The entire section should look like this-

      local function onCalcMoveSpeed(e)
      if (e.reference == tes3.player) then
      e.speed = e.speed * (config.modifier / 100.0)
      end
      end
  3. ArdaSevanoS
    ArdaSevanoS
    • member
    • 0 kudos
    Hi, I think it would make this mod a lot better to have an option to apply the speed buffs to RUNNING only.
  4. EinBlonderTraum
    EinBlonderTraum
    • premium
    • 28 kudos
    A small but useful mod. When I started Morrowind, I was shocked at how slow running was compared to other games.
  5. MelchiorDahrk
    MelchiorDahrk
    • premium
    • 444 kudos
    Speed 200% = everyone in Morrowind is on a caffeine high!

    I know it would complicate your code and MCM, but I think it'd make the mod more useful if it had a checkbox to make the calculation use a logarithmic scale so that with an MCM setting of 100%, when the player hits 100 speed, they are ~= to vanilla speed at that level. But they would be faster at lower levels.