Lack of stat cheats?

Discuss Daggerfall Unity and Daggerfall Tools for Unity.
Post Reply
darkedone02
Posts: 22
Joined: Tue Jul 30, 2019 3:23 am

Lack of stat cheats?

Post by darkedone02 »

I want to mess around on daggerfall unity like I used to do with morrowind, skyrim, oblivion, etc... however I noticed there is no add_stat cheat or any form for some reason. When will such options be available?

User avatar
Ralzar
Posts: 2211
Joined: Mon Oct 07, 2019 4:11 pm
Location: Norway

Re: Lack of stat cheats?

Post by Ralzar »

Just edit your savegame.

Alternatively, use my LevelUp Adjuster mod to add a bunch of points at character creation.

User avatar
Interkarma
Posts: 7236
Joined: Sun Mar 22, 2015 1:51 am

Re: Lack of stat cheats?

Post by Interkarma »

Console commands aren't for cheats as such, they're developer tools. These are commands our devs found useful to build systems, workaround bugs, or get around the game quickly when testing something. Nobody has made a command to add stats because these are easy to edit with a text editor.

You can edit stats by opening SaveData.txt in your SAVE# folder and changing the values in "stats" block. Example stats from a save below - edit the numbers without changing any punctuation characters and save. If you're worried about breaking something, make a backup save first.

Code: Select all

"stats": {
    "Strength": 60,
    "Intelligence": 100,
    "Willpower": 79,
    "Agility": 56,
    "Endurance": 63,
    "Personality": 48,
    "Speed": 86,
    "Luck": 60
},

Post Reply