Neko-chan Posted November 21, 2012 Posted November 21, 2012 ummm...a little off topic but' date=' is it me or is it strange that the female children have boobs? they should be called young teens instead of children. [/quote'] When they are dressed only. Since MLA does not exclude children race (I think we might want to fix this) I have seen that when they are undressed they do not. They have some crappy textured underwear but no boobs, or male genitals. Not for me. well, my mod NPC follower has boobs and that children underweare. I have a mod to make the children playable and my character has boobs (I like playing as an evil child destroying everything). i turned Dorthe into a follower and she also has boobs, though they are exaggerated when it comes to armour. (I wanna have an army of children) Currently she has the badass armour and i have bandit armour, i look a bit like a viking now...just need to find the right helmet. I agree with at least having the option of turning of children being affected.
kevlar69 Posted November 21, 2012 Posted November 21, 2012 ummm...a little off topic but' date=' is it me or is it strange that the female children have boobs? they should be called young teens instead of children. [/quote'] When they are dressed only. Since MLA does not exclude children race (I think we might want to fix this) I have seen that when they are undressed they do not. They have some crappy textured underwear but no boobs, or male genitals. I think MLA extended does exclude children: mlaraperquestscript.psc: 144 if (Rapist.IsChild() || RapistRace.IsChildRace()) ; No children 145 return false 146 endif
Kain82 Posted November 21, 2012 Posted November 21, 2012 Right now this mod lacks menus to set it's many new configuration options. The best way to configure this mod right now is to create a file (with no file extension) with the "set" commands to configure the mod to your liking and place that file into your Skyrim folder. Then you can use the Console command: BAT to run all those set commands. This is in fact how I expect most experienced gamers will do it since you can have your favorite configuration set up (or multiple setups if you so desire) and reset the MOD to that quickly. Ok' date=' how do I create a file for configuration? As stated above. [/quote'] Create a new .txt file and put all the commands there. Ecah line 1 command example: set MLANotifyFlag to 1 set MLAGalsOptions to 0 set MLAGuysOptions to 1 set MLARHealthPercentage to 30 set MLARPercentChanceWillRape to 100 set MLARRapistHealthPercentage to 10 set MLARapeCalmOption to 2 set MLABuffSwitch to 0 set MLACombatRapeSwitch to 1 set MLASoundSourceSwitch to 1 set MLAPlayerTalkSwitch to 1 set MLAPimpSwitch to 0 set MLAEnemyAssaultSwitch to 1 set MLAFollowersCombatRape to 1 set MLARFollowerInvolved to 1 set MLARPlayerInvolved to 1 save the file with a name you can remember. I saved mine as MLAX_options.txt Put the file in your roor Skyrim folder. Not the Data folder. The root folder. Remove the .txt extension. Yes, leave the file without extension. Start the game. open the console type: bat *yourfilename* you should see all the commands you put in the text file. you are good to go. Some options like the frequency of random rape can still be tweaked from the menu. Thank you.
azmodan22 Posted November 21, 2012 Posted November 21, 2012 ummm...a little off topic but' date=' is it me or is it strange that the female children have boobs? they should be called young teens instead of children. [/quote'] When they are dressed only. Since MLA does not exclude children race (I think we might want to fix this) I have seen that when they are undressed they do not. They have some crappy textured underwear but no boobs, or male genitals. I think MLA extended does exclude children: mlaraperquestscript.psc: 144 if (Rapist.IsChild() || RapistRace.IsChildRace()) ; No children 145 return false 146 endif Yes, you are propably right. Its been some time since I saw any children involved in random rape.
NicoleDragoness Posted November 21, 2012 Posted November 21, 2012 All this started to happen after I installed a mod (by kuertee) about autosave. I don't liked it so then I unistalled it after few time. Install and unistall made as perfect as possible (as always). I think that this mod could be the problem because it is a lot complicated and has some heavy interference with timescaling. ButI removed it and the problems are still here. I checked twice and I'm sure to have removed every single file' date=' script, source from this mod but ... [/quote'] Background on what is happening: There is a problem in the game when a mod uses the "RegisterForUpdate" function. It tells the game to run some code in your mod at some time interval but if your code doesn't finish executing within that time interval the next one starts and now you have two threads running in the same code. That increases the chance that this will happen again and in short order the affected mod becomes unplayable. The original MiniLovers did not use that function and is safe. However the MiniLovers Alternative (MLA) does use that function and I have seen exactly the situation. The MiniLovers Extended mod I have made removed the use of that function and replaced it with a safe to call and use function. Because my mod is based on the MLA mod it uses the same Quests, Spells, Magic Effects, Scripts and Global Variables as the MLA mod which makes the two mods incompatible with each other but also means that if you have used MLA in the past and gotten some of those scripts running that the save game you have will contain a copy of that script EVEN IF YOU UNINSTALL MLA. That copy of the script will often be used in place of the current version of the script which also makes switching mod versions difficult. I suspect this is what has happened to your game. Your save game is most likely trash now but there is one procedure you can try to see if you can clear things up. Disable all the MLA mods, load your game, use the "T" command to wait 30 days (31 for good measure), save the game and then try enable the MiniLover, MiniLovers Sound and my mod again. That MAY fix the problem or at least scale the damage back to a tolerable level. I did. 1. Savegame after wrote set timescale to 20 in console. 2. Exit. 3. Disabled all MLA related esm/esp. 4. In game. 5. Used T key - 24 hours for 33 times (OMG!) 6. Savegame. 7. Exit. 8. Ingame to check. 9. ************* HORSE CALL as before, no changes! ******* 10. Exit. 11. Enabled all MLA esm/esp and placed again in th right order. 12. Ingame. 13. ************ ALMOST WORST THAN BEFORE! ********* Keyboards's keys seem to not work at all, now. Yes, now I'm desperate.
azmodan22 Posted November 21, 2012 Posted November 21, 2012 All this started to happen after I installed a mod (by kuertee) about autosave. I don't liked it so then I unistalled it after few time. Install and unistall made as perfect as possible (as always). I think that this mod could be the problem because it is a lot complicated and has some heavy interference with timescaling. ButI removed it and the problems are still here. I checked twice and I'm sure to have removed every single file' date=' script, source from this mod but ... [/quote'] Background on what is happening: There is a problem in the game when a mod uses the "RegisterForUpdate" function. It tells the game to run some code in your mod at some time interval but if your code doesn't finish executing within that time interval the next one starts and now you have two threads running in the same code. That increases the chance that this will happen again and in short order the affected mod becomes unplayable. The original MiniLovers did not use that function and is safe. However the MiniLovers Alternative (MLA) does use that function and I have seen exactly the situation. The MiniLovers Extended mod I have made removed the use of that function and replaced it with a safe to call and use function. Because my mod is based on the MLA mod it uses the same Quests, Spells, Magic Effects, Scripts and Global Variables as the MLA mod which makes the two mods incompatible with each other but also means that if you have used MLA in the past and gotten some of those scripts running that the save game you have will contain a copy of that script EVEN IF YOU UNINSTALL MLA. That copy of the script will often be used in place of the current version of the script which also makes switching mod versions difficult. I suspect this is what has happened to your game. Your save game is most likely trash now but there is one procedure you can try to see if you can clear things up. Disable all the MLA mods, load your game, use the "T" command to wait 30 days (31 for good measure), save the game and then try enable the MiniLover, MiniLovers Sound and my mod again. That MAY fix the problem or at least scale the damage back to a tolerable level. I did. 1. Savegame after wrote set timescale to 20 in console. 2. Exit. 3. Disabled all MLA related esm/esp. 4. In game. 5. Used T key - 24 hours for 33 times (OMG!) 6. Savegame. 7. Exit. 8. Ingame to check. 9. ************* HORSE CALL as before, no changes! ******* 10. Exit. 11. Enabled all MLA esm/esp and placed again in th right order. 12. Ingame. 13. ************ ALMOST WORST THAN BEFORE! ********* Keyboards's keys seem to not work at all, now. Yes, now I'm desperate. Did you reiinstal the game? TES5Edit I think can fix savegames but I do not know for sure.
polluxval Posted November 21, 2012 Posted November 21, 2012 All this started to happen after I installed a mod (by kuertee) about autosave. I don't liked it so then I unistalled it after few time. Install and unistall made as perfect as possible (as always). I think that this mod could be the problem because it is a lot complicated and has some heavy interference with timescaling. ButI removed it and the problems are still here. I checked twice and I'm sure to have removed every single file' date=' script, source from this mod but ... [/quote'] Background on what is happening: There is a problem in the game when a mod uses the "RegisterForUpdate" function. It tells the game to run some code in your mod at some time interval but if your code doesn't finish executing within that time interval the next one starts and now you have two threads running in the same code. That increases the chance that this will happen again and in short order the affected mod becomes unplayable. The original MiniLovers did not use that function and is safe. However the MiniLovers Alternative (MLA) does use that function and I have seen exactly the situation. The MiniLovers Extended mod I have made removed the use of that function and replaced it with a safe to call and use function. Because my mod is based on the MLA mod it uses the same Quests, Spells, Magic Effects, Scripts and Global Variables as the MLA mod which makes the two mods incompatible with each other but also means that if you have used MLA in the past and gotten some of those scripts running that the save game you have will contain a copy of that script EVEN IF YOU UNINSTALL MLA. That copy of the script will often be used in place of the current version of the script which also makes switching mod versions difficult. I suspect this is what has happened to your game. Your save game is most likely trash now but there is one procedure you can try to see if you can clear things up. Disable all the MLA mods, load your game, use the "T" command to wait 30 days (31 for good measure), save the game and then try enable the MiniLover, MiniLovers Sound and my mod again. That MAY fix the problem or at least scale the damage back to a tolerable level. I did. 1. Savegame after wrote set timescale to 20 in console. 2. Exit. 3. Disabled all MLA related esm/esp. 4. In game. 5. Used T key - 24 hours for 33 times (OMG!) 6. Savegame. 7. Exit. 8. Ingame to check. 9. ************* HORSE CALL as before, no changes! ******* 10. Exit. 11. Enabled all MLA esm/esp and placed again in th right order. 12. Ingame. 13. ************ ALMOST WORST THAN BEFORE! ********* Keyboards's keys seem to not work at all, now. Yes, now I'm desperate. did you remove every script that begins with "kuASA" from teh scripts and source folders?
NicoleDragoness Posted November 21, 2012 Posted November 21, 2012 did you remove every script that begins with "kuASA" from teh scripts and source folders? Yes, I did. Checked three times. Did you reinstall the game? Not yet. I'm a bit scared to do that.
azmodan22 Posted November 21, 2012 Posted November 21, 2012 did you remove every script that begins with "kuASA" from teh scripts and source folders? Yes' date=' I did. Checked three times. [/quote'] Did you reinstall the game? Not yet. I'm a bit scared to do that. you can make a backup of the entire data folder. if anything goes wrong you can restore the data folder the way it was. You can even backup the Nexus mod manager folder just incase. For me personally, I have reinstalled the game twice in the last month because of mods crewing it up. NMM was not affected. *edit* was trying to pm you but I cant
polluxval Posted November 21, 2012 Posted November 21, 2012 did you remove every script that begins with "kuASA" from teh scripts and source folders? Yes' date=' I did. Checked three times. [/quote'] Did you reinstall the game? Not yet. I'm a bit scared to do that. remove them. move them to another temp location. run the game and youll see that everything will be fixed. remember: - Delete the following files: from scripts folder: kuASATBackUpQS.pex kuASATPlayerS.pex kuASATQS.pex kuASATRoadChunkAliasS.pex from source folder: kuASATBackUpQS.psc kuASATPlayerS.psc kuASATQS.psc kuASATRoadChunkAliasS.psc also from Data: kuerteeAutoSaveAndTime.esp also from Ini folder: kuerteeAutoSaveAndTime.ini ----------- move them to a temp location. run the game, save, exit, re-run, load and enjoy minilovers. im pretty sure it will work fine after that.
Vasero225 Posted November 21, 2012 Posted November 21, 2012 Not to break conversational flow, but perhaps I can get a bit more coverage in the thread for the mod I'm actually using now: After reading about MLAX, I've decided to switch over. I installed as instructed, I even did the save cleaning (Disable MLA, load. Wait 24h. Save.). Made my BAT for my preferred settings, used it in game. All the variables went in just fine. And... nothing happens. The spell does nothing. The Enemy Assaults are wanting to activate (I can tell, because MLANotify is saying action is happening) but nothing actually occurs. I've confirmed my load-order is exactly as suggested. The only spells available to me are MLA Rape Spell and MLA Config. Any ideas? I have a strong feeling it's something simple I managed to overlook. Otherwise, great work on the Extended version
azmodan22 Posted November 21, 2012 Posted November 21, 2012 Not to break conversational flow' date=' but perhaps I can get a bit more coverage in the thread for the mod I'm actually using now: After reading about MLAX, I've decided to switch over. I installed as instructed, I even did the save cleaning (Disable MLA, load. Wait 24h. Save.). Made my BAT for my preferred settings, used it in game. All the variables went in just fine. And... nothing happens. The spell does nothing. The Enemy Assaults are wanting to activate (I can tell, because MLANotify is saying action is happening) but nothing actually occurs. I've confirmed my load-order is exactly as suggested. The only spells available to me are MLA Rape Spell and MLA Config. Any ideas? I have a strong feeling it's something simple I managed to overlook. Otherwise, great work on the Extended version [/quote'] it seems you installed the "core" mod and not Polluxvall "al in one" edit.It is the same thing but just has everything in. If you installed the mod by Waxenfigure you also need "part" of minilovers as well. In other words.. 1. install minilovers (and the fnis_patch.. I assume you had it ) 2. with your mod manager deactivate the Minilovers.esp and miniloversAlternative.esp. Leave the other esps active (idles, spells, etc) Make sure they have the right load order. Load you game. you should be good to go
Vasero225 Posted November 21, 2012 Posted November 21, 2012 Not to break conversational flow' date=' but perhaps I can get a bit more coverage in the thread for the mod I'm actually using now: After reading about MLAX, I've decided to switch over. I installed as instructed, I even did the save cleaning (Disable MLA, load. Wait 24h. Save.). Made my BAT for my preferred settings, used it in game. All the variables went in just fine. And... nothing happens. The spell does nothing. The Enemy Assaults are wanting to activate (I can tell, because MLANotify is saying action is happening) but nothing actually occurs. I've confirmed my load-order is exactly as suggested. The only spells available to me are MLA Rape Spell and MLA Config. Any ideas? I have a strong feeling it's something simple I managed to overlook. Otherwise, great work on the Extended version [/quote'] it seems you installed the "core" mod and not Polluxvall "al in one" edit.It is the same thing but just has everything in. If you installed the mod by Waxenfigure you also need "part" of minilovers as well. In other words.. 1. install minilovers (and the fnis_patch.. I assume you had it ) 2. with your mod manager deactivate the Minilovers.esp and miniloversAlternative.esp. Leave the other esps active (idles, spells, etc) Make sure they have the right load order. Load you game. you should be good to go I reinstalled the mod entirely from scratch using the MiniLoversAlternative all in one pack. I assume it's the all in one? As it's the mod I was using before, which worked 100% fine. It just didn't have all the tweakable options this version has. As you instructed, installed MLA, overwrote whatever needed to be overwritten with MLAX. Disabled the MiniLover.esp and Miniloversalternative.esp. MiniLovers Idles.esm MiniLoversSound.esm MiniLoverSoundSpell.esp MiniLovers.esp (Disabled) MiniLoversAlternative.esp (Disabled) MiniloversExtension.esp That is my current load order for these mods. Again, all the tertiary features are 'firing', but nothing happens. People will creep around and cast the spell on other NPCs, but nothing occurs. My own spell does nothing to anyone, and if it's triggered via combat the opponent simply Calms and walks away. (Meaning the 'action' fired, but nothing occured so it went straight to calming) I'm boggled as to why the spell won't function in any way. Information: I got my MLA pack from this thread: http://www.loverslab.com/showthread.php?tid=10582 "MiniLoversAlt [2012-11-14]" was the exact file I installed. And of course "MiniLoversExtendedV4" I do have the FNIS Patch as well.
azmodan22 Posted November 21, 2012 Posted November 21, 2012 Not to break conversational flow' date=' but perhaps I can get a bit more coverage in the thread for the mod I'm actually using now: After reading about MLAX, I've decided to switch over. I installed as instructed, I even did the save cleaning (Disable MLA, load. Wait 24h. Save.). Made my BAT for my preferred settings, used it in game. All the variables went in just fine. And... nothing happens. The spell does nothing. The Enemy Assaults are wanting to activate (I can tell, because MLANotify is saying action is happening) but nothing actually occurs. I've confirmed my load-order is exactly as suggested. The only spells available to me are MLA Rape Spell and MLA Config. Any ideas? I have a strong feeling it's something simple I managed to overlook. Otherwise, great work on the Extended version [/quote'] it seems you installed the "core" mod and not Polluxvall "al in one" edit.It is the same thing but just has everything in. If you installed the mod by Waxenfigure you also need "part" of minilovers as well. In other words.. 1. install minilovers (and the fnis_patch.. I assume you had it ) 2. with your mod manager deactivate the Minilovers.esp and miniloversAlternative.esp. Leave the other esps active (idles, spells, etc) Make sure they have the right load order. Load you game. you should be good to go I reinstalled the mod entirely from scratch using the MiniLoversAlternative all in one pack. I assume it's the all in one? As it's the mod I was using before, which worked 100% fine. It just didn't have all the tweakable options this version has. As you instructed, installed MLA, overwrote whatever needed to be overwritten with MLAX. Disabled the MiniLover.esp and Miniloversalternative.esp. MiniLovers Idles.esm MiniLoversSound.esm MiniLoverSoundSpell.esp MiniLovers.esp (Disabled) MiniLoversAlternative.esp (Disabled) MiniloversExtension.esp That is my current load order for these mods. Again, all the tertiary features are 'firing', but nothing happens. People will creep around and cast the spell on other NPCs, but nothing occurs. My own spell does nothing to anyone, and if it's triggered via combat the opponent simply Calms and walks away. (Meaning the 'action' fired, but nothing occured so it went straight to calming) I'm boggled as to why the spell won't function in any way. Information: I got my MLA pack from this thread: http://www.loverslab.com/showthread.php?tid=10582 "MiniLoversAlt [2012-11-14]" was the exact file I installed. And of course "MiniLoversExtendedV4" I do have the FNIS Patch as well. I dont know the file you are using. My minilovers file is MiniLoversAlt [2012-08-12] and I also have 3 updates (one I think is for the necro, minilovers - up03253 mininlovers - up03499 miniloverls - up03567 and of course MiniLovers_FNISPatch_[2012-08-25] It workds fine with these files. Maybe it does not work with that version of minillovers? Safeset bet is to use the "all in one" edit of this mod by polluxval. it has everything you need and will not need to use minilovers. one mod.. all there. (go a few posts back) I assume you are using SKSE to start the game and you have run the FNISforusers tool. *righ above the minilovers.esp you shoud have the FNISspell.esp
xzilla7 Posted November 21, 2012 Posted November 21, 2012 I don't know if this has been said, but during raper madness between men, the rapist is on the bottom and the victim is on top.
Vasero225 Posted November 21, 2012 Posted November 21, 2012 Okay! That all-in-one is a godsend. It should be in the #1 post. Thanks a bunch, Azmodan22, ad thanks to polluxval. EDIT: Oh, and now I'm getting C++ runtime errors. Skyrim is the best program ever.
Kain82 Posted November 22, 2012 Posted November 22, 2012 I followed Polluxval's guide to the letter. But when load up the game I have no MLA Config spell. Also when I type bat MLAX_Config in the console. I get an unknown variable error for each option. MLAX_Config is the name of the file I created. Here is my config: set MLABuffSwitch to 1 set MLACombatRapeSwitch to 0 set MLAPlayerTalkSwitch to 1 set MLAEnemyAssaultSwitch to 0 set MLAUndressSwitch to 1 set MLANotifyFlag to 0 set MLAGalsOptions to 1 set MLAGuysOptions to 0 set MLAFollowersCombatRape to 0
remois Posted November 22, 2012 Posted November 22, 2012 Kain I can't help you for the rest, but as for the config file, it must be in the skyrim folder (not data) and you must type bat MLAX_Config Also verify the file is called MLAX_Config.txt (i don't know if the .txt is really necessary, but better safe than sorry
azmodan22 Posted November 22, 2012 Posted November 22, 2012 the .txt exntension is not necessary. Actually th file mast have NO extention. If you do not have an MLA config spell then the mod is not installed correctly. Did you install the all in on mod by polluxval or Minilovers and Miniloversextention?
azmodan22 Posted November 22, 2012 Posted November 22, 2012 Okay! That all-in-one is a godsend. It should be in the #1 post. Thanks a bunch' date=' Azmodan22, ad thanks to polluxval. EDIT: Oh, and now I'm getting C++ runtime errors. Skyrim is the best program ever. [/quote'] here you go.. http://www.microsoft.com/en-us/download/details.aspx?id=8328 (if you have an x64 system you will need the x64 version of that.)
Kain82 Posted November 22, 2012 Posted November 22, 2012 the .txt exntension is not necessary. Actually th file mast have NO extention. If you do not have an MLA config spell then the mod is not installed correctly. Did you install the all in on mod by polluxval or Minilovers and Miniloversextention? I installed the all in one that polluxval posted.
azmodan22 Posted November 22, 2012 Posted November 22, 2012 the .txt exntension is not necessary. Actually th file mast have NO extention. If you do not have an MLA config spell then the mod is not installed correctly. Did you install the all in on mod by polluxval or Minilovers and Miniloversextention? I installed the all in one that polluxval posted. If you dont have an MLA Config spell there is no point in trying to use the bat file. it will not work. Please do the following. 1. make sure you have the latest SKSE. 2. Remove the mod. 3. Start or load your latest save. 4. make a new save and quit 5. Reinstall the mod 6. load the lates (the one you created without the mod) save. Since polluxvall's mod has everything I dont see why omly half of the mod is working. Please make sure that besides polluxvalls mod you do NOT have Anything installed or active. The presence of more that one minilovers mods can cause conflicts
NicoleDragoness Posted November 22, 2012 Posted November 22, 2012 Well,(hmmm, really isn't well at all) ... I did a reinstall of the entire game following the suggestion to only overwrite everything. So, I did it for the game, the patch to 1.8.151, skse, and this mod. I installed WryeBash too. Nothing! There is a little better for some mods (less delay or no delay) but some others are still with delayed actions. This mod, instead, is almost unplayable at all. NPC-NPC works almost good but with some delays, expecially in the joining positions, but the actions runs for hours. There is no way to stop them but to kill them (I don't like this, of course, if they are my followers/companions). For the player is everything gone to hell. Keyboard doesn't work, casts are uneffectives, delay is counted on days. On screen messages start almost instantly but then ... never happens for days and then ... ops, sudden sex inside a dungeon, with a stranger never seen before. OMG. I'm about to definitively uninstall the entire game, loosing my wonderful characther because it's impossible, for me, to recreate her due the custom race (lunari) she has and the "top secret" around all this custom creations. Maybe some very early saves could work in a new installation? I don't know. I can only hope. Have a nice day, I cannot. I'm sad.
HornyScientist Posted November 22, 2012 Posted November 22, 2012 Another thing could you try to implement a dynamic FIRST PERSON VIEW for the Player ? And also , allow us to use the Default Sounds from Skyrim . I don´t like the custom voices. Use the vanilla voices of the unique NPC that is your victim ! Like in MLA Sound , Default mode.
azmodan22 Posted November 22, 2012 Posted November 22, 2012 Well' date='(hmmm, really isn't well at all) ... I did a reinstall of the entire game following the suggestion to only overwrite everything. So, I did it for the game, the patch to 1.8.151, skse, and this mod. I installed WryeBash too. Nothing! There is a little better for some mods (less delay or no delay) but some others are still with delayed actions. This mod, instead, is almost unplayable at all. NPC-NPC works almost good but with some delays, expecially in the joining positions, but the actions runs for hours. There is no way to stop them but to kill them (I don't like this, of course, if they are my followers/companions). For the player is everything gone to hell. Keyboard doesn't work, casts are uneffectives, delay is counted on days. On screen messages start almost instantly but then ... never happens for days and then ... ops, sudden sex inside a dungeon, with a stranger never seen before. OMG. I'm about to definitively uninstall the entire game, loosing my wonderful characther because it's impossible, for me, to recreate her due the custom race (lunari) she has and the "top secret" around all this custom creations. Maybe some very early saves could work in a new installation? I don't know. I can only hope. Have a nice day, I cannot. I'm sad. [/quote'] Dont panic. you charachter is not dead. even if everything goes to hell there is a way to make a new one that looks exactly like the current, (if you go for a new game and not for a save prior to the problematic mod) using this: http://skyrim.nexusmods.com/mods/15307 and you can level the new character easy and "Legit" using this: http://skyrim.nexusmods.com/mods/14152 So the character is not dead. The only thing you will lose if you go back are the completed quests. So, now that we gone over that I will try to find a way if possible to clean or edit a save game and will get back to you. (Just in case. please record the attributes that your character has now (skills, perks, lvl etc.) in case a recreation can not be avoided) *Edit. From what I have found so far it seems that a save game de-bloatifier is included in th Unoficial Skyrim Patch. Did you try to create a new save game with that mod installed? *Edit 2 Try the following: 1. In your ini (Skyrim_default.ini, but check the other .ini to be sure) file under the [Papyrus] section remove the line iMaxAllocatedMemoryBytes=0 Enter the game, save, exit and reload. 2. Remove the .ini files from the my documents folder. (you dont have to remove them. just rename them .bak so the game will create new ones). If this does not work you will be able to revert to the previous ones.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.