jhaakma / ashfall

Ashfall is a survival, camping and needs mod for Morrowind. It uses the latest in MWSE Lua scripting functionality to implement a wide range of mechanics that integrate seamlessly into the game and provide a truly immersive experience.
23 stars 6 forks source link

Support Better Names Clothing #8

Closed B00ze64 closed 3 years ago

B00ze64 commented 3 years ago

Good day Merlord.

Please edit the following in ratingsConfig.lua to support "Better Sorting Names" mod. The armors are OK (you could add CLOTH with low heat for the few cheap pieces of that) but the clothing all gets renamed with quality last (Common Pants -> Pants Common) so the clothing table could be changed to:

    clothing = {
        default = 60,
        enchanted = 80,
        values = {
            ['common '] = 40,
            ['expensive '] = 50,
            ['extravagant '] = 60,
            ['exquisite '] = 70,
            [' common'] = 40,
            [' expensive'] = 50,
            [' extravagant'] = 60,
            [' exquisite'] = 70,
            ['fire'] = 100,
            ['flame'] = 100,
            ['frost'] = 0
        }
    },

Thank you.

jhaakma commented 3 years ago

Added in v2.2.3