https://github.com/vikdotdev/openmw-steady-leveling
Balanced leveling system for OpenMW and TES3MP
https://github.com/vikdotdev/openmw-steady-leveling
lua mod morrowind morrowind-mods openmw openmw-lua tes3mp
Last synced: 3 months ago
JSON representation
Balanced leveling system for OpenMW and TES3MP
- Host: GitHub
- URL: https://github.com/vikdotdev/openmw-steady-leveling
- Owner: vikdotdev
- Created: 2023-01-02T02:16:03.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T21:08:36.000Z (over 2 years ago)
- Last Synced: 2025-02-18T15:03:26.034Z (3 months ago)
- Topics: lua, mod, morrowind, morrowind-mods, openmw, openmw-lua, tes3mp
- Language: Lua
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenMW Steady Leveling
Leveling system in Morrowind is way too easy _(and tempting)_ to abuse. This
script nerfs new-level menu attributes heavily and adds incremental leveling
system on top.## Not actually OpenMW, yet
The only implementation available now is for TES3MP multiplayer fork. I'm open
to implementing _(or getting help with implementing)_ the same mod for
single-player OpenMW at some point if anyone is interested.## Compatibility
This was tested on TES3MP v0.8.1# How it works
Vanilla leveling system allowed to increase attribute up to x5 on level-up for
_any_ skill and it needed 2 point of said skill to increase the bonus. This
script turns it on its head and does a maximum of x2 bonus and for every 5
skill increases.This was done to give way to a more class-based leveling system which favors
attribute increases for major and minor skills. The default config increments
governing attribute of a major skill for every 3 increases of that skill, 4
for minor skills and 10 for misc skills.This can be configured in `config.lua`.
# Installation
Synopsis:
```
cd
cd server/scripts/custom
git clone https://github.com/vikdotdev/openmw-steady-leveling
mv openmw-steady-leveling steady_levelingcd
# appends the line to a file
echo 'require("custom/steady_leveling/init")' >> scripts/customScripts.lua
```# Credit
This mod is based on [this mod](https://github.com/phi-fell/carefree_leveling#phis-carefree-leveling)
with some things from [these mods](https://github.com/Atkana/tes3mp-scripts).
Go check those out.