123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577
# -*- conf-desktop -*-
# #
# GENERATED WITH MOMW CONFIGURATOR v1.24 #
# ON: 2026-04-06 00:31:32 #
# #
# MOMW VERSION: 8.4.10
no-sound=0
# #
# GROUNDCOVER FILES #
# #
groundcover=OAAB_Saplings.esm
groundcover=OAAB_Saplings BCOM patch.esp
groundcover=OAAB_Saplings Concept Arts plantations patch.esp
groundcover=OAAB_Saplings Great Seawall of Vivec patch.esp
groundcover=OAAB_Saplings Minor Plantations Redone patch.esp
groundcover=OAAB_Saplings BrotherJunipersTwinLamps patch.esp
groundcover=lush3_RI_TR_TOTSP.esp
groundcover=lush3_RI_CYR.esp
groundcover=lush3_SE_TR_TOTSP.esp
groundcover=lush3_SE_CYR.esp
groundcover=Sky_Main_Grass.esp
groundcover=Cyr_Grass.esp
groundcover=Rem_AL.esp
groundcover=Rem-TOTSP.esp
groundcover=Rem_GL_Trackless_GL.esp
groundcover=Rem_WG.esp
groundcover=REM_AC.ESP
groundcover=Rem_GL - OAAB Landscape.esp
groundcover=Rem_BC.esp
groundcover=Rem_BC Brother Junipers Twin Lamps patch.esp
groundcover=Rem_AI.ESP
groundcover=lush3_TR_merged.esp
groundcover=groundcover.omwaddon
# #
# FALLBACK ARCHIVES #
# #
fallback-archive=Morrowind.bsa
fallback-archive=Tribunal.bsa
fallback-archive=Bloodmoon.bsa
fallback=LightAttenuation_UseConstant,0
fallback=LightAttenuation_ConstantValue,0.0
fallback=LightAttenuation_UseLinear,1
fallback=LightAttenuation_LinearMethod,1
fallback=LightAttenuation_LinearValue,3.0
fallback=LightAttenuation_LinearRadiusMult,1.0
fallback=LightAttenuation_UseQuadratic,0
fallback=LightAttenuation_QuadraticMethod,2
fallback=LightAttenuation_QuadraticValue,16.0
fallback=LightAttenuation_QuadraticRadiusMult,1.0
fallback=LightAttenuation_OutQuadInLin,0
fallback=Inventory_DirectionalDiffuseR,1.0
fallback=Inventory_DirectionalDiffuseG,1.0
fallback=Inventory_DirectionalDiffuseB,1.0
fallback=Inventory_DirectionalAmbientR,0.0
fallback=Inventory_DirectionalAmbientG,0.0
fallback=Inventory_DirectionalAmbientB,0.0
fallback=Inventory_DirectionalRotationX,110
fallback=Inventory_DirectionalRotationY,90
fallback=Inventory_UniformScaling,0
fallback=Map_Travel_Siltstrider_Red,238
fallback=Map_Travel_Siltstrider_Green,230
fallback=Map_Travel_Siltstrider_Blue,30
fallback=Map_Travel_Boat_Red,30
fallback=Map_Travel_Boat_Green,30
fallback=Map_Travel_Boat_Blue,230
fallback=Map_Travel_Magic_Red,230
fallback=Map_Travel_Magic_Green,30
fallback=Map_Travel_Magic_Blue,30
fallback=Map_Show_Travel_Lines,0
fallback=Water_Map_Alpha,0.4
fallback=Water_World_Alpha,0.75
fallback=Water_SurfaceTextureSize,128
fallback=Water_SurfaceTileCount,10
fallback=Water_SurfaceFPS,12
fallback=Water_SurfaceTexture,water
fallback=Water_SurfaceFrameCount,32
fallback=Water_TileTextureDivisor,4.75
fallback=Water_RippleTexture,ripple
fallback=Water_RippleFrameCount,4
fallback=Water_RippleLifetime,3.0
fallback=Water_MaxNumberRipples,75
fallback=Water_RippleScale,0.15, 6.5
fallback=Water_RippleRotSpeed,0.5
fallback=Water_RippleAlphas,0.7, 0.1, 0.01
fallback=Water_PSWaterReflectTerrain,1
fallback=Water_PSWaterReflectUpdate,20.0
fallback=Water_NearWaterRadius,1000
fallback=Water_NearWaterPoints,8
fallback=Water_NearWaterUnderwaterFreq,0.3
fallback=Water_NearWaterUnderwaterVolume,0.9
fallback=Water_NearWaterIndoorTolerance,512.0
fallback=Water_NearWaterOutdoorTolerance,1024.0
fallback=Water_NearWaterIndoorID,Water Layer
fallback=Water_NearWaterOutdoorID,Water Layer
fallback=Water_UnderwaterSunriseFog,3
fallback=Water_UnderwaterDayFog,2.5
fallback=Water_UnderwaterSunsetFog,3
fallback=Water_UnderwaterNightFog,4
fallback=Water_UnderwaterIndoorFog,3
fallback=Water_UnderwaterColor,012,030,037
fallback=Water_UnderwaterColorWeight,0.85
fallback=PixelWater_SurfaceFPS,25
fallback=PixelWater_TileCount,4
fallback=PixelWater_Resolution,256
fallback=FontColor_color_normal,202,165,96
fallback=FontColor_color_normal_over,223,201,159
fallback=FontColor_color_normal_pressed,243,237,221
fallback=FontColor_color_active,96,112,202
fallback=FontColor_color_active_over,159,169,223
fallback=FontColor_color_active_pressed,223,226,244
fallback=FontColor_color_disabled,179,168,135
fallback=FontColor_color_disabled_over,223,201,159
fallback=FontColor_color_disabled_pressed,243,237,221
fallback=FontColor_color_link,112,126,207
fallback=FontColor_color_link_over,143,155,218
fallback=FontColor_color_link_pressed,175,184,228
fallback=FontColor_color_journal_link,37,49,112
fallback=FontColor_color_journal_link_over,58,77,175
fallback=FontColor_color_journal_link_pressed,112,126,207
fallback=FontColor_color_journal_topic,0,0,0
fallback=FontColor_color_journal_topic_over,58,77,175
fallback=FontColor_color_journal_topic_pressed,112,126,207
fallback=FontColor_color_answer,150,50,30
fallback=FontColor_color_answer_over,223,201,159
fallback=FontColor_color_answer_pressed,243,237,221
fallback=FontColor_color_header,223,201,159
fallback=FontColor_color_notify,223,201,159
fallback=FontColor_color_big_normal,202,165,96
fallback=FontColor_color_big_normal_over,223,201,159
fallback=FontColor_color_big_normal_pressed,243,237,221
fallback=FontColor_color_big_link,112,126,207
fallback=FontColor_color_big_link_over,143,155,218
fallback=FontColor_color_big_link_pressed,175,184,228
fallback=FontColor_color_big_answer,150,50,30
fallback=FontColor_color_big_answer_over,223,201,159
fallback=FontColor_color_big_answer_pressed,243,237,22
fallback=FontColor_color_big_header,223,201,159
fallback=FontColor_color_big_notify,223,201,159
fallback=FontColor_color_background,0,0,0
fallback=FontColor_color_focus,80,80,80
fallback=FontColor_color_health,200,60,30
fallback=FontColor_color_magic,53,69,159
fallback=FontColor_color_fatigue,0,150,60
fallback=FontColor_color_misc,0,205,205
fallback=FontColor_color_weapon_fill,200,60,30
fallback=FontColor_color_magic_fill,200,60,30
fallback=FontColor_color_positive,223,201,159
fallback=FontColor_color_negative,200,60,30
fallback=FontColor_color_count,223,201,159
fallback=Level_Up_Level2,You realize that all your life you have been coasting along as if you were in a dream. Suddenly, facing the trials of the last few days, you have come alive.
fallback=Level_Up_Level3,You realize that you are catching on to the secret of success. It's just a matter of concentration.
fallback=Level_Up_Level4,It's all suddenly obvious to you. You just have to concentrate. All the energy and time you've wasted -- it's a sin. But without the experience you've gained, taking risks, taking responsibility for failure, how could you have understood?
fallback=Level_Up_Level5,Everything you do is just a bit easier, more instinctive, more satisfying. It is as though you had suddenly developed keen senses and instincts.
fallback=Level_Up_Level6,You sense yourself more aware, more open to new ideas. You've learned a lot about Morrowind. It's hard to believe how ignorant you were -- but now you have so much more to learn.
fallback=Level_Up_Level7,You resolve to continue pushing yourself. Perhaps there's more to you than you thought.
fallback=Level_Up_Level8,The secret does seem to be hard work, yes, but it's also a kind of blind passion, an inspiration.
fallback=Level_Up_Level9,Everything you do is just a bit easier, more instinctive, more satisfying. It is as though you had suddenly developed keen senses and instincts.
fallback=Level_Up_Level10,You woke today with a new sense of purpose. You're no longer afraid of failure. Failure is just an opportunity to learn something new.
fallback=Level_Up_Level11,Being smart doesn't hurt. And a little luck now and then is nice. But the key is patience and hard work. And when it pays off, it's SWEET!
fallback=Level_Up_Level12,You can't believe how easy it is. You just have to go -- a little crazy. And then, suddenly, it all makes sense, and everything you do turns to gold.
fallback=Level_Up_Level13,It's the most amazing thing. Yesterday it was hard, and today it is easy. Just a good night's sleep, and yesterday's mysteries are today's masteries.
fallback=Level_Up_Level14,Today you wake up, full of energy and ideas, and you know, somehow, that overnight everything has changed. What a difference a day makes.
fallback=Level_Up_Level15,Today you suddenly realized the life you've been living, the punishment your body has taken -- there are limits to what the body can do, and perhaps you have reached them. You've wondered what it is like to grow old. Well, now you know.
fallback=Level_Up_Level16,You've been trying too hard, thinking too much. Relax. Trust your instincts. Just be yourself. Do the little things, and the big things take care of themselves.
fallback=Level_Up_Level17,Life isn't over. You can still get smarter, or cleverer, or more experienced, or meaner -- but your body and soul just aren't going to get any younger.
fallback=Level_Up_Level18,The challenge now is to stay at the peak as long as you can. You may be as strong today as any mortal who has ever walked the earth, but there's always someone younger, a new challenger.
fallback=Level_Up_Level19,You're really good. Maybe the best. And that's why it's so hard to get better. But you just keep trying, because that's the way you are.
fallback=Level_Up_Level20,You'll never be better than you are today. If you are lucky, by superhuman effort, you can avoid slipping backwards for a while. But sooner or later, you're going to lose a step, or drop a beat, or miss a detail -- and you'll be gone forever.
fallback=Level_Up_Default,The results of hard work and dedication always look like luck to saps. But you know you've earned every ounce of your success.
fallback=Question_1_Question,On a clear day you chance upon a strange animal, its leg trapped in a hunter's clawsnare. Judging from the bleeding, it will not survive long.
fallback=Question_1_AnswerOne,Draw your dagger, mercifully ending its life with a single thrust?
fallback=Question_1_AnswerTwo,Use herbs from your pack to put it to sleep?
fallback=Question_1_AnswerThree,Do not interfere in the natural evolution of events, but rather take the opportunity to learn more about a strange animal that you have never seen before?
fallback=Question_1_Sound,Vo\Misc\CharGen QA1.wav
fallback=Question_2_Question,One summer afternoon your father gives you a choice of chores.
fallback=Question_2_AnswerOne,Work in the forge with him casting iron for a new plow?
fallback=Question_2_AnswerTwo,Gather herbs for your mother who is preparing dinner?
fallback=Question_2_AnswerThree,Go catch fish at the stream using a net and line?
fallback=Question_2_Sound,Vo\Misc\CharGen QA2.wav
fallback=Question_3_Question,Your cousin has given you a very embarassing nickname and, even worse, likes to call you it in front of your friends. You have asked him to stop, but he finds it very amusing to watch you blush.
fallback=Question_3_AnswerOne,Beat up your cousin, then tell him that if he ever calls you that nickname again, you will bloody him worse than this time.
fallback=Question_3_AnswerTwo,Make up a story that makes your nickname a badge of honor instead of something humiliating.
fallback=Question_3_AnswerThree,Make up an even more embarrassing nickname for him and use it constantly until he learns his lesson.
fallback=Question_3_Sound,Vo\Misc\CharGen QA3.wav
fallback=Question_4_Question,There is a lot of heated discussion at the local tavern over a group of people called 'Telepaths'. They have been hired by certain City-State kings. Rumor has it these Telepaths read a person's mind and tell their lord whether a follower is telling the truth or not.
fallback=Question_4_AnswerOne,This is a terrible practice. A person's thoughts are his own and no one, not even a king, has the right to make such an invasion into another human's mind.
fallback=Question_4_AnswerTwo,Loyal followers to the King have nothing to fear from a Telepath. It is important to have a method of finding assassins and spies before it is too late.
fallback=Question_4_AnswerThree,In these times, it is a necessary evil. Although you do not necessarily like the idea, a Telepath could have certain advantages during a time of war or in finding someone innocent of a crime.
fallback=Question_4_Sound,Vo\Misc\CharGen QA4.wav
fallback=Question_5_Question,Your mother sends you to the market with a list of goods to buy. After you finish you find that by mistake a shopkeeper has given you too much money back in exchange for one of the items.
fallback=Question_5_AnswerOne,Return to the store and give the shopkeeper his hard-earned money, explaining to him the mistake?
fallback=Question_5_AnswerTwo,Decide to put the extra money to good use and purchase items that would help your family?
fallback=Question_5_AnswerThree,Pocket the extra money, knowing that shopkeepers in general tend to overcharge customers anyway?
fallback=Question_5_Sound,Vo\Misc\CharGen QA5.wav
fallback=Question_6_Question,While in a market place you witness a thief cut a purse from a noble. Even as he does so, the noble notices and calls for the city guards. In his haste to get away, the thief drops the purse near you. Surprisingly, no one seems to notice the bag of coins at your feet.
fallback=Question_6_AnswerOne,Pick up the bag and signal to the guard, knowing that the only honorable thing to do is return the money to its rightful owner?
fallback=Question_6_AnswerTwo,Leave the bag there, knowing that it is better not to get involved?
fallback=Question_6_AnswerThree,Pick up the bag and pocket it, knowing that the extra windfall will help your family in times of trouble?
fallback=Question_6_Sound,Vo\Misc\CharGen QA6.wav
fallback=Question_7_Question,Your father sends you on a task which you loathe, cleaning the stables. On the way there, pitchfork in hand, you run into your friend from the homestead near your own. He offers to do it for you, in return for a future favor of his choosing.
fallback=Question_7_AnswerOne,Decline his offer, knowing that your father expects you to do the work, and it is better not to be in debt?
fallback=Question_7_AnswerTwo,Ask him to help you, knowing that two people can do the job faster than one, and agree to help him with one task of his choosing in the future?
fallback=Question_7_AnswerThree,Accept his offer, reasoning that as long as the stables are cleaned, it matters not who does the cleaning?
fallback=Question_7_Sound,Vo\Misc\CharGen QA7.wav
fallback=Question_8_Question,Your mother asks you to help fix the stove. While you are working, a very hot pipe slips its moorings and falls towards her.
fallback=Question_8_AnswerOne,Position yourself between the pipe and your mother?
fallback=Question_8_AnswerTwo,Grab the hot pipe and try to push it away?
fallback=Question_8_AnswerThree,Push your mother out of the way?
fallback=Question_8_Sound,Vo\Misc\CharGen QA8.wav
fallback=Question_9_Question,While in town the baker gives you a sweetroll. Delighted, you take it into an alley to enjoy, only to be intercepted by a gang of three other kids your age. The leader demands the sweetroll, or else he and his friends will beat you and take it.
fallback=Question_9_AnswerOne,Drop the sweetroll and step on it, then get ready for the fight?
fallback=Question_9_AnswerTwo,Give him the sweetroll now without argument, knowing that later this afternoon you will have all your friends with you and can come and take whatever he owes you?
fallback=Question_9_AnswerThree,Act like you're going to give him the sweetroll, but at the last minute throw it in the air, hoping that they'll pay attention to it long enough for you to get a shot in on the leader?
fallback=Question_9_Sound,Vo\Misc\CharGen QA9.wav
fallback=Question_10_Question,Entering town you find that you are witness to a very well-dressed man running from a crowd. He screams to you for help. The crowd behind him seems very angry.
fallback=Question_10_AnswerOne,Rush to the town's aid immediately, despite your lack of knowledge of the circumstances?
fallback=Question_10_AnswerTwo,Stand aside and allow the man and mob to pass, realizing that it is probably best not to get involved?
fallback=Question_10_AnswerThree,Rush to the man's aid immediately, despite your lack of knowledge of the circumstances?
fallback=Question_10_Sound,Vo\Misc\CharGen QA10.wav
fallback=Blood_Model_0,BloodSplat.nif
fallback=Blood_Model_1,BloodSplat2.nif
fallback=Blood_Model_2,BloodSplat3.nif
fallback=Blood_Texture_0,Tx_Blood.tga
fallback=Blood_Texture_1,Tx_Blood_White.tga
fallback=Blood_Texture_2,Tx_Blood_Gold.tga
fallback=Blood_Texture_Name_0,Default (Red)
fallback=Blood_Texture_Name_1,Skeleton (White)
fallback=Blood_Texture_Name_2,Metal Sparks (Gold)
fallback=Movies_Company_Logo,bethesda logo.bik
fallback=Movies_Morrowind_Logo,mw_logo.bik
fallback=Movies_New_Game,mw_intro.bik
fallback=Movies_Loading,mw_load.bik
fallback=Movies_Options_Menu,mw_menu.bik
fallback=Weather_Thunderstorm_Thunder_Sound_ID_0,Thunder0
fallback=Weather_Thunderstorm_Thunder_Sound_ID_1,Thunder1
fallback=Weather_Thunderstorm_Thunder_Sound_ID_2,Thunder2
fallback=Weather_Thunderstorm_Thunder_Sound_ID_3,Thunder3
fallback=Weather_Sunrise_Time,6
fallback=Weather_Sunset_Time,18
fallback=Weather_Sunrise_Duration,2
fallback=Weather_Sunset_Duration,2
fallback=Weather_Hours_Between_Weather_Changes,20
fallback=Weather_Thunderstorm_Thunder_Frequency,.4
fallback=Weather_Thunderstorm_Thunder_Threshold,0.6
fallback=Weather_EnvReduceColor,255,255,255,255
fallback=Weather_LerpCloseColor,037,046,048,255
fallback=Weather_BumpFadeColor,230,239,255,255
fallback=Weather_AlphaReduce,0.35
fallback=Weather_Minimum_Time_Between_Environmental_Sounds,1.0
fallback=Weather_Maximum_Time_Between_Environmental_Sounds,5.0
fallback=Weather_Sun_Glare_Fader_Max,0.5
fallback=Weather_Sun_Glare_Fader_Angle_Max,30.0
fallback=Weather_Sun_Glare_Fader_Color,222,095,039
fallback=Weather_Timescale_Clouds,0
fallback=Weather_Precip_Gravity,575
fallback=Weather_Rain_Ripples,1
fallback=Weather_Rain_Ripple_Radius,1024
fallback=Weather_Rain_Ripples_Per_Drop,1
fallback=Weather_Rain_Ripple_Scale,0.3
fallback=Weather_Rain_Ripple_Speed,1.0
fallback=Weather_Fog_Depth_Change_Speed,3
fallback=Weather_Sky_Pre-Sunrise_Time,.5
fallback=Weather_Sky_Post-Sunrise_Time,1
fallback=Weather_Sky_Pre-Sunset_Time,1.5
fallback=Weather_Sky_Post-Sunset_Time,.5
fallback=Weather_Ambient_Pre-Sunrise_Time,.5
fallback=Weather_Ambient_Post-Sunrise_Time,2
fallback=Weather_Ambient_Pre-Sunset_Time,1
fallback=Weather_Ambient_Post-Sunset_Time,1.25
fallback=Weather_Fog_Pre-Sunrise_Time,.5
fallback=Weather_Fog_Post-Sunrise_Time,1
fallback=Weather_Fog_Pre-Sunset_Time,2
fallback=Weather_Fog_Post-Sunset_Time,1
fallback=Weather_Sun_Pre-Sunrise_Time,0
fallback=Weather_Sun_Post-Sunrise_Time,0
fallback=Weather_Sun_Pre-Sunset_Time,1
fallback=Weather_Sun_Post-Sunset_Time,1.25
fallback=Weather_Stars_Post-Sunset_Start,1
fallback=Weather_Stars_Pre-Sunrise_Finish,2
fallback=Weather_Stars_Fading_Duration,2
fallback=Weather_Snow_Ripples,0
fallback=Weather_Snow_Ripple_Radius,1024
fallback=Weather_Snow_Ripples_Per_Flake,1
fallback=Weather_Snow_Ripple_Scale,0.3
fallback=Weather_Snow_Ripple_Speed,1.0
fallback=Weather_Snow_Gravity_Scale,0.1
fallback=Weather_Snow_High_Kill,700
fallback=Weather_Snow_Low_Kill,150
fallback=Weather_Clear_Cloud_Texture,Tx_Sky_Clear.tga
fallback=Weather_Clear_Clouds_Maximum_Percent,1.0
fallback=Weather_Clear_Transition_Delta,.015
#
# For: True Nights and Darkness
#
fallback=Weather_Clear_Sky_Sunrise_Color,117,141,164
fallback=Weather_Clear_Sky_Day_Color,095,135,203
fallback=Weather_Clear_Sky_Sunset_Color,056,089,129
fallback=Weather_Clear_Sky_Night_Color,009,010,011
fallback=Weather_Clear_Fog_Sunrise_Color,255,189,157
fallback=Weather_Clear_Fog_Day_Color,206,227,255
fallback=Weather_Clear_Fog_Sunset_Color,255,189,157
fallback=Weather_Clear_Fog_Night_Color,009,010,011
fallback=Weather_Clear_Ambient_Sunrise_Color,047,066,096
fallback=Weather_Clear_Ambient_Day_Color,137,140,160
fallback=Weather_Clear_Ambient_Sunset_Color,068,075,096
fallback=Weather_Clear_Ambient_Night_Color,032,035,042
fallback=Weather_Clear_Sun_Sunrise_Color,242,159,119
fallback=Weather_Clear_Sun_Day_Color,255,252,238
fallback=Weather_Clear_Sun_Sunset_Color,255,114,079
fallback=Weather_Clear_Sun_Night_Color,059,097,176
fallback=Weather_Clear_Sun_Disc_Sunset_Color,255,189,157
fallback=Weather_Clear_Land_Fog_Day_Depth,.69
fallback=Weather_Clear_Land_Fog_Night_Depth,.69
fallback=Weather_Clear_Wind_Speed,.1
fallback=Weather_Clear_Cloud_Speed,1.25
fallback=Weather_Clear_Glare_View,1
fallback=Weather_Clear_Ambient_Loop_Sound_ID,None
fallback=Weather_Cloudy_Cloud_Texture,Tx_Sky_Cloudy.tga
fallback=Weather_Cloudy_Clouds_Maximum_Percent,1.0
fallback=Weather_Cloudy_Transition_Delta,.015
fallback=Weather_Cloudy_Sky_Sunrise_Color,126,158,173
fallback=Weather_Cloudy_Sky_Day_Color,117,160,215
fallback=Weather_Cloudy_Sky_Sunset_Color,111,114,159
fallback=Weather_Cloudy_Sky_Night_Color,009,010,011
fallback=Weather_Cloudy_Fog_Sunrise_Color,255,207,149
fallback=Weather_Cloudy_Fog_Day_Color,245,235,224
fallback=Weather_Cloudy_Fog_Sunset_Color,255,155,106
fallback=Weather_Cloudy_Fog_Night_Color,009,010,011
fallback=Weather_Cloudy_Ambient_Sunrise_Color,066,074,087
fallback=Weather_Cloudy_Ambient_Day_Color,137,145,160
fallback=Weather_Cloudy_Ambient_Sunset_Color,071,080,092
fallback=Weather_Cloudy_Ambient_Night_Color,032,039,054
fallback=Weather_Cloudy_Sun_Sunrise_Color,241,177,099
fallback=Weather_Cloudy_Sun_Day_Color,255,236,221
fallback=Weather_Cloudy_Sun_Sunset_Color,255,089,000
fallback=Weather_Cloudy_Sun_Night_Color,077,091,124
fallback=Weather_Cloudy_Sun_Disc_Sunset_Color,255,202,179
fallback=Weather_Cloudy_Land_Fog_Day_Depth,.72
fallback=Weather_Cloudy_Land_Fog_Night_Depth,.72
fallback=Weather_Cloudy_Wind_Speed,.2
fallback=Weather_Cloudy_Cloud_Speed,2
fallback=Weather_Cloudy_Glare_View,1
fallback=Weather_Cloudy_Ambient_Loop_Sound_ID,None
fallback=Weather_Foggy_Cloud_Texture,Tx_Sky_Foggy.tga
fallback=Weather_Foggy_Clouds_Maximum_Percent,1.0
fallback=Weather_Foggy_Transition_Delta,.015
fallback=Weather_Foggy_Sky_Sunrise_Color,197,190,180
fallback=Weather_Foggy_Sky_Day_Color,184,211,228
fallback=Weather_Foggy_Sky_Sunset_Color,142,159,176
fallback=Weather_Foggy_Sky_Night_Color,018,023,028
fallback=Weather_Foggy_Fog_Sunrise_Color,173,164,148
fallback=Weather_Foggy_Fog_Day_Color,150,187,209
fallback=Weather_Foggy_Fog_Sunset_Color,113,135,157
fallback=Weather_Foggy_Fog_Night_Color,019,024,029
fallback=Weather_Foggy_Ambient_Sunrise_Color,048,043,037
fallback=Weather_Foggy_Ambient_Day_Color,092,109,120
fallback=Weather_Foggy_Ambient_Sunset_Color,029,053,076
fallback=Weather_Foggy_Ambient_Night_Color,028,033,039
fallback=Weather_Foggy_Sun_Sunrise_Color,177,162,137
fallback=Weather_Foggy_Sun_Day_Color,111,131,151
fallback=Weather_Foggy_Sun_Sunset_Color,125,157,189
fallback=Weather_Foggy_Sun_Night_Color,081,100,119
fallback=Weather_Foggy_Sun_Disc_Sunset_Color,223,223,223
fallback=Weather_Foggy_Land_Fog_Day_Depth,1.0
fallback=Weather_Foggy_Land_Fog_Night_Depth,1.9
fallback=Weather_Foggy_Wind_Speed,0
fallback=Weather_Foggy_Cloud_Speed,1.25
fallback=Weather_Foggy_Glare_View,0.25
fallback=Weather_Foggy_Ambient_Loop_Sound_ID,None
fallback=Weather_Thunderstorm_Cloud_Texture,Tx_Sky_Thunder.tga
fallback=Weather_Thunderstorm_Clouds_Maximum_Percent,0.66
fallback=Weather_Thunderstorm_Transition_Delta,.030
fallback=Weather_Thunderstorm_Sky_Sunrise_Color,035,036,039
fallback=Weather_Thunderstorm_Sky_Day_Color,097,104,115
fallback=Weather_Thunderstorm_Sky_Sunset_Color,035,036,039
fallback=Weather_Thunderstorm_Sky_Night_Color,019,020,022
fallback=Weather_Thunderstorm_Fog_Sunrise_Color,070,074,085
fallback=Weather_Thunderstorm_Fog_Day_Color,097,104,115
fallback=Weather_Thunderstorm_Fog_Sunset_Color,070,074,085
fallback=Weather_Thunderstorm_Fog_Night_Color,019,020,022
fallback=Weather_Thunderstorm_Ambient_Sunrise_Color,054,054,054
fallback=Weather_Thunderstorm_Ambient_Day_Color,090,090,090
fallback=Weather_Thunderstorm_Ambient_Sunset_Color,054,054,054
fallback=Weather_Thunderstorm_Ambient_Night_Color,049,051,054
fallback=Weather_Thunderstorm_Sun_Sunrise_Color,091,099,122
fallback=Weather_Thunderstorm_Sun_Day_Color,138,144,155
fallback=Weather_Thunderstorm_Sun_Sunset_Color,096,101,117
fallback=Weather_Thunderstorm_Sun_Night_Color,055,076,110
fallback=Weather_Thunderstorm_Sun_Disc_Sunset_Color,128,128,128
fallback=Weather_Thunderstorm_Land_Fog_Day_Depth,1
fallback=Weather_Thunderstorm_Land_Fog_Night_Depth,1.15
fallback=Weather_Thunderstorm_Wind_Speed,.5
fallback=Weather_Thunderstorm_Cloud_Speed,3
fallback=Weather_Thunderstorm_Glare_View,0
fallback=Weather_Thunderstorm_Rain_Loop_Sound_ID,rain heavy
fallback=Weather_Thunderstorm_Using_Precip,1
fallback=Weather_Thunderstorm_Rain_Diameter,600
fallback=Weather_Thunderstorm_Rain_Height_Min,200
fallback=Weather_Thunderstorm_Rain_Height_Max,700
fallback=Weather_Thunderstorm_Rain_Threshold,0.6
fallback=Weather_Thunderstorm_Max_Raindrops,650
fallback=Weather_Thunderstorm_Rain_Entrance_Speed,5
fallback=Weather_Thunderstorm_Ambient_Loop_Sound_ID,None
fallback=Weather_Thunderstorm_Flash_Decrement,4
fallback=Weather_Rain_Cloud_Texture,Tx_Sky_Rainy.tga
fallback=Weather_Rain_Clouds_Maximum_Percent,0.66
fallback=Weather_Rain_Transition_Delta,.015
fallback=Weather_Rain_Sky_Sunrise_Color,071,074,075
fallback=Weather_Rain_Sky_Day_Color,116,120,122
fallback=Weather_Rain_Sky_Sunset_Color,073,073,073
fallback=Weather_Rain_Sky_Night_Color,024,025,026
fallback=Weather_Rain_Fog_Sunrise_Color,071,074,075
fallback=Weather_Rain_Fog_Day_Color,116,120,122
fallback=Weather_Rain_Fog_Sunset_Color,073,073,073
fallback=Weather_Rain_Fog_Night_Color,024,025,026
fallback=Weather_Rain_Ambient_Sunrise_Color,097,090,088
fallback=Weather_Rain_Ambient_Day_Color,105,110,113
fallback=Weather_Rain_Ambient_Sunset_Color,088,097,097
fallback=Weather_Rain_Ambient_Night_Color,050,055,067
fallback=Weather_Rain_Sun_Sunrise_Color,131,122,120
fallback=Weather_Rain_Sun_Day_Color,149,157,170
fallback=Weather_Rain_Sun_Sunset_Color,120,126,131
fallback=Weather_Rain_Sun_Night_Color,050,062,101
fallback=Weather_Rain_Sun_Disc_Sunset_Color,128,128,128
fallback=Weather_Rain_Land_Fog_Day_Depth,.8
fallback=Weather_Rain_Land_Fog_Night_Depth,.8
fallback=Weather_Rain_Wind_Speed,.3
fallback=Weather_Rain_Cloud_Speed,2
fallback=Weather_Rain_Glare_View,0
fallback=Weather_Rain_Rain_Loop_Sound_ID,Rain
fallback=Weather_Rain_Using_Precip,1
fallback=Weather_Rain_Rain_Diameter,600
fallback=Weather_Rain_Rain_Height_Min,200
fallback=Weather_Rain_Rain_Height_Max,700
fallback=Weather_Rain_Rain_Threshold,0.6
fallback=Weather_Rain_Rain_Entrance_Speed,7
fallback=Weather_Rain_Ambient_Loop_Sound_ID,None
fallback=Weather_Rain_Max_Raindrops,450
fallback=Weather_Overcast_Cloud_Texture,Tx_Sky_Overcast.tga
fallback=Weather_Overcast_Clouds_Maximum_Percent,1.0
fallback=Weather_Overcast_Transition_Delta,.015
fallback=Weather_Overcast_Sky_Sunrise_Color,091,099,106
fallback=Weather_Overcast_Sky_Day_Color,143,146,149
fallback=Weather_Overcast_Sky_Sunset_Color,108,115,121
fallback=Weather_Overcast_Sky_Night_Color,019,022,025
fallback=Weather_Overcast_Fog_Sunrise_Color,091,099,106
fallback=Weather_Overcast_Fog_Day_Color,143,146,149
fallback=Weather_Overcast_Fog_Sunset_Color,108,115,121
fallback=Weather_Overcast_Fog_Night_Color,019,022,025
fallback=Weather_Overcast_Ambient_Sunrise_Color,084,088,092
fallback=Weather_Overcast_Ambient_Day_Color,093,096,105
fallback=Weather_Overcast_Ambient_Sunset_Color,083,077,075
fallback=Weather_Overcast_Ambient_Night_Color,057,060,066
fallback=Weather_Overcast_Sun_Sunrise_Color,087,125,163
fallback=Weather_Overcast_Sun_Day_Color,163,169,183
fallback=Weather_Overcast_Sun_Sunset_Color,085,103,157
fallback=Weather_Overcast_Sun_Night_Color,032,054,100
fallback=Weather_Overcast_Sun_Disc_Sunset_Color,128,128,128
fallback=Weather_Overcast_Land_Fog_Day_Depth,.70
fallback=Weather_Overcast_Land_Fog_Night_Depth,.70
fallback=Weather_Overcast_Wind_Speed,.2
fallback=Weather_Overcast_Cloud_Speed,1.5
fallback=Weather_Overcast_Glare_View,0
fallback=Weather_Overcast_Ambient_Loop_Sound_ID,None
fallback=Weather_Ashstorm_Cloud_Texture,Tx_Sky_Ashstorm.tga
fallback=Weather_Ashstorm_Clouds_Maximum_Percent,1.0
fallback=Weather_Ashstorm_Transition_Delta,.035
fallback=Weather_Ashstorm_Sky_Sunrise_Color,091,056,051
fallback=Weather_Ashstorm_Sky_Day_Color,124,073,058
fallback=Weather_Ashstorm_Sky_Sunset_Color,106,055,040
fallback=Weather_Ashstorm_Sky_Night_Color,020,021,022
fallback=Weather_Ashstorm_Fog_Sunrise_Color,091,056,051
fallback=Weather_Ashstorm_Fog_Day_Color,124,073,058
fallback=Weather_Ashstorm_Fog_Sunset_Color,106,055,040
fallback=Weather_Ashstorm_Fog_Night_Color,020,021,022
fallback=Weather_Ashstorm_Ambient_Sunrise_Color,054,042,037
fallback=Weather_Ashstorm_Ambient_Day_Color,075,049,041
fallback=Weather_Ashstorm_Ambient_Sunset_Color,048,039,035
fallback=Weather_Ashstorm_Ambient_Night_Color,036,042,049
fallback=Weather_Ashstorm_Sun_Sunrise_Color,184,091,071
fallback=Weather_Ashstorm_Sun_Day_Color,228,139,114
fallback=Weather_Ashstorm_Sun_Sunset_Color,185,086,057
fallback=Weather_Ashstorm_Sun_Night_Color,054,066,074
fallback=Weather_Ashstorm_Sun_Disc_Sunset_Color,128,128,128
fallback=Weather_Ashstorm_Land_Fog_Day_Depth,1.1
fallback=Weather_Ashstorm_Land_Fog_Night_Depth,1.2
fallback=Weather_Ashstorm_Wind_Speed,.8
fallback=Weather_Ashstorm_Cloud_Speed,7
fallback=Weather_Ashstorm_Glare_View,0
fallback=Weather_Ashstorm_Ambient_Loop_Sound_ID,ashstorm
fallback=Weather_Ashstorm_Storm_Threshold,.70
fallback=Weather_Blight_Cloud_Texture,Tx_Sky_Blight.tga
fallback=Weather_Blight_Clouds_Maximum_Percent,1.0
fallback=Weather_Blight_Transition_Delta,.040
fallback=Weather_Blight_Sky_Sunrise_Color,090,035,035
fallback=Weather_Blight_Sky_Day_Color,090,035,035
fallback=Weather_Blight_Sky_Sunset_Color,092,033,033
fallback=Weather_Blight_Sky_Night_Color,044,014,014
fallback=Weather_Blight_Fog_Sunrise_Color,090,035,035
fallback=Weather_Blight_Fog_Day_Color,128,019,019
fallback=Weather_Blight_Fog_Sunset_Color,092,033,033
fallback=Weather_Blight_Fog_Night_Color,044,014,014
fallback=Weather_Blight_Ambient_Sunrise_Color,061,040,040
fallback=Weather_Blight_Ambient_Day_Color,079,054,054
fallback=Weather_Blight_Ambient_Sunset_Color,061,040,040
fallback=Weather_Blight_Ambient_Night_Color,056,058,062
fallback=Weather_Blight_Sun_Sunrise_Color,180,078,078
fallback=Weather_Blight_Sun_Day_Color,224,084,084
fallback=Weather_Blight_Sun_Sunset_Color,180,078,078
fallback=Weather_Blight_Sun_Night_Color,061,091,143
fallback=Weather_Blight_Sun_Disc_Sunset_Color,128,128,128
fallback=Weather_Blight_Land_Fog_Day_Depth,1.1
fallback=Weather_Blight_Land_Fog_Night_Depth,1.2
fallback=Weather_Blight_Wind_Speed,.9
fallback=Weather_Blight_Cloud_Speed,9
fallback=Weather_Blight_Glare_View,0
fallback=Weather_Blight_Ambient_Loop_Sound_ID,Blight
fallback=Weather_Blight_Storm_Threshold,.70
fallback=Weather_Blight_Disease_Chance,.10
fallback=Weather_Snow_Cloud_Texture,Tx_BM_Sky_Snow.tga
fallback=Weather_Snow_Clouds_Maximum_Percent,1.0
fallback=Weather_Snow_Transition_Delta,.015
fallback=Weather_Snow_Sky_Sunrise_Color,106,091,091
fallback=Weather_Snow_Sky_Day_Color,153,158,166
fallback=Weather_Snow_Sky_Sunset_Color,096,115,134
fallback=Weather_Snow_Sky_Night_Color,031,035,039
fallback=Weather_Snow_Fog_Sunrise_Color,106,091,091
fallback=Weather_Snow_Fog_Day_Color,153,158,166
fallback=Weather_Snow_Fog_Sunset_Color,096,115,134
fallback=Weather_Snow_Fog_Night_Color,031,035,039
fallback=Weather_Snow_Ambient_Sunrise_Color,092,084,084
fallback=Weather_Snow_Ambient_Day_Color,093,096,105
fallback=Weather_Snow_Ambient_Sunset_Color,070,079,087
fallback=Weather_Snow_Ambient_Night_Color,049,058,068
fallback=Weather_Snow_Sun_Sunrise_Color,141,109,109
fallback=Weather_Snow_Sun_Day_Color,163,169,183
fallback=Weather_Snow_Sun_Sunset_Color,101,121,141
fallback=Weather_Snow_Sun_Night_Color,055,066,077
fallback=Weather_Snow_Sun_Disc_Sunset_Color,128,128,128
fallback=Weather_Snow_Land_Fog_Day_Depth,1.0
fallback=Weather_Snow_Land_Fog_Night_Depth,1.2
fallback=Weather_Snow_Wind_Speed,0
fallback=Weather_Snow_Cloud_Speed,1.5
fallback=Weather_Snow_Glare_View,0
fallback=Weather_Snow_Snow_Diameter,800
fallback=Weather_Snow_Snow_Height_Min,400
fallback=Weather_Snow_Snow_Height_Max,700
fallback=Weather_Snow_Snow_Entrance_Speed,6
fallback=Weather_Snow_Max_Snowflakes,750
fallback=Weather_Snow_Ambient_Loop_Sound_ID,None
fallback=Weather_Snow_Snow_Threshold,0.5
fallback=Weather_Blizzard_Cloud_Texture,Tx_BM_Sky_Blizzard.tga
fallback=Weather_Blizzard_Clouds_Maximum_Percent,1.0
fallback=Weather_Blizzard_Transition_Delta,.030
fallback=Weather_Blizzard_Sky_Sunrise_Color,091,099,106
fallback=Weather_Blizzard_Sky_Day_Color,121,133,145
fallback=Weather_Blizzard_Sky_Sunset_Color,108,115,121
fallback=Weather_Blizzard_Sky_Night_Color,027,029,031
fallback=Weather_Blizzard_Fog_Sunrise_Color,091,099,106
fallback=Weather_Blizzard_Fog_Day_Color,121,133,145
fallback=Weather_Blizzard_Fog_Sunset_Color,108,115,121
fallback=Weather_Blizzard_Fog_Night_Color,021,024,028
fallback=Weather_Blizzard_Ambient_Sunrise_Color,084,088,092
fallback=Weather_Blizzard_Ambient_Day_Color,093,096,105
fallback=Weather_Blizzard_Ambient_Sunset_Color,083,077,075
fallback=Weather_Blizzard_Ambient_Night_Color,053,062,070
fallback=Weather_Blizzard_Sun_Sunrise_Color,114,128,146
fallback=Weather_Blizzard_Sun_Day_Color,163,169,183
fallback=Weather_Blizzard_Sun_Sunset_Color,106,114,136
fallback=Weather_Blizzard_Sun_Night_Color,057,066,074
fallback=Weather_Blizzard_Sun_Disc_Sunset_Color,128,128,128
fallback=Weather_Blizzard_Land_Fog_Day_Depth,2.8
fallback=Weather_Blizzard_Land_Fog_Night_Depth,3.0
fallback=Weather_Blizzard_Wind_Speed,.9
fallback=Weather_Blizzard_Cloud_Speed,7.5
fallback=Weather_Blizzard_Glare_View,0
fallback=Weather_Blizzard_Ambient_Loop_Sound_ID,BM Blizzard
fallback=Weather_Blizzard_Storm_Threshold,.50
fallback=Moons_Secunda_Size,40
fallback=Moons_Secunda_Axis_Offset,50
fallback=Moons_Secunda_Speed,.6
fallback=Moons_Secunda_Daily_Increment,1.2
fallback=Moons_Secunda_Moon_Shadow_Early_Fade_Angle,0.5
fallback=Moons_Secunda_Fade_Start_Angle,50
fallback=Moons_Secunda_Fade_End_Angle,30
fallback=Moons_Secunda_Fade_In_Start,14
fallback=Moons_Secunda_Fade_In_Finish,15
fallback=Moons_Secunda_Fade_Out_Start,7
fallback=Moons_Secunda_Fade_Out_Finish,10
fallback=Moons_Masser_Size,94
fallback=Moons_Masser_Axis_Offset,35
fallback=Moons_Masser_Speed,.5
fallback=Moons_Masser_Daily_Increment,1
fallback=Moons_Masser_Moon_Shadow_Early_Fade_Angle,0.5
fallback=Moons_Masser_Fade_Start_Angle,50
fallback=Moons_Masser_Fade_End_Angle,40
fallback=Moons_Masser_Fade_In_Start,14
fallback=Moons_Masser_Fade_In_Finish,15
fallback=Moons_Masser_Fade_Out_Start,7
fallback=Moons_Masser_Fade_Out_Finish,10
fallback=Moons_Script_Color,255,20,20
fallback=General_Werewolf_FOV,100
##### VANILLA DATA ENDS HERE! MOMW DATA BEGINS BELOW! #####
# #
# FALLBACK VALUES #
# #
#
# For: Alternative TrueType Fonts
#
fallback=Fonts_Font_0,pelagiad
fallback=Fonts_Font_2,OMWAyembedt
#
# For: Diverse Blood
#
fallback=Blood_Texture_3,Blood_Energy.dds
fallback=Blood_Texture_4,Blood_Blue.dds
fallback=Blood_Texture_5,Blood_Green.dds
fallback=Blood_Texture_6,Blood_Dark.dds
fallback=Blood_Texture_7,Blood_Orange.dds
#
# For: Gonzo's Font Palette
#
fallback=FontColor_color_normal,217,177,103
fallback=FontColor_color_normal_over,163,133,78
fallback=FontColor_color_normal_pressed,115,94,55
fallback=FontColor_color_active,102,119,214
fallback=FontColor_color_active_over,74,86,156
fallback=FontColor_color_active_pressed,51,59,107
fallback=FontColor_color_disabled,137,137,137
fallback=FontColor_color_disabled_over,112,112,112
fallback=FontColor_color_disabled_pressed,85,85,85
fallback=FontColor_color_link,102,119,214
fallback=FontColor_color_link_over,74,86,156
fallback=FontColor_color_link_pressed,51,59,107
fallback=FontColor_color_journal_link,25,39,107
fallback=FontColor_color_journal_link_over,41,63,173
fallback=FontColor_color_journal_link_pressed,89,108,204
fallback=FontColor_color_journal_topic_over,41,63,173
fallback=FontColor_color_journal_topic_pressed,89,108,204
fallback=FontColor_color_answer,181,58,58
fallback=FontColor_color_answer_over,145,47,47
fallback=FontColor_color_answer_pressed,97,31,31
fallback=FontColor_color_header,217,177,103
fallback=FontColor_color_notify,217,177,103
fallback=FontColor_color_big_normal,217,177,103
fallback=FontColor_color_big_normal_over,163,133,78
fallback=FontColor_color_big_normal_pressed,115,94,55
fallback=FontColor_color_big_link,102,119,214
fallback=FontColor_color_big_link_over,74,86,156
fallback=FontColor_color_big_link_pressed,51,59,107
fallback=FontColor_color_big_answer,181,58,58
fallback=FontColor_color_big_answer_over,145,47,47
fallback=FontColor_color_big_answer_pressed,97,31,31
fallback=FontColor_color_big_header,217,177,103
fallback=FontColor_color_big_notify,217,177,103
fallback=FontColor_color_focus,71,71,71
fallback=FontColor_color_health,199,71,42
fallback=FontColor_color_magic,47,64,158
fallback=FontColor_color_fatigue,23,150,74
fallback=FontColor_color_misc,204,116,204
fallback=FontColor_color_weapon_fill,181,58,58
fallback=FontColor_color_magic_fill,181,58,58
fallback=FontColor_color_positive,47,181,100
fallback=FontColor_color_negative,181,58,58
fallback=FontColor_color_count,232,232,232
#
# For: Skies .IV
#
fallback=Weather_Clear_Cloud_Speed,0.25
fallback=Weather_Cloudy_Cloud_Speed,0.4
fallback=Weather_Foggy_Cloud_Speed,0.25
fallback=Weather_Thunderstorm_Cloud_Speed,0.6
fallback=Weather_Rain_Cloud_Speed,0.4
fallback=Weather_Overcast_Cloud_Speed,0.3
fallback=Weather_Ashstorm_Cloud_Speed,1.4
fallback=Weather_Blight_Cloud_Speed,1.8
fallback=Weather_Snow_Cloud_Speed,0.3
fallback=Weather_Blizzard_Cloud_Speed,1.5
fallback=Weather_Clear_Sky_Night_Color,004,005,006
fallback=Weather_Clear_Fog_Night_Color,004,005,006
fallback=Weather_Clear_Ambient_Night_Color,008,008,010
fallback=Weather_Clear_Sun_Night_Color,011,036,069
fallback=Weather_Cloudy_Ambient_Night_Color,008,009,013
fallback=Weather_Cloudy_Sun_Night_Color,019,022,031
fallback=Weather_Foggy_Ambient_Night_Color,007,009,010
fallback=Weather_Foggy_Sun_Night_Color,021,026,031
fallback=Weather_Thunderstorm_Ambient_Night_Color,012,012,013
fallback=Weather_Thunderstorm_Sun_Night_Color,014,019,028
fallback=Weather_Rain_Ambient_Night_Color,011,013,015
fallback=Weather_Rain_Sun_Night_Color,013,016,026
fallback=Weather_Overcast_Ambient_Night_Color,015,016,018
fallback=Weather_Overcast_Sun_Night_Color,008,014,026
fallback=Weather_Ashstorm_Ambient_Night_Color,009,011,013
fallback=Weather_Ashstorm_Sun_Night_Color,013,016,018
fallback=Weather_Blight_Ambient_Night_Color,014,014,015
fallback=Weather_Blight_Sun_Night_Color,015,023,036
fallback=Weather_Snow_Ambient_Night_Color,013,015,018
fallback=Weather_Snow_Sun_Night_Color,014,017,023
fallback=Weather_Blizzard_Ambient_Night_Color,014,016,018
fallback=Weather_Blizzard_Sun_Night_Color,014,016,018
encoding=win1252
data="D:\Spel\Morrowind\Morrowind\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\PatchforPurists"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\54 Area of effect Arrows"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\ExpansionDelay"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\DubdillaLocationFix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\AlvazirsVariousPatches\01 PFP - Compat"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\Greyedoutdialog\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\FMIHospitalityPapersExpanded\Hospitality Papers Expanded 2.7\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\FMINicetoMeetYou\FMI - Nice to Meet You 1.2"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\FMICaiusBigPackage"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\FMINotAllDunmer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\FMIServiceRefusalandContraband"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\IndorilandHerHandArmorPrivilegesOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\IndorilandHerHandArmorPrivilegesOpenMW\TR"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CutContent\CuttingRoomFloor\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CutContent\CuttingRoomFloor\patches\Tamriel Rebuilt\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CutContent\CuttingRoomFloor\patches\Tomb of the Snow Prince\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CutContent\CuttingRoomFloor\optimized_banner\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CutContent\CuttingRoomFloor\HQ\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\06 Cutting Room Floor+BCOM Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CutContent\ArtifactsReinstated\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\MinesandCaverns\Mines and Caverns"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\14 Mines and Caverns MOMW Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\WaresUltimate\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\IndorilMansion"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\RoyalBarenziah\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\RoyalBarenziah\01 Option 3"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\DwemerLegacyReforgedArkngthunchSturdumz\Dwemer Legacy Reforged - Arkngthunch-Sturdumz"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\DwemerLegacyReforgedBthungthumzandDruscashti\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\KogoruhnExtinctCityofAshandSulfur\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\80 RoHT+Kogoruhn Extinct City Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\TheDoorsofOblivionFullUpscale\main"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\TheDoorsofOblivionFullUpscale\GraphicHerbalism\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\TheDoorsofOblivionFullUpscale\normal-and-spec"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\TheDoorsofOblivionFullUpscale\GraphicHerbalism\01 Normal and Specular Maps OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\LordofRebirth\main"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\LordofRebirth\hqicons"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\LordofRebirth\normals"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\MamaeaAwakened\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\11 Mamaea Awakened OpenMW Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\Mamaea Awakened Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\80 Mamaea Awakened"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\InterestingOutfitsSolstheim\1. Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\InterestingOutfitsSolstheim\2. TOTSP Compatibility"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\InterestingOutfitsTamrielRebuiltGuards"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\FacesofVelAshMire\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\ConceptArtMolagAmurRegionTheGreatScathes\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\SouthernAshlandsOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\TalesfromtheAshlandsTheGreatHiveBaanBinif"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VIPVegettosImportantPatches\TalesFromTheAshlandsTheGreatHiveBaanBinif"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\ModdingResources\TamrielData\00 Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\TamrielDataTextureUpscale"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\07 Telvanni Cephalopod Armor TD Cuirass Upscale and Color Match"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\DistantEbonTowerforOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Travel\SignpostFastTravel"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\ModdingResources\OAABData\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MeshFixv12"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\CorrectMeshes\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Performance\MorrowindOptimizationPatch\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\GraphicHerbalismMWSEandOpenMWEdition\00 Core + Vanilla Meshes"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Performance\MorrowindOptimizationPatch\05 Graphic Herbalism Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\GraphicHerbalismMWSEandOpenMWEdition\00 Correct UV Ore + README"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\ProperlySmoothedMeshes\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\ProperlySmoothedMeshes\01 Optional Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\ProperlySmoothedMeshes\03 Higher Poly Glowing Candles"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\ProperlySmoothedMeshes\05 Beaker, Flasks - clear glass"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\ProperlySmoothedMeshes\06 Inkwell - cut glass"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Performance\ProjectAtlas\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Performance\ProjectAtlas\01 Textures - MET"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Performance\ProjectAtlas\07 Graphic Herbalism Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\RRModSeriesBetterMeshes\00 - Main Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\RRModSeriesBetterMeshes\04 - Optional - Skooma Pipe 1"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\RRModSeriesBetterMeshes\BetterCratesAndBarrels"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\JammingsOff\Jammings off(v1.1)\ver1.0(only_Xnif_files)\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\TamrielRebuilt\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\TamrielRebuilt\01 Faction Integration"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\TR_PC_SHOTN Normal Mapped Ordenadored by Me"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\ModdingResources\TamrielData\01 Data Files - Normal Maps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\24 Mackom Style Heads for Tamriel Data Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\OAABFullUpscale\main"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\OAABFullUpscale\normals"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\VurtsMorrowindVisualResurgence\OAAB"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\Vurt's OAAB Normal Mapped\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\Vurt's OAAB Normal Mapped\01 Regular Shader Specs"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Water\OpenMWMoreDynamicWaterMeshes"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\ProjectCyrodiil\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\ProjectCyrodiilGrass"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\VurtsTamrielgrassandplantsretexture"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\SkyrimHomeOfTheNords\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\SkyrimHomeOfTheNords\01 Grass for MGEXE and OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\SolstheimTomboftheSnowPrince"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\SolstheimTomboftheSnowPrince\000 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\SolstheimTomboftheSnowPrince\010 Optional - Tamriel Data Integration"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\SolstheimTomboftheSnowPrince\199 Patch - Forceful Travel NPC Override"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\SolstheimTomboftheSnowPrince\200 Addon - Missing Snow Armor Pieces"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\SolstheimTomboftheSnowPrince\201 Addon - Fierce Wolf Helms"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\MorrowindEnhancedTextures\MET 6-1 main"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\MorrowindEnhancedTextures\Interface"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\MorrowindEnhancedTextures\atlas"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\Morrowind Enhanced Textures Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\VurtsMorrowindVisualResurgence\main\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\MVR\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\MVR\01 Regular Shader Specs"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\VurtsMorrowindVisualResurgence\vfx\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\SMReplacerWickwheat\SM_wickwheat\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\EKMCorkbulbRetexture\01 Preset - Default - 2k"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\SolstheimTomboftheSnowPrince\010 Solstheim - HD Worldspace Graphical Replacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\SolstheimTomboftheSnowPrince\011 Skyrim-Like Trees"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\SolstheimTomboftheSnowPrinceGraphicalReplacers"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MonosMinorModdities\UpscaledTotSPTextures\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforMorrowind\01a Shacks docks and ships (Lysol compatible)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforMorrowind\03 Telvanni"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\03 Sophie's Normal Maps for Morrowind Telvanni Patch Telvanni Housepod Heightmap Replacement"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforMorrowind\04 Daedric"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\Atlas Textures Normal Mapped\03 Morrowind Enhanced Textures Atlas Normal Maps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\DwemerMeshImprovement"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\DwemerMeshImprovementsRevamped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\DaedricRuinsArkitektoraofVvardenfell\HQ\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\ImperialTownsNormalMappedforOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\DragonStatueRevisited\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\DragonStatueReRevistedDeGoofifiedEdition\Dragon Statue Re-Revisted (De-Goofified Edition)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\ImperialFortsNormalMappedforOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\ShacksDocksandShipsArkitektoraofVvardenfell\HQ\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\KhajiitHasPatchesIfYouHaveCoin\02 Shacks Arkitektora"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\SewersArkitektoraofVvardenfell\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\GhastlyGlowyfence"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\51 Ghastly Glowyfence patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\RRModSeriesMorrowindStatuesReplacer\00 - Azura Stone"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\RRModSeriesMorrowindStatuesReplacer\02 - Vivec Statues"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\RRModSeriesMorrowindStatuesReplacer\03 - Optional - Vivec Statues Coda Fix English"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BaarDauMinistryofTruth\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\MinistryoftruthBumpmapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\OAABDwemerPavements\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\OAABDwemerPavements\01 Trackless Grazelands Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\AshlanderCampsTentsandYurtsArkitektoraofVvardenfell\HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\AshlanderCampsTentsandYurtsArkitektoraofVvardenfell\Normals HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\OAABShipwrecks\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\OAABShipwrecks\02 Patch - TR Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\NODNPCOutfitDiversity\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\NODNPCOutfitDiversity\MacKom"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NODNPCOutfitDiversityGigapixelUpscale\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\01 Sophie's Buoyant Armiger Armor Glow Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\MacKomsHumanoidHeads\Mackon's Humanoid Heads"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\NewHairsforMacKomsHeads\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\ExpressiveEyesforMacKomsHeads"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\DandionsFamiliarLooksOpenMWTexturePathFix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\TRheadsreplacerMacKomsheads"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\ExpressiveEyesforMacKomsHeads\05 TR Heads Replacer Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\TRHeadsandHairreplacerMackomsHeadsandvariouspatches\00 TR and PT Mackom's Heads && Hair"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\TRHeadsandHairreplacerMackomsHeadsandvariouspatches\01 TR Hair Textures Upscaled"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\TRHeadsandHairreplacerMackomsHeadsandvariouspatches\02 TR Argonian Faces Upscaled"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\TRHeadsandHairreplacerMackomsHeadsandvariouspatches\04 OAAB Mackom's Heads && Hair"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\DandionsMackomStlyeFixedNormalsforopenmwandTES3MP"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\MackomsStyleTRPatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\25 Missing Hair Fixes Mackoms Project Cyrodil and Tamriel Rebuilt"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\KhajiitHeadPack"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\WhiskersPatchforMMHVersionAllNPCsandBaseReplace"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\30 Whiskers Patch for MMH Version All NPCs and Base Replace Fixed Meshes"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\EKMTextureEditsKhajiitHeadPack\2a Pluginless Khajiit Head Pack + Vampires GLOW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\MackomsStyleTRPatch\Better Bodies TR and Vanilla"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\28 Plugin Better Bodies 3.0 Color Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\IndorilHelmetRedoneforMackomsHeads"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\NewBeastBodiesCleanVersion\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\VurtsArgoniansRetexture\liztail"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\VurtsArgoniansRetexture\TR\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Animation\SimplyWalkingRemastered\Simply Walking (WS Edition)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Animation\Justalittlebitbetteranimationsforthemagebuildfirstperson"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Animation\ReAnimationv2Roguefirstpersonanimationpack"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Animation\3rdPersonaltAttacks"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\GraphicHerbalismMWSEandOpenMWEdition\12 Atlas - Smoothed BC Mushrooms"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\CalderaPrioryandtheDepthsofBloodandBone\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\CalderaPrioryandtheDepthsofBloodandBone\HD"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\CalderaPrioryandtheDepthsofBloodandBone\normal_maps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Environment\ApelsFireRetexture"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Environment\SubtleSmoke"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Water\BetterWaterfalls\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Water\BetterWaterfalls\02 Tamriel Rebuilt Water"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\ComberryBushandIngredientReplacer\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\PherimComberryBushandIngredientReplacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\PherimsFireFernPlantandIngredient\00 Default Red"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\GraphicHerbalismMWSEandOpenMWEdition\01 Pherim's Replacers"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\PherimsFireFernPlantandIngredient\GHfix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\PherimFireFernandFirePetal"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\HackleloFixed\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\ThickleLoTheSucculentHackleLoMod"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\MidMushroomOverhaul\OAAB Mid Mushroom Overhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\TheGroveofBenAbi"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\TheGroveofBenAbiEnhanced"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\TheMountainofFear"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\LittleLandscapesPathtoPelagiad"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\76 Little Landscape Path to Pelagiad Rock Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\LittleLandscapesBitterCoastWaterway"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\46 Bitter Coast Waterway Cliff Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\LittleLandscapesPathtoVivecLighthouse"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\CompatibleOdaiRiverUpperOverhaul\Compatible Odai River Upper Overhaul 1.2\Compatible Odai River Upper Overhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\81 Odai River Overhaul Statue Remover Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\23 Little Landscapes Seyda Neen Swamp Pools Patched"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\27 Little Landscapes Nix Hound Hunting Grounds+Quests for Clans and Vampire Legends Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\LittleLandscapePathtoBalmora"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\LittleLandscapeFoyadaofSharpTeeth"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\78 Little Landscape Foyada of Sharp Teeth Rock Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\StriderBurial\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\StriderBurial\01 For Vanilla Rocks"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\Strider Burial Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\VivecLighthouse\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\VivecLighthouse\01 Patch - Logs on Fire"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\WitnessStructureTheSeawallofVivec\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\WitnessStructureTheSeawallofVivec\03 Little Landscapes Vivec Islands Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\GatesofAscadia"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Trees\MelchiorsExcellentGrazelandsAcacia\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Trees\VanillaFriendlierGrazelandsAcacia"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\OAABSaplings\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\OAABSaplings\01 BCOM patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\OAABSaplings\03 Concept Arts plantations patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\OAABSaplings\04 Great Seawall of Vivec patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\OAABSaplings\06 Minor Plantations Redone patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\OAABSaplings\07 OAABBrotherJunipersTwinLamps patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\OAABSaplings\10 Openmw Groundcover Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\OAABSaplings\11 Melchior's Excellent Grazelands Acacia patch (OpenMW)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\ExcellentGrazalandsAcacia"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Trees\VanillafriendlyWestGashTreeReplacer\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Trees\VanillafriendlyWestGashTreeReplacer\01 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Trees\VanillafriendlyWestGashTreeReplacer\02 Leafy texture"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\13 Vanilla Friendly West Gash Trees Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Trees\RemirosAscadianIslesTrees2"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Trees\VanillaFriendlierAscadianIslesTrees"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\RemirosAscadianIslesTrees2"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\06 Sophie's Tx_MA_lava05A Normal Map (Heightmap Replacement)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Environment\PimpmyLava\Pimp my Lava\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Environment\PimpmyLava\Pimp my Lava\01 Tamriel_Data Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Environment\PimpmyLava\Pimp my Lava\02 AB_lava replacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Environment\ApelsAsuraCoastandSheogorathRegionRetexture"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Environment\SaintJsLandscapeReplacerParallaxTexturesforOpenMW\SaintJ Landscape Replacer Parallax (Half Res)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\GraphicHerbalismMWSEandOpenMWEdition\15 Apel's Azura's Coast"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\CorrectUVRocks\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\AscadianFarmyardOverhaul\Ascadian Farmyard Overhaul\05 Minor Plantations Compatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\MinorPlantationsRedone\MinorPlantationsRedone"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\AranoPlantationWindmill"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\HawiaInfrastructure"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\ScumRetexture"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\ScummyScum\Scummy Scum\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\PerfectScum"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\RemirosModGraveyard\LilyPadReplacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\UnholyTrinityDagothUrVemynalOdrosalRemade\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\LibraryofVivecEnhanced\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VIPVegettosImportantPatches\LibraryofVivecEnhanced"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\40 NOD+Library of Vivec Enhanced Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\RepopulatedVassirDidanatMine\RepopulatedVassirDidanatMine"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\Akulakhansbestchamber\00 - Core files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\21 Akulukhan's Best Chamber OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\ConceptArtsplantations\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VIPVegettosImportantPatches\ConceptArtPlantations\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\SamarysAncestralTombExpanded"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\88 Samarys Ancestral Tomb Corpse Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\SanctusShrine\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\OAABFoyadaMamaea"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VariousModsandPatches\OAABFoyadaMamaeaILavaGoodPatch\00 I Lava Good"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\NewIlunibi"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\New Ilunibi Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\AldRuhnManorBanners\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\AldRuhnManorBannersUpscaledandNormalMapped\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\AldRuhnManorBannersUpscaledandNormalMapped\01 Normal Maps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\IngredientsMeshReplacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\BetterKegstands"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\ImprovedKwamaEggsandEggSacs\00-Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\ModdingResources\OAABData\07 Improved Kwama Eggs"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\GraphicHerbalismMWSEandOpenMWEdition\03 Pherim Pulsing Kwama"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\OneTrueFaithSaintsandFrescoesRetexture\UHQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\DunmeriUrnsAestetikaofVvardenfell\HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\DunmeriUrnsAestetikaofVvardenfell\Normals HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\DunmeriUrnsAestetikaofVvardenfell\Atlas HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\DunmeriUrnsAestetikaofVvardenfell\Normals HQ ATLAS"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\LongLiveTheGlasswareRetexture\Long Live The Glassware - Retexture\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\LongLiveThePlatesRetexture\Long Live The Plates\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\RedwareAestetikaofVvardenfellClutter\HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\RedwareAestetikaofVvardenfellClutter\Atlas HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\ImprovedBetterSkulls\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\ImprovedBetterSkulls\Vanilla Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\ImprovedBetterSkulls\01 Improved Better Skulls Textures (Connary)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\PherimsSmallandWIPMods\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\PherimsSmallandWIPMods\Normal Map for OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\RZerosRandomRetexturesandReplacers\Quill"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\EKMVanillaBasedPaperLanterns"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\EKMVanillaBasedPaperLanterns\TD"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\EKMVanillaBasedPaperLanterns\OAAB"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\RemirosModGraveyard\DwemerPuzzleBoxReplacerOpenMW\Dwemer Puzzle Box - OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\OpenMWContainersAnimated\Containers Animated"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\OpenMWContainersAnimated\Optional\kollops"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\OpenMWVanillaFriendlyAnimatedBasketEdit\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\OpenMWVanillaFriendlyAnimatedBasketEdit\01 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\OpenMWVanillaFriendlyAnimatedBasketEdit\02 HD Normal Map"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\ApelsVariousThingsSacks"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\SeptimGoldandDwemerDumacs\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\SeptimGoldandDwemerDumacs\01 OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\SoulgemReplacer\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\SoulgemReplacer\Data Files\Normals"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Clothing\FMUniqueItemsCompilation\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\MajesticMuffin\00 Core FMI Unique Items Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\MajesticMuffin\01 4k Base Texture"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\MajesticMuffin\02 4k Normals"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\MajesticMuffin\03 4k Regular Shader Spec"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\42 FMGS Unique Items Compilation Mesh Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\SWJsWeaponSheathingPatches\Unique Items Compilation"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\SWJsminorcompabilitypatches\DaedricAmulet"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\KnowThyAncestors"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\PublicolasMiscModEmporium\Know Thy Ancestors - Serano Tomb Fix (Main)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\Know Thy Ancestors Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\FMGS - Unique Items Compilation Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\Dunmersashpits\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\RemirosModGraveyard\UniqueJewelryRedone"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\Salts\main\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\Salts\hi-res-glowmaps\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\Salts"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Audio\StoreEntranceChimes"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Audio\StoreEntranceChimesforCyrodiilandTRMainland"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\73 Store Entrance Chimes"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\31 Flies Patched"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\Fireflies"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\HDForge\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\HDForge\Optional Animated Bellows with Sound [English Version]"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\HDForge\Optional Texture for Glowing Ash"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\HDForge\Improved Meshes only"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\HDForge\Optional HD Bloodmoon Coals Texture"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\HDForgeforOpenMWLua"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\HDForge"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\HircinesArtifacts\Hircine's Artifacts"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\02 Sophie's Hircine's Artifacts Hircine Spear Upscaled Fixed and Retextured"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\RealisticSpiderWebs"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\RemirosModGraveyard\RemirosAlcoholHD"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\BannersandFlagsRetextureAestetikaofVvardenfell\00 Core - HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\BannersandFlagsRetextureAestetikaofVvardenfell\05 TR Ashlanders - HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\BannersandFlagsRetextureAestetikaofVvardenfell\10 Worn Letters - HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\BannersandFlagsRetextureAestetikaofVvardenfell\40 Purist Smith - HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\BannersandFlags\00 Core - HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\BannersandFlags\05 TR Ashlanders - HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\BannersandFlags\10 Worn Letters - HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\BannersandFlags\40 Purist Smith - HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\BetterTapestriesandRugsv10\Better Tapestries and Rugs v1.0"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\BetterTapestriesandRugs\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\BetterTapestriesandRugs\01 Regular Shader Specs"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\BetterVivecBanners10\Better Vivec Banners 1.0"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\BetterVivecBanners"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\TheMadstone"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\SolthasSixthHouseAmulet\Solthas Sixth House Amulet"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\ImmersiveTelvanniBugMusk"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\WelcomeRoadMarkerRetextureAestetikaofVvardenfell\HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MonosMinorModdities\WelcomeRoadMarkerRetextureAoVNormalMaps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\SignpostsReplacerforTamrielRebuiltandVvardenfell\JASPR-V\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\SignpostsReplacerforTamrielRebuiltandVvardenfell\JASPR-TR\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\SignpostsReplacerforSkyrimHomeoftheNords\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\SignpostsReplacerforProjectCyrodiilAbeceanShores\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\ApelsVariousThingsSigns"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\UniqueBannersandSignsReplacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\UniqueTavernSignsforTamrielRebuilt"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Environment\BalmoraRoadNormalMaps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\FullDwemerRetexture\FULL DWM RTX"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\FullDwemerRTXAllinOneNormalMapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\Swayland"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\BetterTelvanniCrystal\Better Telvanni Crystal 4k"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\ModdingResources\OAABData\04 Better Telvanni Crystal Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\NormalandSpecularmapsforBetterTelvanniCrystal"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\AstrologiansGuild\main"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\AstrologiansGuild\OpenMWpatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\AstrologiansGuild"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\VibrantIvyandTrellisAdditions\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\VibrantIvyandTrellisAdditions\01 BCoM Addon"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\VibrantIvyandTrellisAdditions\02 Trellis addon - BCoM"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\DrethosAncestralTomb"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\SecretsoftheCrystalCity\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\SecretsoftheCrystalCity\01 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\SecretsOfTheCrystalCity"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\TheWakeofHaninIbarDadOverhaul\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\TheWakeofHaninIbarDadOverhaul\01 TR Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\OAABTheAshenDivide"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\MarbledZafirbelBay"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\TempleShrinesGlow\Temple Shrines Glow\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\OAABGrazelands\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\OAABGrazelands\03 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\OAAB Grazelands Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\01 OAAB Grazelands+Mines and Caverns Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\08 Trackless Grazeland For OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\AndrethiTombOverhaul\Andrethi"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\VenninsUlummusaOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\VenninsPulkOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\VenninsHlaaluTombOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\VenninsHlerviTombOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\VenninsLleranOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\VenninsSinsibadonOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\VenninsAddamasartusOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\VenninsPunabiOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\VenninsShalOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\72 Practical Necromancy X Venin's Shal Overhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\77 Shal Overhaul Skeleton Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\SuperiorShulkEggmineOAAB"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\DungeonDetails\10 AP Egg Mine"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\DungeonDetails\31 Sixth House Assemanu"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\DungeonDetails\32 Sixth House Yakin"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\DungeonDetails\50 ASH Urshilaku Burial Tombs and Towers"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\DungeonDetails\51 ASH Madas Grotto"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\DungeonDetails\70 BC Nimawia Grotto"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\DungeonDetails\100 SHEO Malmus Grotto"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\73 Dungeon Details Grotto Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\90 Dungeon Details Urshilkau Fixes"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\TheVestigesofTukushapal\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\StormkissReforged\Stormkiss Reforged\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\TheVestigesofTukushapal\01 Stormkiss Reforged Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\OAABHawiaEggMine\OAAB - Hawia Egg Mine"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\WhatKwamasForageAnEggmineMod\What Kwamas Forage"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\AzurasShrineOverhaul\00 - Core files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\AzurasShrineOverhaul\03 - Aspect of Azura Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\CavernOfTheIncarnateOverhaul\1CavernOfIncarnateOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\CavernOfTheIncarnateOverhaulOpenMWpatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\SpeechcraftRebalanceOpenMW\Speechcraft Rebalance"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\02 Speechcraft Rebalance Rebalanced"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\TalkingTrainsSpeechcraftopenmwlua\Talking Trains Speechcraft openmw lua"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\OfEggsandDwarvesGnisisEggmineandBethamezOverhaul\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\OfEggsandDwarvesGnisisEggmineandBethamezOverhaul\01 BCOM Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\BallakuTheLonelyTowers"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\TheWoeofIndalenTomb"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\OAABPomegranates\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\OAABPomegranates\02 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\OAABPomegranates\03 SSQN OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\83 OAAB Pomegranates patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\JusticeforKhartagJFK"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\58 OAAB Shipwrecks+JFK MOMW Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\ImmersiveGrottoEntrances"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\20 Immersive Grotto Entrances Patched"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\DivineDagoths\00 - Core Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\DivineDagoths\01 - No Reflection Maps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\DivineDagoths\01 - OpenMW Model Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\DivineDagoths\01 - Uthol's Greeting"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\LucidDisturbingDreams\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\AmazingAtronachsCreatureMeshReplacer\04 Creatures VFX Restoration"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\AmazingAtronachsCreatureMeshReplacer\04a Shiny Ice Creatures VFX Restoration"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\AmazingAtronachsCreatureMeshReplacer\05 HD Particle Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\FlameAtronachsRekindledReplacer\Amazing (Flame) Atronach Rekindled OpenMW\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\SiltStrider\No bump\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\SiltStriderAnimationRestored\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\VurtsSiltStriderRetexture\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\NwahStriderVurtPatchwithNormals\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\NwahStriderVurtPatchwithNormals\01 Normal Maps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\NwahStriderVurtPatchwithNormals\02 Regular Shader Specs"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\CliffRacerReplacer20\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\MudcrabReplacer\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\4thUnknownsCreaturesMorrowindEdition"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\GoblinsRemastered4thUnknowncreatures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\GoblinsRemastered4thUnknowncreatures\Vanilla Reskin"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\KwamaQueenReplacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\KwamaWarriorRemastered4thunknowncreatures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\KwamaWarriorRemastered4thunknowncreatures\Vanilla Reskin"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\KwamaWorkerRemastered4thunknowncreatures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\KwamaWorkerRemastered4thunknowncreatures\Vanilla Reskin"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\ScribRemastered4thUnknownCreatures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\ScribRemastered4thUnknownCreatures\Vanilla Reskin"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\AlitRemasteredSkinwalker21creatures\main"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\AlitRemasteredSkinwalker21creatures\Vanilla Reskin"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Animation\OntheBlink\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\DreughRemasteredMihailCreatures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\DreughRemasteredMihailCreatures\Vanilla Reskin"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\BlightedAnimalsRetextured"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\Varioustweaksandfixes\BlightedAnimalsRetexturedMET"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\BlightedAnimalsRetextured"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\AlternateSpriggans"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\ScampReplacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\HungerReplacer\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\RieklingFixandExpansion\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\RieklingFixandExpansion\02 Bloodmoon Rebalance - Eng"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\SMBonewalkerReplacer\SM Bonewalker OpenMW\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\SMGreaterBonewalkerReplacerOverhaul\sm_GreaterBoneWalker\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\SMWerewolfReplacer\open_mw\SM_Werewolf_Replacer\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\SMWerewolfReplacer\missing meshes fix\data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\SMWerewolfReplacer\black_fur"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\OAABIntegrations"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\FMIUniqueLoreFriendlyCaveRats"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\UniqueCaveRats20HD"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\WingedTwilightRebalance"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\AtronachRebalance"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\Blighted4thUnknownsBeastsRetextured\Blighted Creatures Retexture"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\18 4thUnknowns Blighted Kwamas and Shalks"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\Vanillafriendlycreaturesandundeadsexpansion\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\Vanillafriendlycreaturesandundeadsexpansion\03 Summons have 0 soul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\DaedraUseBoundEquipmentforOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\Creatures_RP Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MonosMinorModdities\OldBlueFinUpscaled\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MonosMinorModdities\OldBlueFinUpscaled\01 Normal Map"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\WestlyPresentsUniqueWingedTwilights\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\WestlyPresentsUniqueWingedTwilightsNormalMapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\SMBoneLordReplacerOverhaul\Vanilla_Animations_ver\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\BetterDwarvenSpectresMerandMaidensEdition\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\BetterDwarvenSpectresMerandMaidensEdition\01 Dwarven Spectres"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\NewWolfReplacer\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\ReturnoftheKingKarstaagOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\RotatsCorprusNativesReplacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\RotatsCorprusNativesReplacer\512px"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\EKMDunmerCorprusVariants\01 Core - Westly Replacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\EKMDunmerCorprusVariants\06 Plugin - BTSH Variants All"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\BetterAlmalexia"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\YetAnotherGuardDiversity"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\29 Yet Another Guard Diversity - Cephalopod Armor - Waterworks"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\VEHKConceptartVivecreplacer\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\WaresUltimate\02 Wares to vanilla lists"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\WaresUltimate\03 TD to Wares"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\WaresUltimate\04 OAAB to Wares"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\WaresUltimate\06 Wares to Traders"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\WaresUltimate\09 Wares to containers"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\StuporstarsBooksforWares\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\StuporstarsBooksforWares\01 OAAB"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\Danae's Mods AIO Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NODNPCOutfitDiversityGigapixelUpscale\00 Core Maps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\RepopulatedMorrowind\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\RepopulatedMorrowind\02 BCOM Repopulated Morrowind"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\RepopulatedMorrowind\04 Tomb of the Snow Prince"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\RepopulatedMorrowind\06 Optional Plugins"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\RepopulatedMorrowind\10 Compatability Patches"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\NastierCamonnaTong\Nasty Camonna Tong"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Audio\VivecVoiceAddonTribunalVersion"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\AlvazirsVariousPatches\02 Refreshed - OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\NoMoreStageDivingDeselesDancingGirls"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\GreetingsforNoLore"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\FMBPGreetService"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\LDMContextMatters"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\IdleTalk\Idle Talk"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\47 Vivec's Muatra Alternative"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\ByAzura\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\ByAzura\01 High Res Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\AttendMe\AttendMe_1.9"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\45 Attend Me Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\FollowerDetectionUtilOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\FriendlierFireOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\MAiqontheMainlandandothermods"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\InvestigationsatTelEurus\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\InvestigationsatTelEurus\Extras for OpenMW only"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\43 Investigations at Tel Eurus Anti-Cheese"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\TelEurus"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\SloadandSlavers\Sload and Slavers\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\57 Sload and Slavers"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\SloadicTransports\Sloadic Transport\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\RacersandSloadandSlaversWeaponSheathingPatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\TRHeadsandHairreplacerMackomsHeadsandvariouspatches\05 Sload and Slavers Mackom's Heads && Hair"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\ModsMackommedSloadsandSlavers"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\MementoMori\01 Main Files (Required)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\MementoMori\02 BCOM Patch (Optional)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\MementoMori\03 OpenMW Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\DjangosDialogue14\Djangos Dialogue 1.44"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\BardsofBardenfell\Bards of Bardenfell"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\ShadySam\Shady Sam"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\DiverseKhajiitNewandImproved"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\ModdingResources\StaticSwitchingSystem\static_switching_system"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\36 WhiteSuran OpenMW Lua"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\ImmersiveMournhold"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\82 Immersive Mournhold Corner Tower Remover Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\TheWolverineHall\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\TheWolverineHall\02 BCOM patch (read the instructions or it won't work)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\TheWolverineHall\04 Lysol texture Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\TheWolverineHall"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\38 BCOM+Marbled Zafirbel Bay+WHO Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\66 RepopulatedMorrowindxTheWolverineHall patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\67 MOMW Sadrith Mora Pathgrid Reset"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\GuarStablesofVivec\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\GuarStablesofVivec\01 Guar Stables"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\01 Waterworks Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\03 Weather Mechanics for (OpenMW) - Required"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\04 Suran dock expansion"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\07 Taller Seyda Neen Lighthouse"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\08 Expanded Sadrith Mora Dock"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\09 Concept Art Ghostfence Pillars"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\10 Open Arena"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\11 Vivec Customization Options"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\12 Ghostgate - Animated Statues"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\13 Vanilla Skar"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\14 More Tribal Erabenimsun"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\15 Molag Mar Broken Dome"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\17 Caldera Mages Guild Basement"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\18 Urshilaku Camp Concept Art Husk"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\19 Ald'Ruhn Outdoor Merchants"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\20 Imperial Gatehouses Addon"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\23 Eight Plates Quest Addon"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\24 Khuul Lighthouse"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\02 Options\25 Sadrith Mora South Gates"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\03 Waterworks Options\01 Optional Merchants"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\03 Waterworks Options\02 Cluttered Canal"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\04 Project Atlas and GiTD Patches\01 Project Atlas Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\04 Project Atlas and GiTD Patches\05 RR Statues patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\06 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\MaarGanTownofPilgrimage\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\MaarGanTownofPilgrimage\01 Ashlander Addon"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\MaarGanTownofPilgrimage\02 Magic Rock of Maar Gan"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\12 Sophie's Concept Art Ald Skaar 8k Upscale"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\BCOM"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VIPVegettosImportantPatches\TheAshlanders"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VIPVegettosImportantPatches\UrshilakuSpiritual"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VIPVegettosImportantPatches\WeWillGoToMountAssarnibibi"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VIPVegettosImportantPatches\TelAruhnChronichles"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\SloadandSlavers\Upscaled Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\TRHeadsandHairreplacerMackomsHeadsandvariouspatches\07 The Seedy Plates Mackom's Heads && Hair"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\01 Patch for Purists"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\03 OAAB Foyada Mamaea"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\10 Concept Art Plantations"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\MasterIndexRedux\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\09 Master Index Redux BCOM Fixed"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\22 Tamriel Rebuilt patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\25 Province Cyrodiil Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\VivecandVelothiArkitektoraVol2\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\VivecandVelothiArkitektoraVol2NormalMaps\Vivec and Velothi Arkitektora - HQ Normals\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\17 Missing Vivec and Velothi Arkitektora Vol 2 Normals"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\KhajiitHasPatchesIfYouHaveCoin\04 Vivec Arkitektora"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\HlaaluArkitektoraVol2\HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\HlaaluArkitektoraVol2\HQ-Atlas"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\HlaaluArkitektoraVol2NormalMaps\Hlaalu - Arkitektora Vol.2 Normal Maps\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\HlaaluArkitektoraVol2NormalMaps\Hlaalu Arkitektora - ATLAS Normals HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\RedoranArkitektoraVol2\HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\KhajiitHasPatchesIfYouHaveCoin\01 Redoran Arkitektora"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\RedoranArkitektoraVol2\TR-HQ\TR Replacer - Structures - Redoran"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\AldruhnunderSkar\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\TamrielRebuiltHallofJusticeOverhaul\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\TamrielRebuiltHallofJusticeOverhaulNormalMapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\TelvanniMeshImprovement"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\TelvanniArkitektoraofVvardenfell\HQ\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MonosMinorModdities\TelvanniMeshImprovementArkitektoraPatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\23 Telvanni Mushroomtop Housepod UV Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\29 Tyddys Arkitektora Atlas and Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NecromArkitektoraofMorrowind\HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NecromArkitektoraofMorrowind\NecromMinorMeshesFixes"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\NecromArkitektoraHQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\RedoranArkitektoraVol2NormalMaps\Redoran Arkitektora - Buildings HQ Normal Maps Atlas"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\RedoranArkitektoraVol2NormalMaps\Redoran Arkitektora - HQ Normals\Data"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\RedoranArkitektoraVol2\UHDAldSkar"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\AldSkarUHDNormalMapped\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\AldSkarUHDNormalMapped\01 Regular Shader Specs"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Environment\SaintJsTamrielRebuiltLandscapeReTextureParallax\TR Landscape Replacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\VelothiWallArt\Velothi Wall Art\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\48 Velothi Wall Art"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\ConceptArtPalaceVivecCity\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\ConceptArtPalaceVivecCity\01 Symmetrical Palace"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\ConceptArtPalaceVivecCity\02 Interior Cluttering"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\ConceptArtPalaceVivecCity\03 Flame - Option 1"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\ConceptArtPalaceVivecCity\04 Rotating Planets"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\ConceptArtPalaceVivecCity\06 Columns - Concept Art Scribbles - Symmetric Palace"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\ConceptArtPalaceVivecCity\07 Decorated Bridge"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\ConceptArtPalaceVivecCity\08 Cluttered Staircase"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\ConceptArtPalaceVivecCity\09 Unique Door"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\ConceptArtPalaceVivecCity\10 TR Water - Symmetric - Original Colour"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\ConceptArtPalaceVivecCity\Concept Art Palace distant flames"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\BetterFlamesforConceptArtPalaceVivecCityOpenMWVersion\00 Green-Yellow"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VIPVegettosImportantPatches\ConceptArtPalace"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\HolamayanIsland\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\RRModSeriesTelvanniLighthouseTelBranora\01 - Main ESP - English"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\RRModSeriesTelvanniLighthouseTelVos\00 - Main Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\RRModSeriesTelvanniLighthouseTelVos\00 - Main patch files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\RRModSeriesTelvanniLighthouseTelVos\01 - Main Files GITD Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\RRModSeriesTelvanniLighthouseTelVos\02 - Main ESP - English"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\OAABTelMora\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\OAABTelMora\01 Female Guards"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\OAABTelMora\02 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\OAABTelMora\03 SSQN OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\OAAB Tel Mora Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\04 Sophie's Normal Maps for Morrowind OAAB Tel Mora Normal Heightmap Replacement and Mesh Edit"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\KumarahazTheBanditLair\Kumarahaz - The Bandit Lair"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\TelBranoraExpansion\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\KatyasPatchesandmodrecommendations"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\AlmalexiasChamberOverhaul\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\AlmalexiasChamberOverhaul\04 OpenMW NormalMaps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\NordicDagonFel\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\NordicDagonFel\01 More Nordic Dagon Fel"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\DagonFelMillRedux"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\NordicDagonFelNPCs"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\AldruhnArchitectureVariety\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\RatinthePotOAABifiedandTRd"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\TempleBalmoraOAABifiedandTRd"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\AldRuhnOutskirtsAncestralRefuge"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\75 AldRuhnOutskirtsAncestralRefuge+LittleLandscapesNixHoundHuntingGrounds"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\RavenRockEnhanced"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\NordicSolstheimSolstheimInteriorsOverhaul\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\NordicSolstheimSolstheimInteriorsOverhaul\01 Cliff Racer Restored"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\TheStoneHallsofSolstheimReforged\The Stone Halls of Solstheim - Reforged\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\TheStoneHallsofSolstheimReforged\The Stone Halls of Solstheim - Reforged\01 TotSP placement"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\The Stone Halls of Solstheim - Reforged Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\TelvanniSeaBeacons"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\OAABtoRRTelvanniConsistency"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\PlantersforAjira\Planters for Ajira"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\PlantersforAjiraBeautifulCitiesofMorrowind\Planters for Ajira - BCoM"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\DagonFelLighthouse\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\DagonFelLighthouse\02b Patch - Logs on Fire with Nordic interior Detailing"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\SadrithMoraBCOMPlusModule\02 Of Murk and Mussels - A Sadrith Mora Trader"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\SadrithMoraBCOMPlusModule\03 Of Musk and Mer - A Sadrith Mora Tale"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\SadrithMoraBCOMPlusModule\04 Of Melodies and Moonlight - A Sadrith Mora Artist"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\SadrithMoraBCOMPlusModule\06 OAAB Market"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\SadrithMoraBCOMPlusModule\08 Shipyards of Vvardenfell"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\RepopulatedMorrowind\08 Silent AM Sounds"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VIPVegettosImportantPatches\TheMagicRockofMaarGan\00 - Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\CalderaGovernorsManorRedone"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\67 Caldera Governor Manor"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\HangingGardensofSuran\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\HangingGardensofSuran\02 Patch - BCOM (Full)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\ExpansionResourceConflicts"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\09 Expansions Resource Conflicts MET'D"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BellTowersofVvardenfell"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BellTowersofVvardenfellDirectionalSoundforOpenMW\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\HumblePrayerHall\HumblePrayerHall"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\PrayerWheelOpenMWNormalmapMeshFix\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\PrayerWheelOpenMWNormalmapMeshFix\01 Tyddys Vivec and Velothi Arkitektora V2"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\BerandasOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\OAABTombsandTowers"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\TheCorprusariumexperience\00 - Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\49 Aether Pirates Discovery + The Corprusarium Experience Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\TheCorprusariumexperience\02 - Doors of Oblivion patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\The Corprusarium Experience Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\BetterDunmerStrongholds\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VariousBCoMandOpenMWpatches"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\30 Morrowind Anticheese"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\28 Morrowind Anti-Cheese+Quest Voice Greetings Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\FortheRightPrice\For the Right Price\Modular"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\OwnershipOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\RealDisposition"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\MDMDMoreDeadlyMorrowindDenizens"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\AlchemicalHustle\Alchemical Hustle\Fatigue Toxicity\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\StatsandPotionsLimitOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\LightHotkey"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ConvenientThiefTools"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\BetterBlight"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\PracticalNecromancyOpenMW\Practical Necromancy"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\12 Practical Necromancy Vendor Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\86 Practical Necromancy+OAAB Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\PharisMagickaRegeneration"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\SpellEffectsRebalance"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\HiddenSeaLoot"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\DevilishVampireOverhaul\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\NoWitnessNoBounty"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ShieldUnequipper"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\CorporealCarryableContainers\Corporeal-Carryable-Containers-master"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ExpansionsIntegrated"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\SigournsMiscModsandPatches\00 Expansions Integrated Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\TabletopAlchemy"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Chargen\NoPopUpChargen"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ZEFFocusMagicka"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Chargen\RacesRESPECtedARaceSkillandAttributeRebalanceMod"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\48 Races RESPECted OpenMW Lua Addon"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Chargen\BirthsignsRESPECtedABirthsignRebalanceMod"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\BewaretheSixthHouseSixthHouseOverhaul\Modular"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\RZerosThrobbingMeataCorprusMeatReplacer\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\R-Zero's Throbbing Meat Normal Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\TribunalRebalance"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\BloodmoonRebalance\Bloodmoon Rebalance"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\ModdingResources\StatsWindowExtenderOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Leveling\NaturalCharacterGrowth\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Leveling\NaturalCharacterGrowth\01 NCG - Normal"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Leveling\SkillEvolution\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\DayspassedBugFixOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Combat\SolthasCombatPackOpenMWLua\Solthas Combat Pack"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\FatigueandSpeedandCarryweightRebalanceOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ClearYourName"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ProjectileOverhaulModular"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\SmartAmmoforOpenMWLua"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\TimeScaleChangeOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\QuillofFeyfolkenScrollEnchanting"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\AlvazirsVariousPatches"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\MagicSpells\DaisysLuaMultimark"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\07 Tamriel Rebuilt+Daisy's Lua Multimark Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ImprovedInnsExpanded\01 TR Addon"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ImprovedInnsExpanded\02 SHotN Addon"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ImprovedInnsExpanded\03 PC Addon"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ImprovedInnsExpanded\05 BCOM Version"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\NomoreDrNerevarine"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ProtectiveGuardsOpenMW\Protective Guards for OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ProtectiveGuardsFactionsandNPCsProtectionsOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\59 Protective Guards Blacklist Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Randomizers\WanderingCreatureMerchantsLuaEdition\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Randomizers\WanderingCreatureMerchantsLuaEdition\01 Extra"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\PickpocketRebalanceOpenMW\Pickpocket Rebalance"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Clothing\BetterClothesComplete\#Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\29 Better Clothes Complete Mara's Blouse Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VariousModsandPatches\AlchemicalHustleIngredientsPatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VariousModsandPatches\CuttingRoomFloorPatches\01 Better Clothes"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Clothing\BetterRobes\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\BetterRobesUpdatedTamrielRebuiltPatch\Better Robes Updated TR Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VariousModsandPatches\CuttingRoomFloorPatches\02 Better Robes"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Clothing\VurtsBetterClothesRetexture\main"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforPremium\VurtsBetterClothesRetexturedNormalMapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Clothing\NewGondolierHelmFixedforOpenMW\NewGondolierHelm"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Clothing\CommonShoePack\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Clothing\DimsClothingGroundObjectReplacer\DIm's Clothing Ground Object Replacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\MageRobes\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\MageRobes\03 Normal and Specular Maps for OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\MageRobes\04 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\MageRobesforOpenMWLua"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\SMTelvanniCeremonialRobe\Telvanni_Robe\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\SMTelvanniCeremonialRobe\Telvanni_Robe\Icons HD 512 for OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\71 Molomo SM Ceremonial Robe Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\TelvanniMagisterRobes\Telvanni Magister Robes-52278-1-25-1683240241\Telvanni Magister robes\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\52 Telvanni Magister Robes Anticheese"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\TelvanniMagisterRobes"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\AesthesiaStrongholdtextures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\AesthesiaStrongholdNormalMaps\Aesthesia Strongholds Normal Maps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\Varioustweaksandfixes\BetterColovianFurHelms\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\Varioustweaksandfixes\BetterColovianFurHelms\01 TD Meshes"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\Varioustweaksandfixes\BetterColovianFurHelms\02 TD HiRes Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\DaedricLordArmorMorrowindEdition"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\NewFistsofRandagulf\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\AdventurersBackpacks"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\63 Adventurer's Backpack No Choice Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\10 Shadow Mimicry's Backpack Retexture (host for modding-openmw.com)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\TheForgottenShieldsArtifacts\TheForgottenShields-Artifacts1.3"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\35 The Forgotten Shields - Artifacts Patched"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\14 Forgotten Shields Artifacts Upscaled Textures, Mesh fixes, and Normals"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\EbonyMailReplacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\SMMaskofDagothUr\sm_mask_eng"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\SMMaskofDagothUr\update_and_normal_map"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\Blademeister\Blademeister\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\Blademeister\BlademeisterVenninAddamasartusPatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\25 Blademeister+Kumarahaz The Bandit Lair Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\41 Blademeister+Daedric Shrine Overhaul Sheogorath Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\GlassGlowset"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\GraphicHerbalismMWSEandOpenMWEdition\19 Glass Glowset ores"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\ModdingResources\OAABData\05 Glass Glowset Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\MoreGlowingMods\GraspingFortuneArchitectureGlow"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\MoreGlowingMods\GraspingFortuneArmourGlow"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\MoreGlowingMods\GraspingFortuneClothGlow"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\MoreGlowingMods\OAABGlassGlow"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\MoreGlowingMods\OAABTombsTowersMagebane"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\MoreGlowingMods\SummersetGlassGlow"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\MoreGlowingMods\TamrielRebuiltGlassGlow"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\SWJsminorcompabilitypatches\METGlassGlowset"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\GlowingSecretsoftheCrystalCity"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\ArgonianFullHelmsLoreIntegratedandModdersResourcev11\Argonian Full Helms Lore Integrated v1.1\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\BootsforBeastsAmenophisRevision\0 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\BootsforBeastsAmenophisRevision\2 Compatibility Patches"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\BootsforBeastsAmenophisRevision\TR"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\HistHelmsMoreArgonianShapedHelms\Hist Helms - LeFemm"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\EverythingMustGlowHistHelms\Hist Helms Glow - LeFemme"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ProtectedBeasts\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ProtectedBeasts\01 Argonian Full Helms"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ProtectedBeasts\02 Argonian Full Helms Tamriel Data"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ProtectedBeasts\03 Boots for Beasts"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ProtectedBeasts\04 Boots for Beasts Tamriel Data"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ProtectedBeasts\05 Hist Helms"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\DynamicTelvanniArmorReplacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\BearArmorReplacer\BearArmorReplacer_en-44992-1-01"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\SMBoiledNetchLeatherArmorReplacer\SM_Boiled_Armor_Set_Vanila Style\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\SMMasqueClavicusVileReplacer\sm_CV_mask\WithOut_Violet_Effect\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Armor\SMHelmofOreynBearclawReplacerOverhaul\Helm_of_Oreyn Bearclaw\data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\RemirosModGraveyard\IceBladeoftheMonarchReplacerOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\RemirosModGraveyard\MehrunesRazorReplacerOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\RemirosModGraveyard\ChrysamereRepalcer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\Swordandringofnerevar\Trueflame"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\Swordandringofnerevar\Trueflame2K"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\Swordandringofnerevar\MoonAndStar"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\Swordandringofnerevar\MoonAndStar2K"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\SMMaceofAevarStoneSingerReplacer\sm_aevar_mace\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\SMTheToolsofKagrenac\sm_kagrenak_tools\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\ImprovedWeaponMeshCompilation\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\ImprovedWeaponMeshCompilation\02 Hires textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\SWJsminorcompabilitypatches\SmoothOrcishWeapons"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\ImprovedWeaponMeshCompilation\07 Longsword-based Broadsword"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\RealReflectiveWeaponsIron\00 Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\RealReflectiveWeaponsIron\Bonus"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\ImprovedShieldMeshes\00 Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\ImprovedShieldMeshes\02 Patch for Glass Glowset"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\OrientalMeshImprovements"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\DallaraAdamantiumWeaponry\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\DallaraAdamantiumWeaponry\01 Tamriel Data patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\DallaraAdamantiumWeaponry\05 HD 2k textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\DallaraAdamantiumWeaponry\07 2k Normals and Speculars maps OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\DallaraAdamantiumWeaponry\08 High resolution icons OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\WeaponSheathing\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\WeaponSheathingAdditions"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Performance\MorrowindOptimizationPatch\02 Weapon Sheathing Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\ImprovedWeaponMeshCompilation\01 Weapon Sheathing Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\RealReflectiveWeaponsIron\Weapon Sheathing (OpenMW)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\SMTheToolsofKagrenac\update_kg_tools\sheath and glow\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\SWJsWeaponSheathingPatches\Oriental Mesh Improvements"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\DallaraAdamantiumWeaponry\02 Weapon Sheating patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\GlassGlowsetandWeaponSheathingPatch\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\ImprovedWeaponMeshCompilation\03 Glass Glowset Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\ImprovedWeaponMeshCompilation\04 Correct Iron Warhammer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\RemirosUniques"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\SWJsWeaponSheathingPatches\Remiros Uniques"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\RubbersWeaponsPack\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\EltonbrandReplacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\SWJsWeaponSheathingPatches\Eltonbrand Replacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\NewWidowmaker\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\NewBowofShadows\Data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\AnimatedStaffofMagnus\Smoothed"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\GlowingHasedokiStaff"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Creatures\RemirosModGraveyard\VolendrungHD"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\RemirosVolendrungHD"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\SkullcrusherRedone\modern"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\SkullcrusherRedone\diff-spec-normal"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\DaedricCrescentReplacer\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Weapons\DaedricMaul\Daedric Maul\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Audio\AudiobooksofMorrowind"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Audio\AudiobooksofTamrielRebuilt"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Audio\AudiobooksofTamrielData\Audiobooks of Tamriel Data"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\SameLowPriceFix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Audio\MAOSpellSounds"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\65 MAOSpellSoundsxBirthsignsRESPECted SoundFix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\OpenMWImpactEffects"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VariousModsandPatches\openmwimpacteffectspatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Audio\CharacterSoundOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Audio\CharacterSoundOverhaul\Higher Bitrate Sounds"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Audio\openmwfootsteps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Animation\openmwanimatedlevitation"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\S3maphoreOpenMWMusicManagementfromtheFuture\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\S3maphoreOpenMWMusicManagementfromtheFuture\01 Tamriel Rebuilt Playlists"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\S3maphoreOpenMWMusicManagementfromtheFuture\02 Project Cyrodiil Playlists"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\S3maphoreOpenMWMusicManagementfromtheFuture\03 Muse Expansion Playlists"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\S3maphoreOpenMWMusicManagementfromtheFuture\04 Vindsvept Solstheim"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\S3maphoreOpenMWMusicManagementfromtheFuture\05 Secrets of the Crystal City"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\S3maphoreOpenMWMusicManagementfromtheFuture\06 Songbook of the North"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\MUSEMusicExpansionHlaalu\MUSE Expansion - Hlaalu"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\MUSEMusicExpansionAshlander\MUSE Expansion - Ashlander"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\MUSEMusicExpansionRedoran\MUSE Expansion - Redoran"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\TamrielRebuiltOriginalSoundtrack\00 core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\MUSEMusicExpansionSixthHouse\MUSEEXPANSIONsixthhouse"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\MUSEMusicExpansionDaedric\MUSE Expansion - Daedric"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\MUSEMusicExpansionDwemer\MUSE Expansion - Dwemer (Vanilla - Tribunal)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\MUSEMusicExpansionTomb\MUSE Expansion - Tomb (GOTY)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\VindsveptSolstheimforDynamicMusicOpenMW\Vindsvept Solstheim for Dynamic Music (OpenMW)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Music\ProjectCyrodiilMusicAnvilandSutch\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\TheSearchfortheWhiteWave\03 Music (OpenMW - S3maphore)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\UmbraBlademaster"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\UmbraBlademaster"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\WanderingUmbra\wandering_umbra"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\ImmersiveImperialSkirt\imperial_skirt"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\89 BCOM x Immersive Imperial Skirt"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\GondoliersLicense\gondoliers_license"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\ComfyPillowforarestfulsleep\00 Base version"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\FaceoftheHortator\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\RoaringArenaBettingandBloodletting\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\RoaringArenaBettingandBloodletting\02 BCoM\01 Default BCoM"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\RoaringArenaBettingandBloodletting\07 Optional Plugins"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\RoaringArenaBettingandBloodletting\07 Optional Plugins\BloodmoonOptions\02 TombOfTheSnowPrince"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\RoaringArenaBettingandBloodletting\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\CalderaMineExpanded\Caldera Mine Expanded"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\70 Caldera Mine Expanded OpenMW Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\UnchartedArtifacts"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\OAABShipwrecks\01 Patch - Uncharted Artifacts"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\EbonheartUnderworks"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\38 Bounty Hunter Assignments"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\FrozeninTime"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\AndranoAncestralTombRemastered"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\69 Andrano Ancestral Tomb Remastered Skeleton Armor Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\SorcererofAlteration"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\AspectofAzura\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\AspectofAzura\01 OpenMW Addons"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\AncientFoes\Ancient Foes - Version 1.1"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Audio\QuestVoiceGreetings\Quest Voice Greetings 3.82"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\55 Quest Voice Greetings+Quests for Clans and Vampire Legends Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\56 Quest Voice Greetings+Tamriel Data Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\AFFresh\AFFresh"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\FargothSaysHello"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\WilhelmoftheAedra"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BalmoraGravemarket"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\33 AFFresh+Library of Vivec Enhanced Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\CrownofUrshilaku"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\ARiverofFire"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\SuranAshlandsBarrier"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\RedWisdomAnAshlanderProphecy\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\RedWisdomAnAshlanderProphecy\01 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\RedWisdomAnAshlanderProphecy\02 OpenMW Add-Ons"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\ThePopularPlague\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\ThePopularPlague\01 OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\ThePopularPlague\02 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\AColdCell\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\TheSearchfortheWhiteWave\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\TheSearchfortheWhiteWave\02 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\TheSearchfortheWhiteWave"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\ThePatchworkAirshipFleshingoutavanillaquest\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\ThePatchworkAirshipFleshingoutavanillaquest\01 Tomb of the Snow Prince Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\TheMananautsMessage"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Audio\VoiceOverhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\GalensQuestforTruth"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\ThePlagueDoctor"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\TheDoorsofOblivion\The Doors of Oblivion 1.4 quest fix\data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\64 The Doors Of Oblivion Gargoyle OpenMWFix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\DaedricShrineOverhaulFULL\Daedric Shrine Overhaul Full"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\83 Daedric Shrine Overhaul Fixes"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\84 Daedric Shrine Overhaul+Patch for Purists Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\85 DSO Ashalmimilkala Water Height Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\37 Helm of Tohan Naturalized for Daedric Shrine Overhaul Sheogorath"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\44 Daedric Shrine Overhaul Vaermina OpenMW Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\57 NOD+Daedric Shrine Overhaul Molag Bal Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\AetherPiratesDiscovery"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\MudcrabImports"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\QuestlineVivecLighthouseKeeper"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\KeelhouseAquestandhousemodforTamrielRebuilt"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\TamrielRebuiltIntroductionQuestHelpaKhajiitreachtheCityofGoodPeople"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\53 Vennin Addamasartus+DraVashai Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\EarlyTransporttoMournhold"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\MarensMisfitMabrigash"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\TheDevilsDoorstep\main"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CavesandDungeons\TheDevilsDoorstep\patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\RiseofHouseTelvanni\Base Mod"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\RiseofHouseTelvanni\FlaskMeshUpdate"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\RacesRedoneAssortedCompatibilityPatches\Rise of House Telvanni Races Redone Compatibility Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\ExpressiveEyesforMacKomsHeads\04 Rise of House Telvanni Races Redone Compatibility Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\07 Rise of House Telvanni 2.0"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\UvirithsLegacy\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\UvirithsLegacy\Data Files\Addons"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\43 Uvirith Legacy Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\32 OpenMW Fixes For Uvirith's Legacy"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\27 Uvirith's Legacy x Mackom Style TR patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\NullsMinorPatches"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\RacesRedoneAssortedCompatibilityPatches\Uviriths Legacy Races Redone Compatibility Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\NPCs\ExpressiveEyesforMacKomsHeads\06 Uviriths Legacy Races Redone Compatibility Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\BuildingUpUvirithsLegacy\Building Up Uvirith's Legacy"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\TheArchmagistersAbode\data files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\UvirithsLegacy"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\26 Missing Mackom Files from history"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\GreymarchDawnWhispersofJyggalag\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\GreymarchDawnWhispersofJyggalag\01 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\GreymarchDawnWhispersofJyggalag\02 Glass Glowset Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\GreymarchDawnWhispersofJyggalag\03 MWSE Add-Ons"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\GreymarchDawnWhispersofJyggalag\04 White Suran 2 Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\GreymarchDawnWhispersofJyggalag\05 White Suran 2 Patch - Sewers"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\GreymarchDawnWhispersofJyggalag\06 OpenMW Normal Maps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\GreymarchDawnWhispersofJyggalag\07 OpenMW HD Icons"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SharperNormalMapsforGreymarchDawnWhispersofJyggalag"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Interiors\TribunalFacelift\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\CanonicalGearOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\ImperialLegionExpansion"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\68 MOMW BCOM Imperial Legion Expansion patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\ImperialFactions"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\ShishiRedoranOutpost"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\CensusandExciseOfficeFaction"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\JointheDarkBrotherhoodDarkBrotherhoodFactionMod"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\FMILegionDialogue"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\QuarraClanRefreshed\01 Refreshed"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\QuarraClanRefreshed\02 Optional Patches - Modular"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\QuestsforClansandVampireLegendsQCVL\Quests for Clans and Vampire Legends\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\22 BCOM+Quests for Clans and Vampire Legends Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\16 QCVL Blood Altar x Diverse Blood Fix"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\TempleMaster\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\TempleMaster\01 OpenMW Addons"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\TempleMaster\04 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\WhiteSuran2MDEdition\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\WhiteSuran2MDEdition\02 Glow in the Dahrk"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\WhiteSuran2MDEdition\03 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\19 White Suran Normal and Specular Mapped"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\GuildsFactions\OAABBrotherJunipersTwinLamps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\RatherNiceFactorsEstate\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\RatherNiceFactorsEstate\01 Core - Glow in the Dahrk"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\RatherNiceFactorsEstate\02 Patch - Patch for Purists 4.0.X"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\74 Fargoth's Mountain Hut Fixed Hammocks"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\FabulousHlaaloManor"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\FabulousHlaaloManor\Options-see-readme"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PlayerHomes\DraggleTailShack"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\04 Draggle-Tail Shack Price Adjustment"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Randomizers\QuestCorpsesRandomizerforShipyardsofVvardenfell"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Randomizers\OhNoStolenReports"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Randomizers\FarvynOreynsPositionRandomizer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Randomizers\DinsPositionRandomizer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Randomizers\SuranDancerRandomized"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landscape\Mistify\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Environment\RemirosMinorRetexturesMistRetexture"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\TheDreamistheDoor"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Flora\ParasolParticles\01 OAAB_Data Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\15 Perfectly Proficient Parasol Particles Performance Patch\00 Project Atlas"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\SpellsReforged\SR_1"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\SpellsReforged\SR_3"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\NoShieldSparkle"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\PluginlessNoGlow"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\DiverseBlood\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\DiverseBloodforTamrielRebuiltandProjectTamriel\Diverse Blood - Tamriel Data\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\DiverseBloodforTamrielRebuiltandProjectTamriel\Diverse Blood - Tamriel Data\01 Tamriel Rebuilt"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\DiverseBloodforTamrielRebuiltandProjectTamriel\Diverse Blood - Tamriel Data\02 Project Cyrodiil"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\DiverseBloodforTamrielRebuiltandProjectTamriel\Diverse Blood - Tamriel Data\03 Skyrim Home of the Nords"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VariousModsandPatches\OAABGrazelandsDiverseBloodPatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VariousModsandPatches\OAABShipwrecksDiverseBloodPatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VariousModsandPatches\OAABTelMoraDiverseBloodPatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\ImprovedPropylonParticles"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\SkiesandWeather\SolthasBlightWeatherPack\Solthas Blight Weather Pack"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\DistantFixesLuaEdition"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\LushSynthesis"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\LushSynthesis\LUSH_TR\MERGED"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\LushSynthesis\LUSH_UNDERWATER"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\RemirosGroundcover\00 Core OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\RemirosGroundcover\01b Thicker Grass OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Groundcover\RemirosGroundcoverTexturesImprovement"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\SolstheimTomboftheSnowPrince\012 Remiros' Groundcover for TOTSP"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\05 Grass Patches\01 Remiros Groundcover"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\24 BCOM+Dagon Fel Lighthouse+Remiros' Groundcover Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\05 Grass Patches\02 Caldera Priory Grass Patches"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\51 Remiros AI MOMW Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\61 Remiros BC MOMW Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\OAABGrazelands\01 Remiros Groundcover GL Patch for Trackless Grazelands"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\SkiesandWeather\SkiesIV\Skies - .IV"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\SkiesandWeather\SkiesIV\Particles"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\OhGodSnowforSkiesivandOpenMW\Data"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\11 SophiasClearBlueSkies"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\SkiesandWeather\NewStarfields\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\15 Dying Moons New Starfields Upscaled"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\SkiesandWeather\Meteors"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\GlowintheDahrk\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\GlowintheDahrk\01 Hi Res Window Texture Replacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\GlowintheDahrk\04 Raven Rock Glass Windows"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\GlowintheDahrk\07 Telvanni Tower Interior Glow OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\GlowintheDahrkNormalSpecularPBRMaps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\17 GITD Telvanni Dormers"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Performance\ProjectAtlas\06 Glow in the Dahrk Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\04 Project Atlas and GiTD Patches\02 GITD + Atlas"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\ModdingResources\OAABData\08 GitD Shacks Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MonosMinorModdities\TomboftheSnowPrincePAandGitDPatch\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MonosMinorModdities\TomboftheSnowPrincePAandGitDPatch\01 Normal Maps for OpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Landmasses\SolstheimTomboftheSnowPrince\001 Core - Interiors With Glow in the Dahrk"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\Nordsshutyourwindows\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\Nordsshutyourwindows\01 Interior sunrays"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VariousModsandPatches\nordsshutyourwindowspatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\MagicallightsforTelvanni\OAAB - Magical Lights\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\MagicallightsforTelvanni\OAAB - Magical Lights\01 BCoM Version"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Architecture\MagicallightsforTelvanni\OAAB - Magical Lights\02 Telvanni Council House Pathway"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Lighting\ImprovedLightsforAllShaders\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Lighting\ImprovedLightsforAllShaders\01 Smoke and Steam Emitters"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Performance\ProjectAtlas\08 ILFAS Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\OpenMWvanillacandlespatchedwithEnlightenedFlamesandILFAS"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\LogsonFire\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\LogsonFireTamrielRebuilt\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\LogsonFireSkyrim\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\LogsonFireCyrodiil\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\LogsonFire\01 HD Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\LogsonFire\02 Apel's Fire Retexture Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\VFX\OpenMWDynamicAmbientVisualEffects"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VariousModsandPatches\DynamicAmbientVisualEffectsMagicalLightsPatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\34 MOMW Logs On Fire Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\CitiesTowns\BeautifulCitiesofMorrowind\Patches\85 Logs on fire"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\DunmerLanternsReplacer\01 Glow Effect"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\DunmerLanternsReplacer\04 Tamriel_Data Patch - Glow Effect"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\DunmerLanternsReplacer\05 OAAB_Data Patch - Glow Effect"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\NormalMapsforEverything\DunmerLanternsReplacer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\AshlanderLanternsRetextureAestetikaofVvardenfell\HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\AshlanderLanternsRetextureAestetikaofVvardenfell\OMW Normal"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\AshlanderBugsCarapacesRetextureAestetikaofVvardenfell\HQ"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\SilverwareRepolished\00 Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\SilverwareRepolished\2k Atlas Texture (Bigjpg+MET)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\SilverwareRepolished\OpenMW Compatible Normal Map (2k)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\SilverwareRepolished\Separate Silverware Textures Replacer (Bigjpg+MET)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\SilverwareRepolished\Wax Textures 4x Vanilla (Bigjpg)"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\SilverwareRepolished\OpenMW vanilla candles patched-Compatibility Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\AnimatedMorrowindandWeaponSheathingpatchforOpenMW"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VariousModsandPatches\OAABDiverseBloodpatch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\05 AFFresh+Samarys Ancestral Tomb Expanded Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\10 Ebonheart Underworks MOMW Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\13 Doors of Oblivion+TOTSP Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\16 Uvirith's Legacy+BCOM Arena Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\17 Uvirith's Legacy+Daedric Shrine Overhaul Molag Bal Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\18 Uvirith's Legacy+Daedric Shrine Overhaul Sheogorath Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\19 Uvirith's Legacy+OAAB Tel Mora Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\21 Imperial Factions Patched"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\ArukinnsBetterBooksandScrolls"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\BookJacketsCompleteCollectionHD\book-jackets\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\MelchiorsMagnificentManuscripts\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\FurnitureandClutter\MelchiorsMagnificentManuscripts\01 Book Jackets Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\VariousModsandPatches\OAABBookJackets"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\AnNwahsGuideToModernCultureAndMythology"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Camera\ActionCameraSwap"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\MOMWGameplay\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\MOMWGameplay\01 Total Overhaul"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\PerfectPlacement"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\BoundBalance"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\GoHome"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\BetterMerchantsSkillsOpenMW\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Gameplay\FriendlyAutosave"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Minigames\Nineholes\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Minigames\Nineholes\01 Ald-ruhn, The Rat In The Pot"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Minigames\Nineholes\04 Ebonheart, Six Fishes"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Minigames\Nineholes\05 Moonmoth Legion Fort"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Minigames\Nineholes\06 Pelagiad, Halfway Tavern"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Minigames\Nineholes\07 Sadrith Mora, Dirty Muriel's Cornerclub"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Minigames\Nineholes\08 Seyda Neen, Arrille's Tradehouse"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Minigames\Nineholes\09 (BCOM) Suran, Goldyn Belaram"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Minigames\Nineholes\10 Vivec, Elven Nations Cornerclub"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PostProcessingShaders\MOMWPostProcessingPack\00 RecommendedConfig"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PostProcessingShaders\MOMWPostProcessingPack\01 XE-Shaders"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PostProcessingShaders\MOMWPostProcessingPack\02 OMWFX-Shaders"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PostProcessingShaders\MOMWPostProcessingPack\03 ZesterersVolumetricClouds"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PostProcessingShaders\MOMWPostProcessingPack\04 WareyaOpenMWShaders"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\InterfaceReimaginedforOpenMW\main"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\InterfaceReimaginedforOpenMW\patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\03 Interface Reimagined Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\50 Skip Intro Videos Fixed"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\SMEUsefulWidgetsActorInfoHealthBarHitChance\SMEUsefulWidgetsActorInfoHealthBarHitChanceEdited"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\Enchantingiconsasyouwish\Ice\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\SmallSkyrimCrosshairOpenMWcompatible"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Quests\TheSearchfortheWhiteWave\01 OpenMW Addons"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\ProjectCyrodiilSSQNPatch\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\OpenMWSkyrimStyleQuestNotifications"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\SkyrimStyleQuestNotificationsLegendaryEdition\Data Files"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\SkyrimStyleQuestNotificationsGreatPatchHub"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Randomizers\ScalableDwemerPuzzleBoxRandomizer"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Environment\HarvestLights"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\SimpleHUDforOpenMWwithcompassorminimap\version 03 - immersive skyrim"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MOMWPatches\39 Simple HUD+SME Patch"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\VanillaStyleHDIconsforAttributesandSkills"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\GonzosSplashScreens\00 Core"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\GonzosSplashScreens\01 Monopteryx Creature Art"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\GonzosSplashScreens\02 Wagner Vvardenfell Maps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\GonzosSplashScreens\03 Wagner Bloodmoon Maps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\GonzosSplashScreens\04 Wagner Tribunal Map"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\GonzosSplashScreens\05 Tamriel Rebuilt Maps"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\GonzosSplashScreens\06 Myrcenart Addon"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\PatchesFixesandConsistency\MonosMinorModdities\UpscaledJournalandBookmarkBGReplacement\01 2x Resolution Textures"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Fonts\AlternativeTrueTypeFonts"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\BigIcons\07 8X Textured"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\VvardenfellAnimatedMainMenu\00 Animated Main Menu"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\UserInterface\HDIntroCinematicEnglish"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\Tools\MOMWToolsPack"
data="D:\Spel\Morrowind\MorrowindMods\total-overhaul\TexturePacks\SophiesSkoomaSweetshoppe\30 Temporary Fixes"
# #
# CONTENT FILES #
# #
content=Morrowind.esm
content=Tribunal.esm
content=Bloodmoon.esm
content=Patch for Purists.esm
content=Rise of House Telvanni.esm
content=Ownership Overhaul.esm
content=Wares-base.esm
content=Tamriel_Data.esm
content=RepopulatedMorrowind.ESM
content=RoaringArena.esm
content=TR_Mainland.esm
content=OAAB_Data.esm
content=Sky_Main.esm
content=Cyr_Main.esm
content=Solstheim Tomb of The Snow Prince.esm
content=NOD - Core.esm
content=AFFresh.esm
content=OAAB_Saplings OpenMW Patch.ESP
content=DistantEbonTower.ESP
content=Wares_lists_OAAB.ESP
content=Wares_lists_TD.ESP
content=Wares_vanilla_random_lists.ESP
content=Wares_traders.ESP
content=Wares_containers.ESP
content=Greetings for No Lore.esp
content=Expansions Integrated - Fewer BM Creatures.esp
content=Diverse Khajiit.ESP
content=MDMD - More Deadly Morrowind Denizens.ESP
content=Expansions Integrated MDMD Patch.ESP
content=Cutting Room Floor - Free Slaves.esp
content=artifacts.esp
content=Better Clothes Complete.ESP
content=Baar Dau - Ministry of Truth.esp
content=Unique_Tavern_Signs_for_Tamriel_Rebuilt_v2.ESP
content=Clean_EbonyMailReplacer.ESP
content=RubbersWeaponsPack.ESP
content=Imperial Legion Expansion.esp
content=Morrowind Anti-Cheese.ESP
content=Morrowind_Anti-CheeseQuest_Voice_Greetings_patch.esp
content=Better Blight.ESP
content=solBlightByDay.esp
content=solDeadlyBlight.esp
content=solWeatherRebalance.esp
content=Tribunal Rebalance.ESP
content=Bloodmoon Rebalance.ESP
content=OAAB - The Ashen Divide.ESP
content=OAAB_Grazelands.ESP
content=Ebonheart_Underworks.esp
content=EbonheartUnderworksMOMWPatch.esp
content=Bounty Hunter Assignments.ESP
content=Clean_imperial_skirt.esp
content=ImmersiveImperialSkirtBCOMpatch.esp
content=PCD_PFP_Compat.esp
content=Dialog_Saved.ESP
content=NoMoreStageDiving_TalkativeGirls.ESP
content=Samarys Ancestral Tomb Expanded.esp
content=Samarys Ancestral Tomb Expanded Corpse Fix.esp
content=Sanctus Shrine.esp
content=AndranoTombRemastered.esp
content=AndranoTombRemastered-SkeletonArmorPatch.esp
content=Sorcerer of Alteration.ESP
content=Aspect of Azura.ESP
content=OAAB - Foyada Mamaea.ESP
content=Manor Banners.ESP
content=mistify.ESP
content=The Dream is the Door.ESP
content=COI.ESP
content=Bob's Diverse Blood.ESP
content=Diverse Blood - Tamriel Data.ESP
content=Diverse Blood - Tamriel Rebuilt.esp
content=Diverse Blood - Project Cyrodiil.ESP
content=Diverse Blood - SHotN.ESP
content=OAAB - Diverse Blood Patch.omwaddon
content=OAAB_Grazelands - Diverse Blood Patch.omwaddon
content=Silt Strider Animation Restored.ESP
content=Nasty Camonna Tong.esp
content=Hospitality_Papers_Expanded_v2.7.esp
content=Cutting Room Floor - Characters.esp
content=Cutting Room Floor - Missing Persons TR.esp
content=Cutting Room Floor - Dead Heroes.esp
content=Khajiit-BaseReplace.ESP
content=Khajiit-NPCPlayable.ESP
content=Hag Hair for MacKom.ESP
content=Familiar Looks - Unique Characters MacKom-ed.esp
content=Better Bodies TR.ESP
content=New Argonian Bodies - Clean.esp
content=New Khajiit Bodies - Clean.esp
content=wandering_umbra.ESP
content=Face of the Hortator.esp
content=correctUV Ore Replacer_fixed.esp
content=Uvirith's Legacy_3.53.ESP
content=UL_BookJackets_Add-on.esp
content=mdmd - uvirith legacy cooperation.ESP
content=The Archmagister's Abode.ESP
content=Know Thy Ancestors.esp
content=LuaMultiMark.omwaddon
content=TR_LuaMultimark_patch.esp
content=Finished Morrowind - CORE PATCH - Part 4 - More Audio Dialogue for Service NPCs.ESP
content=DD_Caldera_Expansion.esp
content=DD_Caldera_Expansion_OpenMWFix.esp
content=Speechcraft Rebalance.omwaddon
content=SpeechcraftRebalanceRebalanced.esp
content=Talking Trains Speechcraft.omwscripts
content=wandering-creature-merchants-lua-edition.omwscripts
content=wandering-creature-merchants-lua-edition.omwaddon
content=Pickpocket Rebalance.omwaddon
content=Stats & Potions Limit.esp
content=Stats & Potions Limit.omwscripts
content=AH_GMSTs.ESP
content=AH_Magic.ESP
content=AH_Ingredients_TD&OAAB.omwaddon
content=bms.omwscripts
content=FtRP_Services.ESP
content=PR Real Disposition Base.esp
content=BCOM_Animated_GhostGate_Statues.ESP
content=BCOM_Tribal_Erabenimsun.ESP
content=BCOM_PfP_patch.ESP
content=FMI_Nice_to_Meet_You.ESP
content=FMI_CaiusBigPackage.ESP
content=FMI_#NotAllDunmer.ESP
content=FMI_ServiceRefusal_Contraband.ESP
content=Indoril & Her Hand Armor Privileges.omwaddon
content=Indoril & Her Hand Armor Privileges.omwscripts
content=FMI_Legion_Dialogue.ESP
content=Dubdilla Location Fix.ESP
content=AFFresh+SamarysAncestralTombExpanded.esp
content=AFFreshLibraryOfVivecEnhanced.esp
content=AFFargoth.ESP
content=AFFA_Wilhelm.ESP
content=DM_CrownOfUrshilaku.ESP
content=DM_RiverOfFire.ESP
content=SuranBarrierRocks.ESP
content=Red Wisdom.esp
content=The Popular Plague.ESP
content=The Popular Plague.omwscripts
content=A Cold Cell.ESP
content=TheSearchForTheWhiteWave.ESP
content=Dwemer Airship.ESP
content=Dwemer Airship_Exterior.ESP
content=TheMananautsMessage.ESP
content=PR Voice Overhaul.esp
content=Galen's Quest for Truth.ESP
content=Daedric Shrine Overhaul FULL.esp
content=Daedric Shrine Overhaul Vaermina OpenMW Patch.esp
content=NOD_DaedricShrineOverhaul_patch.esp
content=UL_-_Daedric_Shrine_Overhaul_Sheogorath.esp
content=Helm of Tohan Naturalized.esp
content=UL_-_Daedric_Shrine_Overhaul_Molag_Bal_Patch.esp
content=The Doors of Oblivion 1.4.esp
content=Daedric Shrine Overhaul Fixes.esp
content=Daedric Shrine Overhaul+Patch for Purists Fix.esp
content=Gargoyle Fix.esp
content=Doors of Oblivion+TOTSP Patch.esp
content=Clean_Andrethi.esp
content=Clean_Vennin's Ulummusa Overhaul.ESP
content=Clean_Vennin's Hlervi Tomb.ESP
content=Vennin's Sinsibadon Overhaul.ESP
content=Clean_Addamasartus Overhaul.ESP
content=Aether Pirate's Discovery.omwaddon
content=MarenMabrigash.ESP
content=Mudcrab Imports.esp
content=RP_Great_Scathes.ESP
content=Marbled Zafirbel Bay.ESP
content=Shipyards of Vvardenfell.esp
content=gondoliers_license.esp
content=ComfyPillowForARestfulSleep.ESP
content=Dwemer Legacy Reforged - Arkngthunch-Sturdumz.esp
content=OAAB Dwemer Pavements.ESP
content=Dwemer Legacy Reforged - Bthungthumz and Druscashti.esp
content=TracklessGrazelandOpenMW.esp
content=Trackless Grazeland OAAB Dwemer Pavements Patch.ESP
content=Bal'laku - The Lonely Towers.esp
content=Baan_Binif.ESP
content=DM_IndalenWoe.ESP
content=DM_SouthernAshlandsTrees.ESP
content=DM_AshlandsWall.ESP
content=OAAB Pomegranates.ESP
content=Kogoruhn - Extinct City of Ash and Sulfur.esp
content=RoHt_Kogoruhn_patch.esp
content=Dunmer Stronghold - Andasreth V1.0.esp
content=Dunmer Stronghold - Falasmaryon V1.0.esp
content=Dunmer Stronghold - Falensarano V1.0.esp
content=Dunmer Stronghold - Hlormaren V1.0.esp
content=Dunmer Stronghold - Indoranyon V1.0.esp
content=Dunmer Stronghold - Marandus V1.0.esp
content=Dunmer Stronghold - Rotheran V1.0.esp
content=Dunmer Stronghold - Valenvaryon V1.0.esp
content=Uncharted Artifacts.esp
content=OAAB - Shipwrecks.esm
content=OAAB - Shipwrecks - Diverse Blood Patch.omwaddon
content=OAAB - Shipwrecks - TR Patch.ESP
content=Justice4Khartag.esp
content=OAAB_Shipwrecks_JFK_patch.esp
content=Projectile Overhaul - Faster Magic Missiles.esp
content=Projectile Overhaul - Faster Projectiles.esp
content=Projectile Overhaul - Recovery Chance.esp
content=Containers Animated.esp
content=Velothi Wall Art.ESP
content=Concept art palace.ESP
content=CAP_Interior_Cluttering.ESP
content=CAP_Flame.ESP
content=CAP_Flame patch.omwaddon
content=CAP_Rotating_Planets.ESP
content=CAP_Bridge.ESP
content=CAP_Cluttered Staircase.ESP
content=CAP_Door.ESP
content=The Mountain of Fear.ESP
content=Bitter Coast Waterway.esp
content=Bitter Coast Waterway Cliff Fix.esp
content=Plague Doctor Sanctuary.ESP
content=Little Landscape - Path to Pelagiad.esp
content=Little Landscape - Path to Pelagiad Rock Fix.esp
content=Gates of Ascadia.ESP
content=Faces of Vel - Ash Mire.ESP
content=Unholy Trinity Complete.esp
content=Unique Dagoth Brandy & Amulet.ESP
content=Lucid Disturbing Dreams.ESP
content=kd_ldd.omwscripts
content=Better Skulls.ESP
content=Better Robes TR.esp
content=Better Robes.ESP
content=New Randagulf's Fists.ESP
content=BC_mara_fix.esp
content=Census_and_Excise_Office_Faction.ESP
content=Hidden Sea Loot.ESP
content=Astrologians Guild.esp
content=Dark Brotherhood.esp
content=ABCmod.ESP
content=PR Perfect Scum.esp
content=Eltonbrand Replacer.ESP
content=New Widowmaker.ESP
content=New Bow of Shadows.esp
content=Blademeister.esp
content=BlademeisterDaedricShrineOverhaulSheogorathPatch.esp
content=Blademeister_Vennin_Addamasartus_Patch.esp
content=Clean_Daedric_Maul.ESP
content=Clean_Mines and Caverns.esp
content=OAAB_Grazelands_Mines_and_Caverns_patch.esp
content=Clean_Vennin's Pulk Overhaul.ESP
content=Adventurer's backback.ESP
content=Adventurer's backpack no-choice.esp
content=SecretsOfTheCrystalCity.esp
content=RPNR_Library.ESP
content=NOD_RPNR_Library_patch.esp
content=RepopulatedVassirDidanatMine.ESP
content=Imperial Factions.ESP
content=sp_shishi.ESP
content=Cutting Room Floor - Extra Jobs.esp
content=Cutting Room Floor - Extra Orders.esp
content=Cutting Room Floor - Quests.esp
content=CRFJobs_BCoM_patch.esp
content=RC_VivecsMuatra.ESP
content=TR_Factions.esp
content=quarraclan_refreshed.esp
content=quarraclan_refreshed - Morrowind Anti-Cheese.esp
content=quarraclan_refreshed - Tamriel_Data.esp
content=Quests for Clans and Vampire Legends.ESP
content=QCVL_BCoM_fix.esp
content=Quill of Feyfolken 2.0.esp
content=Quill of Feyfolken 2.0-OpenMW-Patch.omwaddon
content=nopopup-chargen.esp
content=Quest Voice Greetings.ESP
content=nopopup-chargen-quest-voice-greetings-patch.esp
content=Idle Talk.ESP
content=SR_1_BoundSpells.esp
content=SR_3_ElementalShields.esp
content=UL_3.5_TR_24.12_Add-on.esp
content=FM - Unique Items v1.0.ESP
content=FM - Unique Items v1.0 - PfP.ESP
content=Unique Jewelry Redone.ESP
content=Vivec_Voice_addon TRIBUNAL - Refreshed - OpenMW.esp
content=Cutting Room Floor - Voice Lines.esp
content=Umbra, Blademaster.ESP
content=No more Dr Nerevarine.ESP
content=Tel_Eurus.esp
content=Tel Eurus Anticheese.esp
content=Ancient Foes.esp
content=Caldera Priory.ESP
content=The Devil's Doorstep.ESP
content=TabletopAlchemy.omwscripts
content=OAAB Leveled Lists.ESP
content=Dwarven Spectres BB.ESP
content=ST_Books_Wares_OAAB.ESP
content=Store Entrance Chimes - Alt Ver.ESP
content=Store Entrance Chimes - Cyrodiil.ESP
content=Store Entrance Chimes - TR Mainland.ESP
content=PherimAnimatedBellowsSounds.omwaddon
content=HD Forge.omwscripts
content=Flies.ESP
content=RP_fireflies.ESP
content=Hircine's Artifacts.ESP
content=The Madstone.ESP
content=solSixthHouseAmulet.esp
content=BugMuskPerfume.esp
content=Logs on Fire.esp
content=Logs on Fire Tamriel Rebuilt.esp
content=Logs on Fire Skyrim.esp
content=Logs on Fire Cyrodiil.esp
content=Dynamic Ambient Visual Effects.omwscripts
content=Royal_Barenziah.ESP
content=Bards of Bardenfell.esp
content=Shady Sam.ESP
content=MaiqMainland.esp
content=Sload and Slavers.ESP
content=Sloadic Transport.ESP
content=MDMD - Creatures Add-On.ESP
content=Meteor.esp
content=Frozen in Time.esp
content=Clean_sm_golden_mask.ESP
content=GITD_Telvanni_Dormers.ESP
content=GITD_WL_RR_Interiors.esp
content=fargoths_mountain_hut.esp
content=Fabulous-Hlaalo-Manor.ESP
content=Fabulous-Hlaalo-Manor-Ralens-Clutter.ESP
content=Fabulous-Hlaalo-Manor-Fabulous-Servant-Quarters.ESP
content=Fabulous-Hlaalo-Manor-DOOR-HOTFIX.ESP
content=Draggle-Tail Shack.ESP
content=DraggleTailPriceAdjustment.esp
content=RR_Telvanni_Lighthouse_Tel Branora_Eng.ESP
content=RR_Telvanni_Lighthouse_Tel Vos_Eng.ESP
content=RR_Vivec_Statues_Eng.esp
content=ghastly gg.esp
content=Holamayan Island.esp
content=Static Switching System.esp
content=The Grove of Ben'Abi Enhanced.ESP
content=Mid Mushroom Overhaul.ESP
content=RacesRESPECted.esp
content=racesrespected.omwscripts
content=BirthsignsRESPECted.esp
content=Practical Necromancy.omwaddon
content=Practical Necromancy Vendor Patch.esp
content=Practical Necromancy+OAAB Fix.esp
content=Spell_Effect_Rebalance_Open.ESP
content=NoWitnessNoBounty.omwaddon
content=NoWitnessNoBounty.omwscripts
content=shield-unequipper.omwscripts
content=Corporeal-Carryable-Containers.omwscripts
content=Ash Vampire Script Fix.esp
content=Sixth House Rebalance.ESP
content=Sunder and keening hurt on pickup.ESP
content=Unused Dagoth Placement.ESP
content=Riekling Fix & Expansion.ESP
content=OAAB Creature Loot.ESP
content=OAAB Leveled Creatures.ESP
content=Unique_CaveRats.ESP
content=PR Winged Twilight Rebalance.esp
content=PR Atronach Rebalance.esp
content=Missing snow armor.esp
content=TOTSP TD Content Integration.esp
content=TOTSP_Patch_for_Purists_5.0.6.esp
content=TOTSP_Forceful_Travel_NPC_Override.ESP
content=Guar stables of Vivec.ESP
content=Immersive Mournhold.esp
content=Immersive Mournhold Corner Tower Remover Patch.esp
content=Berandas Overhaul.esp
content=The_corprusarium_Exp.ESP
content=Corprusarium_Doors_of_Oblivion_Patch.ESP
content=AetherPiratesDiscoveryCorprusariumExperiencePatch.esp
content=OAAB_Tel Mora_Female Guards.ESP
content=distant-fixes-lua-edition.omwscripts
content=tamrielrebuilt.omwscripts
content=audiobook-openmw.omwscripts
content=book-jackets.esp
content=OAAB_BookJackets.omwaddon
content=ScalableDwemerPuzzleBoxRandomizer.omwscripts
content=mtrPQCR_ShipsOfVvardenfell_Compat.esp
content=RepopulatedMorrowind.esp
content=RepopulatedBloodmoon.ESP
content=RepopulatedSkyrim.ESP
content=Mage Robes.ESP
content=RepopulatedTheWolverineHall.esp
content=mage-robes-for-openmw-lua.omwscripts
content=dynamic-telvanni-armor-replacer.omwscripts
content=Telvanni Magister Robes.esp
content=Telvanni Magister Robes Anticheese.esp
content=RepopulatedMorrowind_MageRobes.ESP
content=RepopulatedMorrowind_ImmersiveMournhold.ESP
content=RepopulatedMorrowind_OAAB_Data.ESP
content=Creatures_RP_Purist.ESP
content=Creatures_RP_Soulless summons.ESP
content=Daedra Use Bound Equipment for OpenMW.omwscripts
content=Clean_Vennin's Hlaalu Tomb.ESP
content=Clean_Vennin's Shal Overhaul.ESP
content=VeninXPracticalNecromancy.esp
content=Shal Overhaul Skeleton Fix.esp
content=Clean_Vennin's Lleran Overhaul.ESP
content=Clean_Vennin's Punabi.ESP
content=Nordic Dagon Fel NPCs.ESP
content=TR_BCOM_Patch.ESP
content=Province_Cyrodiil_BCOM_patch.ESP
content=ZEF_FocusMagicka_1.2.2.esp
content=BCOM_Cluttered_Canal.ESP
content=Superb Shulk Eggmine.ESP
content=Dungeon Details -- Abaesen-Pulu Egg Mine.esp
content=The Vestiges of Tukushapal.ESP
content=Stav_Stormkiss Reforged.esp
content=Dungeon Details -- Assemanu.esp
content=Dungeon Details -- Yakin.esp
content=Dungeon Details -- madas grotto.esp
content=Dungeon Details -- Nimawia Grotto.esp
content=Dungeon Details -- Malmus Grotto.esp
content=Dungeon Details Nimawia and Malmus Grotto Seam Fix.esp
content=OAAB - Hawia_Egg_Mine.ESP
content=Hawia Infrastructure.ESP
content=randomfarvyn.esp
content=randomdin.esp
content=dgrandom.esp
content=TelvanniSeaBeacons.ESP
content=Beautiful cities of Morrowind.ESP
content=BCOM_Vanilla_Skar.ESP
content=BCOM_RR_Statues.ESP
content=BCoM_logs_on_fire.ESP
content=BCoM_Eight_Plates_Quest_Addon.ESP
content=RP_Ald'ruhn_Architecture_Variety.ESP
content=Unique Banners and Signs.esp
content=Unique Banners and Signs Rat in the Pot.esp
content=LB_RatPot.ESP
content=LB_TempleBalmora.ESP
content=BCoM_Khuul_Lighthouse_02.ESP
content=Magical Lights.ESP
content=Magical Lights_Council Pathway.ESP
content=DM_TelvRRtoOAAB.ESP
content=ROHT_2_0_8.ESP
content=UL_3.5_RoHT_1.52_Add-on.esp
content=UL_3.5_OpenMW_1.3_Add-on.esp
content=RP_Maar_Gan.ESP
content=RP_Maar_Gan_Ashlander_Addon.ESP
content=BCOM_Decorated_Cantons.ESP
content=BCOM_Vivec_Arena_planters.ESP
content=BCOM_Vivec_Planters.ESP
content=BCOM_Vivec_Street_Vendors.ESP
content=BCOM_Vivec_Temple_Fountains.ESP
content=HumblePrayerHall.ESP
content=Memento Mori - BCOM Patch.ESP
content=Memento Mori.ESP
content=Memento Mori - OpenMW Patch.ESP
content=Planters for Ajira.ESP
content=Under-Skar.ESP
content=RPNR_Hall_of_justice.ESP
content=OAAB Market.ESP
content=Hanging Gardens of Suran.esp
content=Of_Murk_and_Mussels.esp
content=Melodies and Moonlight.esp
content=Of Musk and Mer A Sadrith Mora Tale.esp
content=IGE.ESP
content=BalmoraHighTownBellBCOM.ESP
content=Raven Rock Enhanced for TOTSP.ESP
content=Solstheim Interior Overhaul Project.ESP
content=Cliff_racer_restored.ESP
content=Stone Halls of Solstheim_TotSP.ESP
content=Drethos_Ancestral_Tomb.ESP
content=The Wake of Hanin.ESP
content=The Wake of Hanin - TR Goblet Fix.ESP
content=What Kwamas Forage - Egg Mine Mod.esp
content=RPNR_Shrine_Of_Azura.ESP
content=RPNR_Shrine_Of_Azura_Aspect_Of_Azura_Patch.ESP
content=Djangos Dialogue.ESP
content=Djangos Dialogue - Patch for Purists.esp
content=Improved Inns Expanded.esp
content=Improved Inns Expanded - PC Addon.esp
content=Improved Inns Expanded - SHotN Addon.esp
content=Improved Inns Expanded - TR Addon.esp
content=Nordic Dagon Fel.ESP
content=Dagon Fel Mill.ESP
content=Dagon_Fel_Lighthouse.ESP
content=BCOM_Sadrith_Mora_dock_expanded.ESP
content=BCoM_South_Gates_Sadrith_Mora.ESP
content=LDM - Context Matters 1.7.ESP
content=RP_Arano_Plantation_Windmill.ESP
content=Concept_Arts_plantations.esp
content=BCOM_OAAB_Pomegranates_patch.ESP
content=MinorPlantationsRedone.esp
content=AscadianFarmhouses.ESP
content=onsr.esp
content=BCOM_pathgrid_reset.ESP
content=BCoM_WaterWorks.ESP
content=Balmora waterworks merchants addon.ESP
content=BalmoraGravemarketBCOM.ESP
content=Vivec_Lighthouse.ESP
content=Little_Landscape_-_Path_to_Vivec_Lighthouse.esp
content=Vivec Lighthouse Questline.esp
content=Great Seawall of Vivec.ESP
content=Little Landscape Vivec Islands Plain.ESP
content=Odai River Upper Overhaul.esp
content=Odai River Overhaul Statue Remover Patch.esp
content=Little Landscapes - Seyda Neen Swamp Pools.ESP
content=Little Landscape - Nix Hunting Ground.esp
content=Ald'Ruhn Outskirts - Ancestral Refuge.ESP
content=Ald'Ruhn Outskirts - TR Addon.ESP
content=AldRuhnOutskirtsLittleLandscapesNixFix.esp
content=Little_Landscape_-_Path_to_Balmora.esp
content=Little Landscape - Foyada of Sharp Teeth.esp
content=Little Landscape - Foyada of Sharp Teeth Rock Fix.esp
content=BCoM_Caldera_MG_Basement.ESP
content=MasterIndexRedux.esp
content=BCoM_Concept_Art_Husk_Urshilaku.ESP
content=BCoM_AldRuhn_Outdoor_Merchants.ESP
content=BCoM_Imperial_Gaehouse_Buckmoth.ESP
content=BCoM_Imperial_Gaehouse_MoonMoth.ESP
content=BCoM_Imperial_Gatehouse_Pelagiad.ESP
content=AreaEffectArrows.esp
content=Mamaea Awakened.ESP
content=MamaeaAwakenedOpenMWPatch.esp
content=Argonian Full Helms OpenMW-Lua.omwaddon
content=Boots for Beasts OpenMW Lua.omwaddon
content=Boots for Beasts OpenMW Lua TD.omwaddon
content=Hist Helms OpenMW Lua.omwaddon
content=Boots for Beasts-GOTY - Bahamut Daedric Armor Patch.esp
content=Boots for Beasts-TR+ Bahamut Daedric Armor Patch.esp
content=protected-beasts.omwscripts
content=Yet Another Guard Diversity - Full Cephalopod.ESP
content=IO - Solstheim.ESP
content=IO - TR Imperial Guards.ESP
content=Vibrant Ivy.ESP
content=Vibrant Ivy - BCoM addon.esp
content=Trellis addon - BCoM.ESP
content=Cutting Room Floor - Herders.esp
content=Cutting Room Floor - Ald Redaynia.esp
content=Cutting Room Floor - Ald-ruhn Underground.esp
content=Cutting Room Floor - Items TR.esp
content=CRF - Better Clothes.omwaddon
content=CRF - Better Robes.omwaddon
content=Cutting Room Floor - Snow Prince.esp
content=Of Eggs and Dwarves.ESP
content=Of Eggs and Dwarves.omwscripts
content=BlightedAnimalsRetextured.esp
content=Blighted Beasts Retextured.esp
content=Indoril Mansion.ESP
content=Rather Nice Factor's Estate.esp
content=Rather Nice Factor's Estate - GitD.esp
content=RnFE - Patch for Purists.esp
content=CanonicalGear.omwscripts
content=Keelhouse.ESP
content=TR_Dra-VashaI-V2.esp
content=VenninAddamasartus_DraVashai_patch.esp
content=GreymarchDawn.esp
content=GreymarchDawn_WhiteSuranPatch.ESP
content=Lord of Rebirth.ESP
content=Steel_broadsword_alternative.esp
content=Remiros' Uniques.ESP
content=DaedricArmor.esp
content=OEAD_BCOM_Patch.ESP
content=Tribunal_Facelift.ESP
content=RPNR_Almalexia_Chamber.ESP
content=RPNR_WHO.ESP
content=RPNR_WHO_BCOM.ESP
content=BCOM_MarbledZafirbelBay_WHO.esp
content=BCOM_Suran Expansion.ESP
content=BCOM - Taller Lighthouse.ESP
content=BCoM_Open_Cantons.ESP
content=BCoM - Atmospheric_Arena.ESP
content=BCoM_Atmospheric_Plazas.ESP
content=Interior exterior flag reset_Atmospheric Arena.ESP
content=Interior exterior flag reset_Atmospheric Plazas.ESP
content=Temple Master.ESP
content=OAAB Brother Junipers Twin Lamps.esp
content=sm_tel_robe.ESP
content=The_magic_rock_of_Maar_Gan.ESP
content=CalderaGovernorsManor.ESP
content=BearArmorReplacer.ESP
content=sm_boiled_netch_set_vanilla.ESP
content=Bob's Diverse Dagoths - Hostile Gilvoth.esp
content=TheForgottenShields - Artifacts_NG.esp
content=JASPR-V.ESP
content=JASPR-TR.ESP
content=JASPR-SKY.ESP
content=JASPR-AS.ESP
content=RoaringArena.ESP
content=RoaringArena_MageRobes.ESP
content=RoaringArena_OAAB.ESP
content=RoaringArena_SkyrimHomeOfTheNords.ESP
content=RoaringArena_ProjectCyrodiil.ESP
content=RoaringArena_Solstheim.ESP
content=RoaringArena_NOD.ESP
content=UL_-_BCoM_Arena_Patch.esp
content=Expansion Delay.ESP
content=Early Transport to Mournhold.esp
content=OAAB_Tel Mora.ESP
content=OAAB_Tel Mora - Diverse Blood Patch.omwaddon
content=UL_-_OAAB_Tel_Mora_Patch.esp
content=Kumarahaz Bandit Lair.ESP
content=Blademeister_Kumarahaz_Patch.esp
content=Tel Branora Expansion.ESP
content=Tales of Tel Branora.esp
content=Building Up Uvirith's Legacy1.1.ESP
content=pharis-magicka-regeneration.omwaddon
content=pharis-magicka-regeneration.omwscripts
content=Clear Your Name.esp
content=OAAB - Tombs and Towers.ESP
content=Dungeon Details -- Urshi burial.esp
content=DungeonDetailsUrshilakuFixes.esp
content=Strider Burial.esp
content=RepopulatedMorrowind_CRF_AldRedaynia.ESP
content=RepopulatedMorrowind_6thHouseObsidWeps.ESP
content=Westly_Presents_Unique_Winged_Twilights.esp
content=EKM Native Corprus Variants - Beware the Sixth House - All.esp
content=New Ilunibi.ESP
content=Devilish_Vampire_Overhaul.esp
content=Devilish_Vampire_Overhaul.omwscripts
content=Devilish_Vampire_Overhaul_TR_Dialogue_Patch.ESP
content=QuestVoiceGreetings_QCVL_patch.esp
content=QuestVoiceGreetings_TamrielData_patch.esp
content=MC_MOMW_Patch.esp
content=DSO Ashalmimilkala Water Height Fix.esp
content=ReAnimation_API.omwscripts
content=ReAnimation_v2_Rogue.omwscripts
content=third-person-alt-attacks.omwscripts
content=Impact Effects.omwscripts
content=footsteps.omwscripts
content=animated-levitation.omwscripts
content=FatigueSpeedAndCarryWeightRebalance.omwaddon
content=smart-ammo.omwscripts
content=TimescaleChange.omwaddon
content=signpost-fast-travel.omwscripts
content=signpost-fast-travel.omwaddon
content=harvest-lights.omwscripts
content=protective_guards_for_omw.omwscripts
content=action-camera-swap.omwscripts
content=an-nwahs-guide-to-modern-culture-and-mythology.omwaddon
content=Perfect Placement.omwscripts
content=bound-balance.omwaddon
content=bound-balance.omwscripts
content=go-home.omwaddon
content=go-home.omwscripts
content=go-home-locking-doors.omwscripts
content=Nine-holes - Core.esp
content=Nine-holes - Ald-ruhn, The Rat In The Pot.esp
content=Nine-holes - Ebonheart, Six Fishes.esp
content=Nine-holes - Moonmoth Legion Fort.esp
content=Nine-holes - Pelagiad, Halfway Tavern.esp
content=Nine-holes - Sadrith Mora, Dirty Muriel's Cornerclub.esp
content=Nine-holes - Seyda Neen, Arrille's Tradehouse.esp
content=Nine-holes - Suran, Goldyn Belaram (BCOM).esp
content=Nine-holes - Vivec, Elven Nations Cornerclub.esp
content=MOMW Sadrith Mora Pathgrid Reset.esp
content=bcomxpfp.omwaddon
content=Tamriel_Data.omwscripts
content=SSQN.omwscripts
content=StatsWindow.ESP
content=StatsWindow.omwscripts
content=ncg.omwaddon
content=ncg.omwscripts
content=skill-evolution.omwaddon
content=skill-evolution.omwscripts
content=dayspassedfix.omwaddon
content=SolCombatPack.omwscripts
content=friendly-autosave.omwscripts
content=LightHotkey.omwscripts
content=convenient-thief-tools.omwscripts
content=SME - Actor UI and Healthbar.omwscripts
content=AttendMe.omwscripts
content=FollowerDetectionUtil.omwscripts
content=FriendlierFire.omwscripts
content=S3maphore.esp
content=momw-gameplay.omwscripts
content=momw-gameplay-controls.omwscripts
content=momw-gameplay-camera.omwscripts
content=momw-gameplay-balance.omwscripts
content=momw-gameplay-ui.omwscripts
content=delta-merged.omwaddon
content=deleted_groundcover.omwaddon
content=S3LightFixes.omwaddon