Fixes most of the issues related to vanilla game start. However, the tes3mp chargen style is kept, so a lot of the voiced dialogue is skipped.
Requires DataManager.
To install, either git pull
it, or download the repository as a folder, rename it to OriginalStart
and then put it into your server/scripts/custom
. After doing either of those, add require("custom.OriginalStart.main")
to your server/scripts/customScripts.lua
.
You can find the configuration file in server/data/custom/__config_OriginalStart.json
.
START_ON_DOCK
iffalse
, spawns you at the ship like in vanilla Morrowind. Iftrue
, you spawn standing at the dock and the ship is disabled.CLEAN_ON_UNLOAD
whether the cell-2, -9
should be cleaned of some chargen residue whenever it unloads (could cause performance issues if used on a large server). If you want to clean it manually instead, set this tofalse
and callStart.cleanDockCell(pid, cellDescription)
when you find appropriate.