Jump to content

Old HDT Support Thread.


Monsto Brukes

Recommended Posts

Guest Jenova23

So after a quick look at a couple of places I think I can safely say that the below Python code should work if you get Python and the pyffi package. Pass the create_hdt_data function a filename and it should add the extra data and save it out. It's set up to look for the hdt xml file at Data\meshes\hdt.xml but you can easily change that.

 

 Completely untested by the way, so it may not work. If someone wants to try it and fix any problems, that'd be great. Otherwise I'll eventually get to it.


from pyffi.formats.nif import NifFormat

m_version = 0
u_version = 0

def create_hdt_data( filename ):
	global m_version, u_version

	f = open( filename, "r+b" )
	
	data = NifFormat.Data()
	data.read( f )

	root_block = None

	if data.roots.length == 1 then
		root_block = data.roots[0]
	else
		for root in data.roots:
			if isinstance( root, NifFormat.NiNode ) then 
				root_block = root
				break	

	m_version, user_version = NifFormat.getVersion( f )
	
	if m_version <= 0 then 
		print "Error, wrong version, or not a .nif file."
		return

	hdt_extra_data = create_block( "NiStringExtraData" )
	hdt_extra_data.name = "HDT Havok Path"
	hdt_extra_data.string_data = "Data\meshes\hdt.xml"

	root_block.add_extra_data( hdt_extra_data )

	data.write( f )

	f.close()

""" create_block taken from http://niftools.sourceforge.net/doc/blender_nif_plugin/_modules/io_scene_nif/nif_export.html """
def create_block( blocktype, b_obj = None ):
    """Helper function to create a new block, register it in the list of
    exported blocks, and associate it with a Blender object.

    @param blocktype: The nif block type (for instance "NiNode").
    @type blocktype: C{str}
    @param b_obj: The Blender object.
    @return: The newly created block."""
    try:
        block = getattr( NifFormat, blocktype )()
    except AttributeError:
        raise NifExportError(
            "'%s': Unknown block type (this is probably a bug)."
            % blocktype )

    return block
 

Trying 10-10 again. I took it's default xml and tossed a bunch of numbers around. So many damn values, every edit at one point changes everything else!

Anyway, here's a Milkdrinker version; for those who want zero-g airbags  :blink:

 

 

 

Hah, I actually went the opposite direction and made the jiggle weightier, but more pronounced, rather than floatier.

 

Can you upload your version then?

 

Link to comment

I don't actually have it tuned how I like at this point (too much sway). I'm working on a form for a customizer like I mentioned before that will be easy to get something similar, though, and which I can provide values for after I find something I like again once I have the customizer working.

Link to comment

corwin78, on 15 Oct 2013 - 12:48 PM, said:snapback.png

 

Jenova23, on 15 Oct 2013 - 12:08 PM, said:snapback.png

I'm using this free online program to open the xml http://xmlgrid.net/ but I have no idea where the number is for bounce that tutorial confuses me can't you just make a step by step tutorial for us noobs or just upload a super bouncy version please.

 

Not sure who you're addressing or what tutorial you're referring to, but I can't help thinking 'noob' is almost meaningless in this context. As far as I know, no one here has a road map.  :cool:

 

Rather than use some online viewer, I suggest you download XML Notepad & play around with different variables (save often, back up everything) & see what results you get.

 

But, for better or worse, here's a livelier set of boobs for anyone who cares to experiment. No reviews, please, this is very much a WIP and I'm only offering it as a PSFP (Public Service for Fellow Pervs).

 

Note: You'll want to remove the "BoingBoing_" prefix before tossing this in your skse\plugins directory.attachicon.gifBoingBoing_hdtPhysicsExtensionsDefaultBBP.xml

 

[ Edit/Afterthought ]: As with everything else, your results will vary depending on the body mod, skeleton, proportions etc. etc. you're using. My PC wears a CBBE++ TBBP custom body with a fair bit of ++ in her upper storey. ]

 

 

what version is this boing boing compatible to ?  :P

Link to comment

Wow. I'm glad I looked into this thread.

3 hours later I've finished reading all 31 pages.

 

Thank you HDT for the awesome mod I've been reading about. I've been itching to get home from work to install it!

Thanks Monsto for keeping info organized and updated.

Great work to everyone else who has been contributing.

Totally cool.

That is all.

Link to comment

 

 

 

corwin78, on 15 Oct 2013 - 12:48 PM, said:snapback.png

 

Jenova23, on 15 Oct 2013 - 12:08 PM, said:snapback.png

I'm using this free online program to open the xml http://xmlgrid.net/ but I have no idea where the number is for bounce that tutorial confuses me can't you just make a step by step tutorial for us noobs or just upload a super bouncy version please.

 

Not sure who you're addressing or what tutorial you're referring to, but I can't help thinking 'noob' is almost meaningless in this context. As far as I know, no one here has a road map.  :cool:

 

Rather than use some online viewer, I suggest you download XML Notepad & play around with different variables (save often, back up everything) & see what results you get.

 

But, for better or worse, here's a livelier set of boobs for anyone who cares to experiment. No reviews, please, this is very much a WIP and I'm only offering it as a PSFP (Public Service for Fellow Pervs).

 

Note: You'll want to remove the "BoingBoing_" prefix before tossing this in your skse\plugins directory.attachicon.gifBoingBoing_hdtPhysicsExtensionsDefaultBBP.xml

 

[ Edit/Afterthought ]: As with everything else, your results will vary depending on the body mod, skeleton, proportions etc. etc. you're using. My PC wears a CBBE++ TBBP custom body with a fair bit of ++ in her upper storey. ]

 

 

 

 

what version is this boing boing compatible to ?  :P

 

All hdtPhysicsExtensionDefaultBBP.xml changes should be compatible for v09-28 and over as the variable structure of it hasn't changed since then. There may be slight physics range-of-movement variation in between versions, but they shouldn't CTD the game or anything.

 

Link to comment

 

what version is this boing boing compatible to ?

He answered that already. Seems to be pretty much every version after old 7-22 (i.e. file is stored in two pieces to SKSE/plugins), for example 9-28.

 

I tried it, but it looks slightly odd to me, in idle animation especially (default TBBP idle I think). Nice testing, nevertheless.

 

I have seen aspect "timescale" mentioned here - is it related to these modifications, or that general value skyrim uses (set timescale to (vanilla) 20 or like me, 10)?

Link to comment

 

I tried it, but it looks slightly odd to me, in idle animation especially (default TBBP idle I think). Nice testing, nevertheless.

 

I have seen aspect "timescale" mentioned here - is it related to these modifications, or that general value skyrim uses (set timescale to (vanilla) 20 or like me, 10)?

 

 

 

Hey, I said 'no reviews, please'  :P ! It looks odd to me too, which is why I'm still twiddling dials in the hope of achieving jiggle Nirvana...

 

'timescale' was my mistake, corrected several posts later. The EBP variable is 'timeFactor'. It appears in each subsection e.g. 'NPC R PreBreast,' 'NPC R Breast' etc. etc. Default value is 1.000000. Lower is slower.

 

Immediately above 'timeFactor' you'll find 2 other variables that may be worth a tweak: 'linearDamping' and 'angularDamping'. Have fun.

 

[ Edit: Christ, I meant the HDT variable. Teach me to try & think before I've had coffee. Or beer. ]

Link to comment

 

 

I tried it, but it looks slightly odd to me, in idle animation especially (default TBBP idle I think). Nice testing, nevertheless.

 

I have seen aspect "timescale" mentioned here - is it related to these modifications, or that general value skyrim uses (set timescale to (vanilla) 20 or like me, 10)?

 

 

 

Hey, I said 'no reviews, please'  :P ! It looks odd to me too, which is why I'm still twiddling dials in the hope of achieving jiggle Nirvana...

 

'timescale' was my mistake, corrected several posts later. The EBP variable is 'timeFactor'. It appears in each subsection e.g. 'NPC R PreBreast,' 'NPC R Breast' etc. etc. Default value is 1.000000. Lower is slower.

 

Immediately above 'timeFactor' you'll find 2 other variables that may be worth a tweak: 'linearDamping' and 'angularDamping'. Have fun.

 

 

lol i really hope they give back the jelly like jiggling  :P

Link to comment

 

I'm a little confused here.  Does this mod HAVE hair physics already, or is it like Sexlab, its just a framework for modders to MAKE hairs that have physics?

 

If I installed the 10-10-13 release, would it give all hairs physics or no?

 

 

It needs hair that supports it, basically. So installing it now doesn't give you hair physics. It does give you (now) configurable boob and butt jiggle if you use the proper skeleton/mesh (BBP or TBBP).

 

Also you can make the boob jiggle work in first person, which is pretty awesome.

 

 

The boobs physics are pretty awesome.

 

About the hair, I understand compatible hair is required - does such hair exist?

Link to comment
Guest Jenova23

 

 

Hah, I actually went the opposite direction and made the jiggle weightier, but more pronounced, rather than floatier.

 

Care to share? I could always some pointers. Doesn't have to be perfect just trying out new values atm

The frontend comment was just an idea that crossed my mind,  but since you are the physics guy... :D

 

Edit: 

Slight jittering is back for me in 10-10, 10-7 was fine.

 

I wanted to use better values but couldn't make the whole thing stop so i had to turn up the dreaded timeFactor again

How to limit only duration without messing up the rest is what i need to find out

 

 

I like this jiggle the best so far the only problem is during sexlab animations it eventually stops and is barely noticeable basically anything that standing in place stops eventually with this version.

 

Link to comment

anyone else getting the boob stretching on companion npc when zoning? last for about 5 secs then corrects itself. Also been getting ctd after prolonged use when entering UI.

 

I saw it too.

Actually, it's not only the boobs, it's all skin surfaces that stretch all the way to the next zone/exit portal. Quite... umm... "unimmersive"

Link to comment

I tried out 9-28. I used the demo China Dress. The dress worked, but eventually it started acting crazy.

I got rid of the China Dress, and tried it out with some BBP armors I found on this site. It worked, but I noticed I was getting random CTDs.

I disabled HDT 9-28 and the CTDs went away.

 

I was hesitant to try out the newer versions, but it seemed pointless to have the armros and not have the BBP work.

I tried out HDT  10-10, and it works great. No CTDs.

 

Anxious to see what the newer releases will bring.

 

HDT, I have a quick question, if I wanted to use your high heel system, would I need to download it seperately, or is it part of the Physics system?

Do they play nicely together?

Thanks for the great work!

Link to comment

I tried out 9-28. I used the demo China Dress. The dress worked, but eventually it started acting crazy.

I got rid of the China Dress, and tried it out with some BBP armors I found on this site. It worked, but I noticed I was getting random CTDs.

I disabled HDT 9-28 and the CTDs went away.

 

I was hesitant to try out the newer versions, but it seemed pointless to have the armros and not have the BBP work.

I tried out HDT  10-10, and it works great. No CTDs.

 

Anxious to see what the newer releases will bring.

 

HDT, I have a quick question, if I wanted to use your high heel system, would I need to download it seperately, or is it part of the Physics system?

Do they play nicely together?

Thanks for the great work!

 

the HDT high heel system works fine on it own for me , using the one from nexus http://skyrim.nexusmods.com/mods/36213//?. ive used it for months and have no major issues that cause ctd.

 

However the 2 added files for boobs from this post do after prolonged play, usually hour or so then I get ctd accessing UI in any form. have removed the 2 boob files from skse and all is well again, no crashes so far in 4 hours...hope this file becomes more stable as u work on it...cus it is quiet beautiful when its working.

Link to comment

I'm wondering if anyone else is having severe game stability issues using this.  I had it running for a bit and certainly it was fantastic. Soon though I couldn't load my savegame without the game CDT at the moment of game load. Very soon after that even loading a clean save would result in a CDT. At first I had no idea what was causing it so I completely reinstalled skyrim. Then I installed just this (with its requirements) and the CBBE body. The game started CDT again as soon as I reinstalled this. Really I love this mod and I am hoping that someone may have some insight as to why the game is CDT.

 

EDIT: The post above was made as I was making my post. In light of the information above I will continue to work on this problem.

 

If it helps I will include my latest papyrus log:

 

 

[10/16/2013 - 04:57:20PM] Papyrus log opened (PC)
[10/16/2013 - 04:57:20PM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[10/16/2013 - 04:57:20PM] Memory page: 128 (min) 512 (max) 76800 (max total)
[10/16/2013 - 04:57:22PM] Cannot open store for class "dlc1scwispwallscript", missing file?
[10/16/2013 - 04:57:22PM] Cannot open store for class "DLC2BenthicLurkerFXSCRIPT", missing file?
[10/16/2013 - 04:57:22PM] ERROR: Unable to bind script HentaiImpregnated to HentaiPregnancyQuest (090012C7) because their base types do not match
[10/16/2013 - 04:57:23PM] Cannot open store for class "PF_gotha_WhiterunCarolynCarr_02019E62", missing file?
[10/16/2013 - 04:57:23PM] ERROR: Unable to bind script PF_gotha_WhiterunCarolynCarr_02019E62 to  (16019E62) because their base types do not match
[10/16/2013 - 04:57:23PM] Cannot open store for class "skinnydippingsetup", missing file?
[10/16/2013 - 04:57:23PM] Cannot open store for class "skinnyswimmingplayerscript", missing file?
[10/16/2013 - 04:57:23PM] Cannot open store for class "skinnydippingmenu", missing file?
[10/16/2013 - 04:57:24PM] ERROR: Unable to bind script DLC2WaterScript to alias Water on quest DLC2TTF2 (0401AAC8) because their base types do not match
[10/16/2013 - 04:57:24PM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (04016E02) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] ERROR: Property sounds on script BestRape_Horse attached to alias playermazo on quest rapequestmazo (0C000D62) cannot be initialized because the value is the incorrect type
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse099 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse098 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse097 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse096 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse095 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse094 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower0 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower1 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower2 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower3 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower4 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower5 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower6 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower7 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027115) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027114) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property TG05KarliahInvisibilitySpell on script tg06questscript attached to TG06 (00021552) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027117) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027116) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Alias_MarriageCustomHome on script QF_RelationshipMarriageFIN_00021382 attached to RelationshipMarriageFIN (00021382) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027112) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027113) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027111) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027110) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property SavageStrike on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Bladesman90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DarkSouls on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Necromancy on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property WindWalker on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MageArmor30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MagicResistance30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MagicResistance50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MageArmor50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property HackAndSlash90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property AugmentedFrost on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Bladesman60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property HackAndSlash60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property spellrap on script BeastFormRape attached to rapequestmazo (0C000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property SKI_GroupFullMsg on script ski_favoritesmanager attached to SKI_FavoritesManagerInstance (1300082A) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1VampireChangeEffect on script dlc1playervampirechangescript attached to DLC1PlayerVampireQuest (020071D0) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Axe on script DLC2DBAncientDragonbornSCRIPT attached to  (0401DC33) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (0402710F) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HentaiPregnancyVictimFaction on script hentaipregnancy attached to HentaiPregnancyQuest (090012C7) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWedding on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanions on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsFemale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessage on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC2RRTeldrynSero on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWait on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsMale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DismissedFollower on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Alias_LevitationTarget on script DLC2_QF_DLC2DialogueTelMithry_02017E85 attached to DLC2DialogueTelMithryn (04017E85) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] VM is freezing...
[10/16/2013 - 04:57:25PM] VM is frozen
[10/16/2013 - 04:57:25PM] Reverting game...
[10/16/2013 - 04:57:25PM] ERROR: Unable to bind script HentaiImpregnated to HentaiPregnancyQuest (090012C7) because their base types do not match
[10/16/2013 - 04:57:25PM] ERROR: Unable to bind script PF_gotha_WhiterunCarolynCarr_02019E62 to  (16019E62) because their base types do not match
[10/16/2013 - 04:57:25PM] ERROR: Unable to bind script DLC2WaterScript to alias Water on quest DLC2TTF2 (0401AAC8) because their base types do not match
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse097 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HentaiPregnancyVictimFaction on script hentaipregnancy attached to HentaiPregnancyQuest (090012C7) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (04016E02) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Alias_MarriageCustomHome on script QF_RelationshipMarriageFIN_00021382 attached to RelationshipMarriageFIN (00021382) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse098 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse094 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] ERROR: Property sounds on script BestRape_Horse attached to alias playermazo on quest rapequestmazo (0C000D62) cannot be initialized because the value is the incorrect type
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse095 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1VampireChangeEffect on script dlc1playervampirechangescript attached to DLC1PlayerVampireQuest (020071D0) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027115) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027114) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027116) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027113) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027110) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property TG05KarliahInvisibilitySpell on script tg06questscript attached to TG06 (00021552) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Alias_LevitationTarget on script DLC2_QF_DLC2DialogueTelMithry_02017E85 attached to DLC2DialogueTelMithryn (04017E85) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property spellrap on script BeastFormRape attached to rapequestmazo (0C000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (0402710F) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse096 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWedding on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanions on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsFemale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessage on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC2RRTeldrynSero on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWait on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsMale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DismissedFollower on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027112) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property SavageStrike on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Bladesman90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DarkSouls on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Necromancy on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property WindWalker on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MageArmor30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MagicResistance30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MagicResistance50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MageArmor50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HackAndSlash90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property AugmentedFrost on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Bladesman60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HackAndSlash60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property SKI_GroupFullMsg on script ski_favoritesmanager attached to SKI_FavoritesManagerInstance (1300082A) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027117) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse099 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Axe on script DLC2DBAncientDragonbornSCRIPT attached to  (0401DC33) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027111) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:31PM] Loading game...
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_HamalSybilLesson", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_HamalSybilLesson referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_SybilInitiation", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_SybilInitiation referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_TempleIdleSolo", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_TempleIdleSolo referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_SybilAlias", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_SybilAlias referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_TRG_HamalSybilLesson", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_TRG_HamalSybilLesson referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_TRG_RemoveBondage", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_TRG_RemoveBondage referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_SybilCaptiveInit", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_SybilCaptiveInit referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_SybilInitiation in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_HamalSybilLesson in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_TRG_RemoveBondage in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_TRG_HamalSybilLesson in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_TempleIdleSolo in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_SybilCaptiveInit in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_SybilAlias in the type table in save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer..OnHit in stack frame 0 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 2 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 4 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 6 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 8 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 10 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 12 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 14 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 16 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 18 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 20 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 22 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 24 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 26 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 28 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 30 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 32 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 34 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 36 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 38 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 40 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 42 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 44 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 46 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 48 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 50 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 52 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 54 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 56 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 58 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 60 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 62 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 64 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 66 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 68 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 70 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 72 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 74 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 76 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 78 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 80 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 82 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 84 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 86 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 88 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 90 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 92 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 94 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 96 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 98 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 100 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 102 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 104 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 106 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 108 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 110 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 112 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 114 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 116 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 118 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 120 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 122 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 124 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 126 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 128 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 130 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 132 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 134 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 136 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 138 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 140 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 142 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 144 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 146 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 148 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 150 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 152 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 154 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 156 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 158 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 160 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 162 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 164 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 166 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 168 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 170 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 172 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 174 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 176 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 178 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 180 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 182 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 184 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 186 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 188 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 190 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 192 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 194 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 196 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 198 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 200 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 202 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 204 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 206 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 208 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 210 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 212 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 214 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 216 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 218 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 220 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 222 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 224 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 226 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 228 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 230 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 232 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 234 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 236 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 238 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 240 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 242 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 244 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 246 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 248 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 250 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 252 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 254 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 256 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 258 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 260 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 262 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 264 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 266 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 268 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 270 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 272 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 274 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 276 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 278 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 280 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 282 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 284 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 286 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 288 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 290 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 292 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 294 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 296 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 298 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 300 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 302 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 304 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 306 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 308 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 310 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 312 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 314 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 316 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 318 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 320 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 322 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 324 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 326 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 328 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 330 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 332 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 334 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 336 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 338 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 340 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 342 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 344 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 346 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 348 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 350 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 352 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 354 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 356 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 358 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 360 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 362 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 364 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 366 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 368 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 370 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 372 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 374 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 376 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 378 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 380 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 382 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 384 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 386 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 388 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 390 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 392 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 394 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 396 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 398 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 400 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 402 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 404 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 406 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 408 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 410 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 412 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 414 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 416 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 418 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 420 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 422 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 424 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 426 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 428 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 430 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 432 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] VM is thawing...
[10/16/2013 - 04:57:31PM] ERROR: Cannot call OnGameReload() on a None object, aborting function call
stack:
[alias Player on quest vvvMarkHomeQuest (21000D62)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:31PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0300305D)>] OnPlayerLoadGame...
[10/16/2013 - 04:57:31PM] [DCL1VampireTurnPlayerScript <alias Player on quest DLC1VampireTurn (0200588C)>]OnPlayerLoadGame() calling MakeAliasesEyesRed()
[10/16/2013 - 04:57:31PM] [dlc1vampireturnscript <DLC1VampireTurn (0200588C)>]MakeAliasesEyesRed()
[10/16/2013 - 04:57:31PM] DLC2InitCrossDLCScript found: [DLC1VQ01QuestScript <DLC1VQ01 (0200352A)>], [byohrelationshipadoptionscript <BYOHRelationshipAdoption (030042B4)>]
[10/16/2013 - 04:57:33PM] ERROR: Cannot cast from None to hentaipregnantactoralias[]
stack:
[HentaiPregnancyQuest (090012C7)].hentaipregnancy.gameLoaded() - "HentaiPregnancy.psc" Line 45
[HentaiPregnancyQuest (090012C7)].hentaipregnancyconfig.OnGameReload() - "HentaiPregnancyConfig.psc" Line 348
[alias PlayerAlias on quest HentaiPregnancyQuest (090012C7)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:33PM] Wardrobe Manager (Quest) v2.3.1 Performing routine housekeeping
[10/16/2013 - 04:57:33PM] ERROR: Array index 2 is out of range (0-0)
stack:
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.SetToggleOptionValue() - "SKI_ConfigBase.psc" Line 455
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.ApplySettings() - "SCM_ConfigMenu.psc" Line 255
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.OnGameReload() - "SCM_ConfigMenu.psc" Line 48
[alias PlayerAlias on quest SCM_ConfigMenu (14000D62)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:33PM] [sCM_ConfigMenu <SCM_ConfigMenu (14000D62)>] ERROR: Option type mismatch. Expected toggle option, page "", index 2
[10/16/2013 - 04:57:33PM] Wardrobe Manager (Quest) v2.3.1User Options:
DebugLevels = 1.000000
miscdbg=TRUE
mgefdbg = TRUE
transactiondbg = TRUE
aliasdbg = TRUE
changeintodbg = False
undressdbg = False
dressdbg = False
freeslotdbg = False
setprobsdbg = False
DisableChanges = False
AllowAlternatives = False
DressForCombat = False
WeaponsIncluded = False
HideWeapons = TRUE
OPT_clearslots = False
OPT_OutdoorGear = False
ChillWeight = 1.000000
CatwalkTimeout =30.000000
UserSubtitles=False
ForcedSubtitles=False
[10/16/2013 - 04:57:33PM] JemWMPatch - nothing to do
[10/16/2013 - 04:57:33PM] Wardrobe Manager (Quest) v2.3.1 Housekeeping done
[10/16/2013 - 04:57:33PM] ERROR: Array index 4 is out of range (0-0)
stack:
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.SetTextOptionValue() - "SKI_ConfigBase.psc" Line 437
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.ApplySettings() - "SCM_ConfigMenu.psc" Line 258
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.OnGameReload() - "SCM_ConfigMenu.psc" Line 48
[alias PlayerAlias on quest SCM_ConfigMenu (14000D62)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:33PM] [sCM_ConfigMenu <SCM_ConfigMenu (14000D62)>] ERROR: Option type mismatch. Expected text option, page "", index 4
[10/16/2013 - 04:57:33PM] InitWidgetLoader()

 
Link to comment

 

I'm wondering if anyone else is having severe game stability issues using this.  I had it running for a bit and certainly it was fantastic. Soon though I couldn't load my savegame without the game CDT at the moment of game load. Very soon after that even loading a clean save would result in a CDT. At first I had no idea what was causing it so I completely reinstalled skyrim. Then I installed just this (with its requirements) and the CBBE body. The game started CDT again as soon as I reinstalled this. Really I love this mod and I am hoping that someone may have some insight as to why the game is CDT.

 

EDIT: The post above was made as I was making my post. In light of the information above I will continue to work on this problem.

 

If it helps I will include my latest papyrus log:

 

 

[10/16/2013 - 04:57:20PM] Papyrus log opened (PC)
[10/16/2013 - 04:57:20PM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[10/16/2013 - 04:57:20PM] Memory page: 128 (min) 512 (max) 76800 (max total)
[10/16/2013 - 04:57:22PM] Cannot open store for class "dlc1scwispwallscript", missing file?
[10/16/2013 - 04:57:22PM] Cannot open store for class "DLC2BenthicLurkerFXSCRIPT", missing file?
[10/16/2013 - 04:57:22PM] ERROR: Unable to bind script HentaiImpregnated to HentaiPregnancyQuest (090012C7) because their base types do not match
[10/16/2013 - 04:57:23PM] Cannot open store for class "PF_gotha_WhiterunCarolynCarr_02019E62", missing file?
[10/16/2013 - 04:57:23PM] ERROR: Unable to bind script PF_gotha_WhiterunCarolynCarr_02019E62 to  (16019E62) because their base types do not match
[10/16/2013 - 04:57:23PM] Cannot open store for class "skinnydippingsetup", missing file?
[10/16/2013 - 04:57:23PM] Cannot open store for class "skinnyswimmingplayerscript", missing file?
[10/16/2013 - 04:57:23PM] Cannot open store for class "skinnydippingmenu", missing file?
[10/16/2013 - 04:57:24PM] ERROR: Unable to bind script DLC2WaterScript to alias Water on quest DLC2TTF2 (0401AAC8) because their base types do not match
[10/16/2013 - 04:57:24PM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (04016E02) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] ERROR: Property sounds on script BestRape_Horse attached to alias playermazo on quest rapequestmazo (0C000D62) cannot be initialized because the value is the incorrect type
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse099 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse098 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse097 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse096 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse095 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse094 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower0 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower1 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower2 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower3 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower4 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower5 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower6 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower7 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027115) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027114) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property TG05KarliahInvisibilitySpell on script tg06questscript attached to TG06 (00021552) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027117) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027116) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Alias_MarriageCustomHome on script QF_RelationshipMarriageFIN_00021382 attached to RelationshipMarriageFIN (00021382) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027112) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027113) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027111) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027110) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property SavageStrike on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Bladesman90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DarkSouls on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Necromancy on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property WindWalker on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MageArmor30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MagicResistance30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MagicResistance50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MageArmor50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property HackAndSlash90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property AugmentedFrost on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Bladesman60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property HackAndSlash60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property spellrap on script BeastFormRape attached to rapequestmazo (0C000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property SKI_GroupFullMsg on script ski_favoritesmanager attached to SKI_FavoritesManagerInstance (1300082A) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1VampireChangeEffect on script dlc1playervampirechangescript attached to DLC1PlayerVampireQuest (020071D0) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Axe on script DLC2DBAncientDragonbornSCRIPT attached to  (0401DC33) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (0402710F) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HentaiPregnancyVictimFaction on script hentaipregnancy attached to HentaiPregnancyQuest (090012C7) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWedding on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanions on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsFemale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessage on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC2RRTeldrynSero on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWait on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsMale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DismissedFollower on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Alias_LevitationTarget on script DLC2_QF_DLC2DialogueTelMithry_02017E85 attached to DLC2DialogueTelMithryn (04017E85) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] VM is freezing...
[10/16/2013 - 04:57:25PM] VM is frozen
[10/16/2013 - 04:57:25PM] Reverting game...
[10/16/2013 - 04:57:25PM] ERROR: Unable to bind script HentaiImpregnated to HentaiPregnancyQuest (090012C7) because their base types do not match
[10/16/2013 - 04:57:25PM] ERROR: Unable to bind script PF_gotha_WhiterunCarolynCarr_02019E62 to  (16019E62) because their base types do not match
[10/16/2013 - 04:57:25PM] ERROR: Unable to bind script DLC2WaterScript to alias Water on quest DLC2TTF2 (0401AAC8) because their base types do not match
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse097 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HentaiPregnancyVictimFaction on script hentaipregnancy attached to HentaiPregnancyQuest (090012C7) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (04016E02) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Alias_MarriageCustomHome on script QF_RelationshipMarriageFIN_00021382 attached to RelationshipMarriageFIN (00021382) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse098 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse094 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] ERROR: Property sounds on script BestRape_Horse attached to alias playermazo on quest rapequestmazo (0C000D62) cannot be initialized because the value is the incorrect type
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse095 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1VampireChangeEffect on script dlc1playervampirechangescript attached to DLC1PlayerVampireQuest (020071D0) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027115) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027114) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027116) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027113) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027110) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property TG05KarliahInvisibilitySpell on script tg06questscript attached to TG06 (00021552) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Alias_LevitationTarget on script DLC2_QF_DLC2DialogueTelMithry_02017E85 attached to DLC2DialogueTelMithryn (04017E85) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property spellrap on script BeastFormRape attached to rapequestmazo (0C000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (0402710F) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse096 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWedding on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanions on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsFemale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessage on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC2RRTeldrynSero on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWait on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsMale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DismissedFollower on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027112) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property SavageStrike on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Bladesman90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DarkSouls on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Necromancy on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property WindWalker on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MageArmor30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MagicResistance30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MagicResistance50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MageArmor50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HackAndSlash90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property AugmentedFrost on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Bladesman60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HackAndSlash60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property SKI_GroupFullMsg on script ski_favoritesmanager attached to SKI_FavoritesManagerInstance (1300082A) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027117) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse099 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Axe on script DLC2DBAncientDragonbornSCRIPT attached to  (0401DC33) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027111) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:31PM] Loading game...
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_HamalSybilLesson", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_HamalSybilLesson referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_SybilInitiation", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_SybilInitiation referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_TempleIdleSolo", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_TempleIdleSolo referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_SybilAlias", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_SybilAlias referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_TRG_HamalSybilLesson", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_TRG_HamalSybilLesson referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_TRG_RemoveBondage", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_TRG_RemoveBondage referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_SybilCaptiveInit", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_SybilCaptiveInit referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_SybilInitiation in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_HamalSybilLesson in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_TRG_RemoveBondage in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_TRG_HamalSybilLesson in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_TempleIdleSolo in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_SybilCaptiveInit in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_SybilAlias in the type table in save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer..OnHit in stack frame 0 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 2 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 4 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 6 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 8 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 10 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 12 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 14 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 16 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 18 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 20 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 22 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 24 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 26 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 28 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 30 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 32 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 34 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 36 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 38 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 40 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 42 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 44 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 46 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 48 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 50 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 52 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 54 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 56 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 58 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 60 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 62 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 64 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 66 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 68 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 70 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 72 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 74 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 76 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 78 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 80 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 82 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 84 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 86 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 88 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 90 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 92 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 94 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 96 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 98 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 100 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 102 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 104 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 106 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 108 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 110 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 112 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 114 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 116 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 118 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 120 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 122 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 124 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 126 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 128 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 130 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 132 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 134 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 136 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 138 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 140 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 142 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 144 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 146 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 148 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 150 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 152 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 154 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 156 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 158 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 160 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 162 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 164 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 166 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 168 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 170 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 172 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 174 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 176 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 178 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 180 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 182 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 184 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 186 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 188 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 190 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 192 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 194 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 196 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 198 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 200 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 202 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 204 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 206 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 208 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 210 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 212 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 214 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 216 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 218 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 220 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 222 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 224 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 226 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 228 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 230 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 232 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 234 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 236 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 238 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 240 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 242 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 244 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 246 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 248 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 250 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 252 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 254 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 256 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 258 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 260 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 262 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 264 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 266 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 268 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 270 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 272 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 274 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 276 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 278 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 280 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 282 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 284 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 286 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 288 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 290 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 292 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 294 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 296 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 298 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 300 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 302 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 304 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 306 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 308 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 310 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 312 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 314 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 316 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 318 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 320 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 322 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 324 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 326 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 328 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 330 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 332 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 334 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 336 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 338 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 340 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 342 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 344 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 346 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 348 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 350 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 352 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 354 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 356 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 358 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 360 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 362 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 364 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 366 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 368 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 370 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 372 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 374 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 376 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 378 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 380 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 382 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 384 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 386 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 388 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 390 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 392 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 394 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 396 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 398 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 400 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 402 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 404 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 406 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 408 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 410 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 412 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 414 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 416 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 418 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 420 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 422 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 424 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 426 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 428 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 430 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 432 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] VM is thawing...
[10/16/2013 - 04:57:31PM] ERROR: Cannot call OnGameReload() on a None object, aborting function call
stack:
[alias Player on quest vvvMarkHomeQuest (21000D62)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:31PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0300305D)>] OnPlayerLoadGame...
[10/16/2013 - 04:57:31PM] [DCL1VampireTurnPlayerScript <alias Player on quest DLC1VampireTurn (0200588C)>]OnPlayerLoadGame() calling MakeAliasesEyesRed()
[10/16/2013 - 04:57:31PM] [dlc1vampireturnscript <DLC1VampireTurn (0200588C)>]MakeAliasesEyesRed()
[10/16/2013 - 04:57:31PM] DLC2InitCrossDLCScript found: [DLC1VQ01QuestScript <DLC1VQ01 (0200352A)>], [byohrelationshipadoptionscript <BYOHRelationshipAdoption (030042B4)>]
[10/16/2013 - 04:57:33PM] ERROR: Cannot cast from None to hentaipregnantactoralias[]
stack:
[HentaiPregnancyQuest (090012C7)].hentaipregnancy.gameLoaded() - "HentaiPregnancy.psc" Line 45
[HentaiPregnancyQuest (090012C7)].hentaipregnancyconfig.OnGameReload() - "HentaiPregnancyConfig.psc" Line 348
[alias PlayerAlias on quest HentaiPregnancyQuest (090012C7)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:33PM] Wardrobe Manager (Quest) v2.3.1 Performing routine housekeeping
[10/16/2013 - 04:57:33PM] ERROR: Array index 2 is out of range (0-0)
stack:
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.SetToggleOptionValue() - "SKI_ConfigBase.psc" Line 455
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.ApplySettings() - "SCM_ConfigMenu.psc" Line 255
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.OnGameReload() - "SCM_ConfigMenu.psc" Line 48
[alias PlayerAlias on quest SCM_ConfigMenu (14000D62)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:33PM] [sCM_ConfigMenu <SCM_ConfigMenu (14000D62)>] ERROR: Option type mismatch. Expected toggle option, page "", index 2
[10/16/2013 - 04:57:33PM] Wardrobe Manager (Quest) v2.3.1User Options:
DebugLevels = 1.000000
miscdbg=TRUE
mgefdbg = TRUE
transactiondbg = TRUE
aliasdbg = TRUE
changeintodbg = False
undressdbg = False
dressdbg = False
freeslotdbg = False
setprobsdbg = False
DisableChanges = False
AllowAlternatives = False
DressForCombat = False
WeaponsIncluded = False
HideWeapons = TRUE
OPT_clearslots = False
OPT_OutdoorGear = False
ChillWeight = 1.000000
CatwalkTimeout =30.000000
UserSubtitles=False
ForcedSubtitles=False
[10/16/2013 - 04:57:33PM] JemWMPatch - nothing to do
[10/16/2013 - 04:57:33PM] Wardrobe Manager (Quest) v2.3.1 Housekeeping done
[10/16/2013 - 04:57:33PM] ERROR: Array index 4 is out of range (0-0)
stack:
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.SetTextOptionValue() - "SKI_ConfigBase.psc" Line 437
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.ApplySettings() - "SCM_ConfigMenu.psc" Line 258
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.OnGameReload() - "SCM_ConfigMenu.psc" Line 48
[alias PlayerAlias on quest SCM_ConfigMenu (14000D62)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:33PM] [sCM_ConfigMenu <SCM_ConfigMenu (14000D62)>] ERROR: Option type mismatch. Expected text option, page "", index 4
[10/16/2013 - 04:57:33PM] InitWidgetLoader()

 

 

Out of curiosity, were you loading it from inside the Woodland Home from the Build Your Own House mod? I currently have an issue with loading into the house (either in cell changes or loading from a save that was in that location) with this plug-in to where I can only use v07-22 and v09-28 to load from--using a later version of the plugin or choosing not to use the plugin produces a CTD for me.

 

As for performance, my game CTDs from time to time as well, but usually when transitioning from one cell to another or fast traveling--it's not super frequent but it is inconvenient for long-running plays.

 

 

Link to comment

I tinkered around with my HDT-data adder script last night. I got it running and opening the nif, but it doesn't seem to correctly write the changes. I'm going to play with it more tonight and hopefully fix it so that people can use it.

 

The requirements are fairly simple to install:

 

Python 3.2-3.3. 

PyFFI 2.2 (or whatever the latest is, make sure to install to C:\PythonDir\Lib\site-packages\pyffi where PythonDir is your python directory). 

 

Then you just run it like:

 

python hdt_data_adder.py <input_nif_filename>

 

(If it's unclear, this is for adding HDT support to first person meshes for The Joy of Perspective - though I imagine it will be useful later for setting up cloth physics and hair physics).

Link to comment

A bit of an update on my try out of this great mod 'cos weird but good things have been happening.

 

I initially couldn't get on with it because of the jitter with ENB which made the prescribed fix pretty mandatory, and that in turn came with a hefty fps hit. Thing is, it's too good to just ignore compared to canned tbbp anims, so I wondered if I could just suck up the jitter and be damned, it only seemed to occur side on when the camera was in close anyway. So I reinstalled 9.28.

 

Weirdly I haven't had a single occurence of jitter it since, and the only thing I can think of that's changed is I've dropped back down to enb 0.223 to try out Somber (sumptuous preset btw). It can't be that the jitter fix is baked into my saves 'cos I reverted to one prior to my first HDT install, and there's no performance hit either. And I've not had a single problem with this mod, no ctds or hangs, no weird graphical glitches, or infinity boobage, it's been plain sailing for the last 2 days, nothing but the joy of movement. Either that's just because the stars are currently aligned and it's going to go to shit at some stage (been there), or well....I dunno, witchcraft?

 

Anybody else had similarly positive experience with 9.28?

 

 

Link to comment

 

 

I'm wondering if anyone else is having severe game stability issues using this.  I had it running for a bit and certainly it was fantastic. Soon though I couldn't load my savegame without the game CDT at the moment of game load. Very soon after that even loading a clean save would result in a CDT. At first I had no idea what was causing it so I completely reinstalled skyrim. Then I installed just this (with its requirements) and the CBBE body. The game started CDT again as soon as I reinstalled this. Really I love this mod and I am hoping that someone may have some insight as to why the game is CDT.

 

EDIT: The post above was made as I was making my post. In light of the information above I will continue to work on this problem.

 

If it helps I will include my latest papyrus log:

 

 

[10/16/2013 - 04:57:20PM] Papyrus log opened (PC)
[10/16/2013 - 04:57:20PM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[10/16/2013 - 04:57:20PM] Memory page: 128 (min) 512 (max) 76800 (max total)
[10/16/2013 - 04:57:22PM] Cannot open store for class "dlc1scwispwallscript", missing file?
[10/16/2013 - 04:57:22PM] Cannot open store for class "DLC2BenthicLurkerFXSCRIPT", missing file?
[10/16/2013 - 04:57:22PM] ERROR: Unable to bind script HentaiImpregnated to HentaiPregnancyQuest (090012C7) because their base types do not match
[10/16/2013 - 04:57:23PM] Cannot open store for class "PF_gotha_WhiterunCarolynCarr_02019E62", missing file?
[10/16/2013 - 04:57:23PM] ERROR: Unable to bind script PF_gotha_WhiterunCarolynCarr_02019E62 to  (16019E62) because their base types do not match
[10/16/2013 - 04:57:23PM] Cannot open store for class "skinnydippingsetup", missing file?
[10/16/2013 - 04:57:23PM] Cannot open store for class "skinnyswimmingplayerscript", missing file?
[10/16/2013 - 04:57:23PM] Cannot open store for class "skinnydippingmenu", missing file?
[10/16/2013 - 04:57:24PM] ERROR: Unable to bind script DLC2WaterScript to alias Water on quest DLC2TTF2 (0401AAC8) because their base types do not match
[10/16/2013 - 04:57:24PM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (04016E02) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] ERROR: Property sounds on script BestRape_Horse attached to alias playermazo on quest rapequestmazo (0C000D62) cannot be initialized because the value is the incorrect type
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse099 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse098 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse097 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse096 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse095 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse094 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower0 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower1 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower2 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower3 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower4 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower5 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower6 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower7 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027115) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027114) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property TG05KarliahInvisibilitySpell on script tg06questscript attached to TG06 (00021552) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027117) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027116) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Alias_MarriageCustomHome on script QF_RelationshipMarriageFIN_00021382 attached to RelationshipMarriageFIN (00021382) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027112) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027113) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027111) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027110) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property SavageStrike on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Bladesman90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DarkSouls on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Necromancy on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property WindWalker on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MageArmor30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MagicResistance30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MagicResistance50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MageArmor50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property HackAndSlash90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property AugmentedFrost on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Bladesman60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property HackAndSlash60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property spellrap on script BeastFormRape attached to rapequestmazo (0C000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property SKI_GroupFullMsg on script ski_favoritesmanager attached to SKI_FavoritesManagerInstance (1300082A) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1VampireChangeEffect on script dlc1playervampirechangescript attached to DLC1PlayerVampireQuest (020071D0) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Axe on script DLC2DBAncientDragonbornSCRIPT attached to  (0401DC33) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (0402710F) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HentaiPregnancyVictimFaction on script hentaipregnancy attached to HentaiPregnancyQuest (090012C7) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWedding on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanions on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsFemale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessage on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC2RRTeldrynSero on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWait on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsMale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DismissedFollower on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Alias_LevitationTarget on script DLC2_QF_DLC2DialogueTelMithry_02017E85 attached to DLC2DialogueTelMithryn (04017E85) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] VM is freezing...
[10/16/2013 - 04:57:25PM] VM is frozen
[10/16/2013 - 04:57:25PM] Reverting game...
[10/16/2013 - 04:57:25PM] ERROR: Unable to bind script HentaiImpregnated to HentaiPregnancyQuest (090012C7) because their base types do not match
[10/16/2013 - 04:57:25PM] ERROR: Unable to bind script PF_gotha_WhiterunCarolynCarr_02019E62 to  (16019E62) because their base types do not match
[10/16/2013 - 04:57:25PM] ERROR: Unable to bind script DLC2WaterScript to alias Water on quest DLC2TTF2 (0401AAC8) because their base types do not match
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse097 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HentaiPregnancyVictimFaction on script hentaipregnancy attached to HentaiPregnancyQuest (090012C7) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (04016E02) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Alias_MarriageCustomHome on script QF_RelationshipMarriageFIN_00021382 attached to RelationshipMarriageFIN (00021382) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse098 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse094 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] ERROR: Property sounds on script BestRape_Horse attached to alias playermazo on quest rapequestmazo (0C000D62) cannot be initialized because the value is the incorrect type
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse095 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1VampireChangeEffect on script dlc1playervampirechangescript attached to DLC1PlayerVampireQuest (020071D0) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027115) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027114) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027116) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027113) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027110) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property TG05KarliahInvisibilitySpell on script tg06questscript attached to TG06 (00021552) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Alias_LevitationTarget on script DLC2_QF_DLC2DialogueTelMithry_02017E85 attached to DLC2DialogueTelMithryn (04017E85) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property spellrap on script BeastFormRape attached to rapequestmazo (0C000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (0402710F) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse096 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWedding on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanions on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsFemale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessage on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC2RRTeldrynSero on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWait on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsMale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DismissedFollower on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027112) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property SavageStrike on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Bladesman90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DarkSouls on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Necromancy on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property WindWalker on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MageArmor30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MagicResistance30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MagicResistance50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MageArmor50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HackAndSlash90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property AugmentedFrost on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Bladesman60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HackAndSlash60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property SKI_GroupFullMsg on script ski_favoritesmanager attached to SKI_FavoritesManagerInstance (1300082A) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027117) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse099 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Axe on script DLC2DBAncientDragonbornSCRIPT attached to  (0401DC33) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027111) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:31PM] Loading game...
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_HamalSybilLesson", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_HamalSybilLesson referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_SybilInitiation", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_SybilInitiation referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_TempleIdleSolo", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_TempleIdleSolo referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_SybilAlias", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_SybilAlias referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_TRG_HamalSybilLesson", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_TRG_HamalSybilLesson referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_TRG_RemoveBondage", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_TRG_RemoveBondage referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_SybilCaptiveInit", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_SybilCaptiveInit referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_SybilInitiation in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_HamalSybilLesson in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_TRG_RemoveBondage in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_TRG_HamalSybilLesson in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_TempleIdleSolo in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_SybilCaptiveInit in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_SybilAlias in the type table in save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer..OnHit in stack frame 0 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 2 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 4 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 6 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 8 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 10 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 12 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 14 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 16 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 18 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 20 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 22 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 24 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 26 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 28 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 30 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 32 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 34 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 36 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 38 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 40 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 42 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 44 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 46 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 48 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 50 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 52 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 54 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 56 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 58 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 60 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 62 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 64 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 66 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 68 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 70 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 72 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 74 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 76 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 78 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 80 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 82 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 84 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 86 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 88 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 90 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 92 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 94 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 96 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 98 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 100 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 102 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 104 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 106 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 108 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 110 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 112 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 114 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 116 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 118 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 120 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 122 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 124 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 126 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 128 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 130 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 132 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 134 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 136 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 138 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 140 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 142 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 144 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 146 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 148 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 150 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 152 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 154 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 156 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 158 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 160 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 162 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 164 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 166 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 168 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 170 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 172 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 174 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 176 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 178 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 180 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 182 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 184 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 186 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 188 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 190 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 192 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 194 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 196 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 198 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 200 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 202 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 204 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 206 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 208 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 210 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 212 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 214 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 216 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 218 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 220 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 222 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 224 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 226 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 228 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 230 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 232 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 234 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 236 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 238 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 240 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 242 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 244 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 246 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 248 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 250 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 252 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 254 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 256 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 258 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 260 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 262 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 264 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 266 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 268 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 270 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 272 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 274 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 276 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 278 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 280 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 282 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 284 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 286 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 288 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 290 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 292 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 294 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 296 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 298 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 300 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 302 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 304 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 306 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 308 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 310 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 312 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 314 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 316 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 318 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 320 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 322 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 324 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 326 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 328 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 330 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 332 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 334 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 336 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 338 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 340 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 342 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 344 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 346 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 348 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 350 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 352 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 354 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 356 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 358 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 360 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 362 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 364 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 366 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 368 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 370 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 372 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 374 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 376 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 378 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 380 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 382 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 384 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 386 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 388 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 390 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 392 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 394 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 396 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 398 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 400 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 402 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 404 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 406 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 408 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 410 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 412 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 414 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 416 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 418 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 420 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 422 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 424 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 426 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 428 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 430 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 432 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] VM is thawing...
[10/16/2013 - 04:57:31PM] ERROR: Cannot call OnGameReload() on a None object, aborting function call
stack:
[alias Player on quest vvvMarkHomeQuest (21000D62)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:31PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0300305D)>] OnPlayerLoadGame...
[10/16/2013 - 04:57:31PM] [DCL1VampireTurnPlayerScript <alias Player on quest DLC1VampireTurn (0200588C)>]OnPlayerLoadGame() calling MakeAliasesEyesRed()
[10/16/2013 - 04:57:31PM] [dlc1vampireturnscript <DLC1VampireTurn (0200588C)>]MakeAliasesEyesRed()
[10/16/2013 - 04:57:31PM] DLC2InitCrossDLCScript found: [DLC1VQ01QuestScript <DLC1VQ01 (0200352A)>], [byohrelationshipadoptionscript <BYOHRelationshipAdoption (030042B4)>]
[10/16/2013 - 04:57:33PM] ERROR: Cannot cast from None to hentaipregnantactoralias[]
stack:
[HentaiPregnancyQuest (090012C7)].hentaipregnancy.gameLoaded() - "HentaiPregnancy.psc" Line 45
[HentaiPregnancyQuest (090012C7)].hentaipregnancyconfig.OnGameReload() - "HentaiPregnancyConfig.psc" Line 348
[alias PlayerAlias on quest HentaiPregnancyQuest (090012C7)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:33PM] Wardrobe Manager (Quest) v2.3.1 Performing routine housekeeping
[10/16/2013 - 04:57:33PM] ERROR: Array index 2 is out of range (0-0)
stack:
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.SetToggleOptionValue() - "SKI_ConfigBase.psc" Line 455
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.ApplySettings() - "SCM_ConfigMenu.psc" Line 255
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.OnGameReload() - "SCM_ConfigMenu.psc" Line 48
[alias PlayerAlias on quest SCM_ConfigMenu (14000D62)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:33PM] [sCM_ConfigMenu <SCM_ConfigMenu (14000D62)>] ERROR: Option type mismatch. Expected toggle option, page "", index 2
[10/16/2013 - 04:57:33PM] Wardrobe Manager (Quest) v2.3.1User Options:
DebugLevels = 1.000000
miscdbg=TRUE
mgefdbg = TRUE
transactiondbg = TRUE
aliasdbg = TRUE
changeintodbg = False
undressdbg = False
dressdbg = False
freeslotdbg = False
setprobsdbg = False
DisableChanges = False
AllowAlternatives = False
DressForCombat = False
WeaponsIncluded = False
HideWeapons = TRUE
OPT_clearslots = False
OPT_OutdoorGear = False
ChillWeight = 1.000000
CatwalkTimeout =30.000000
UserSubtitles=False
ForcedSubtitles=False
[10/16/2013 - 04:57:33PM] JemWMPatch - nothing to do
[10/16/2013 - 04:57:33PM] Wardrobe Manager (Quest) v2.3.1 Housekeeping done
[10/16/2013 - 04:57:33PM] ERROR: Array index 4 is out of range (0-0)
stack:
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.SetTextOptionValue() - "SKI_ConfigBase.psc" Line 437
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.ApplySettings() - "SCM_ConfigMenu.psc" Line 258
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.OnGameReload() - "SCM_ConfigMenu.psc" Line 48
[alias PlayerAlias on quest SCM_ConfigMenu (14000D62)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:33PM] [sCM_ConfigMenu <SCM_ConfigMenu (14000D62)>] ERROR: Option type mismatch. Expected text option, page "", index 4
[10/16/2013 - 04:57:33PM] InitWidgetLoader()

 

 

Out of curiosity, were you loading it from inside the Woodland Home from the Build Your Own House mod? I currently have an issue with loading into the house (either in cell changes or loading from a save that was in that location) with this plug-in to where I can only use v07-22 and v09-28 to load from--using a later version of the plugin or choosing not to use the plugin produces a CTD for me.

 

As for performance, my game CTDs from time to time as well, but usually when transitioning from one cell to another or fast traveling--it's not super frequent but it is inconvenient for long-running plays.

 

 

 

 

No, I was CTD everywhere. Inside or outside. Also the really annoying part was that sometimes when I hit the quicksave key the game would CTD as well. Actually it was so bad I had to use the autosave feature when you rest to save my game.

 

I have applied the minor update from the first post and though I a am still getting more CTDs than normal it appears that once it loads the game is fairly stable. Still this will be pretty annoying if I have a 1:5 chance of actually successfully loading a savegame.

 

EDIT: Well sadly the newest update for this mod does not fix the problem. The game still crashes much more frequently upon loading. I just tried to load a clean save 7 times before it finally loaded. 

Link to comment

Progress!

 

I now have my script spitting out a nif file with the HDT NiStringExtraData added properly. I'm going to work on making a front end for it, after I test that the output is correct.

 

I'm going to fix it so that it overwrites the original file (if desired) as it currently just appends "out" to the beginning of the filename and makes a new one.

 

TL;DR: Got the basic version of my tool to add HDT support to any mesh via a command line tool up and running (for the moment, most useful for adding HDT to The Joy of Perspective first person meshes). 

Link to comment

 

 

I'm wondering if anyone else is having severe game stability issues using this.  I had it running for a bit and certainly it was fantastic. Soon though I couldn't load my savegame without the game CDT at the moment of game load. Very soon after that even loading a clean save would result in a CDT. At first I had no idea what was causing it so I completely reinstalled skyrim. Then I installed just this (with its requirements) and the CBBE body. The game started CDT again as soon as I reinstalled this. Really I love this mod and I am hoping that someone may have some insight as to why the game is CDT.

 

EDIT: The post above was made as I was making my post. In light of the information above I will continue to work on this problem.

 

If it helps I will include my latest papyrus log:

 

 

[10/16/2013 - 04:57:20PM] Papyrus log opened (PC)
[10/16/2013 - 04:57:20PM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[10/16/2013 - 04:57:20PM] Memory page: 128 (min) 512 (max) 76800 (max total)
[10/16/2013 - 04:57:22PM] Cannot open store for class "dlc1scwispwallscript", missing file?
[10/16/2013 - 04:57:22PM] Cannot open store for class "DLC2BenthicLurkerFXSCRIPT", missing file?
[10/16/2013 - 04:57:22PM] ERROR: Unable to bind script HentaiImpregnated to HentaiPregnancyQuest (090012C7) because their base types do not match
[10/16/2013 - 04:57:23PM] Cannot open store for class "PF_gotha_WhiterunCarolynCarr_02019E62", missing file?
[10/16/2013 - 04:57:23PM] ERROR: Unable to bind script PF_gotha_WhiterunCarolynCarr_02019E62 to  (16019E62) because their base types do not match
[10/16/2013 - 04:57:23PM] Cannot open store for class "skinnydippingsetup", missing file?
[10/16/2013 - 04:57:23PM] Cannot open store for class "skinnyswimmingplayerscript", missing file?
[10/16/2013 - 04:57:23PM] Cannot open store for class "skinnydippingmenu", missing file?
[10/16/2013 - 04:57:24PM] ERROR: Unable to bind script DLC2WaterScript to alias Water on quest DLC2TTF2 (0401AAC8) because their base types do not match
[10/16/2013 - 04:57:24PM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (04016E02) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] ERROR: Property sounds on script BestRape_Horse attached to alias playermazo on quest rapequestmazo (0C000D62) cannot be initialized because the value is the incorrect type
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse099 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse098 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse097 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse096 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse095 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse094 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower0 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower1 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower2 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower3 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower4 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower5 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower6 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] ERROR: Property playerScript on script jemfabulousfolloweraliasscript attached to alias Fabulous Follower7 on quest JemWardrobeManager (35043089) cannot be bound because alias Player on quest JemWardrobeManager (35043089) is not the right type
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027115) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027114) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property TG05KarliahInvisibilitySpell on script tg06questscript attached to TG06 (00021552) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027117) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027116) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Alias_MarriageCustomHome on script QF_RelationshipMarriageFIN_00021382 attached to RelationshipMarriageFIN (00021382) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027112) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027113) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027111) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027110) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property SavageStrike on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Bladesman90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DarkSouls on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Necromancy on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property WindWalker on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MageArmor30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MagicResistance30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MagicResistance50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property MageArmor50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property HackAndSlash90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property AugmentedFrost on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Bladesman60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property HackAndSlash60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property spellrap on script BeastFormRape attached to rapequestmazo (0C000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property SKI_GroupFullMsg on script ski_favoritesmanager attached to SKI_FavoritesManagerInstance (1300082A) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property DLC1VampireChangeEffect on script dlc1playervampirechangescript attached to DLC1PlayerVampireQuest (020071D0) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:24PM] warning: Property Axe on script DLC2DBAncientDragonbornSCRIPT attached to  (0401DC33) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (0402710F) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HentaiPregnancyVictimFaction on script hentaipregnancy attached to HentaiPregnancyQuest (090012C7) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWedding on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanions on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsFemale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessage on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC2RRTeldrynSero on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWait on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsMale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DismissedFollower on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Alias_LevitationTarget on script DLC2_QF_DLC2DialogueTelMithry_02017E85 attached to DLC2DialogueTelMithryn (04017E85) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] VM is freezing...
[10/16/2013 - 04:57:25PM] VM is frozen
[10/16/2013 - 04:57:25PM] Reverting game...
[10/16/2013 - 04:57:25PM] ERROR: Unable to bind script HentaiImpregnated to HentaiPregnancyQuest (090012C7) because their base types do not match
[10/16/2013 - 04:57:25PM] ERROR: Unable to bind script PF_gotha_WhiterunCarolynCarr_02019E62 to  (16019E62) because their base types do not match
[10/16/2013 - 04:57:25PM] ERROR: Unable to bind script DLC2WaterScript to alias Water on quest DLC2TTF2 (0401AAC8) because their base types do not match
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse097 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HentaiPregnancyVictimFaction on script hentaipregnancy attached to HentaiPregnancyQuest (090012C7) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (04016E02) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Alias_MarriageCustomHome on script QF_RelationshipMarriageFIN_00021382 attached to RelationshipMarriageFIN (00021382) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse098 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse094 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] ERROR: Property sounds on script BestRape_Horse attached to alias playermazo on quest rapequestmazo (0C000D62) cannot be initialized because the value is the incorrect type
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse095 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1VampireChangeEffect on script dlc1playervampirechangescript attached to DLC1PlayerVampireQuest (020071D0) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027115) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027114) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027116) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027113) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027110) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property TG05KarliahInvisibilitySpell on script tg06questscript attached to TG06 (00021552) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Alias_LevitationTarget on script DLC2_QF_DLC2DialogueTelMithry_02017E85 attached to DLC2DialogueTelMithryn (04017E85) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property spellrap on script BeastFormRape attached to rapequestmazo (0C000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (0402710F) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse096 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWedding on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanions on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsFemale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessage on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC2RRTeldrynSero on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageWait on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property FollowerDismissMessageCompanionsMale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DismissedFollower on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (04038566) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027112) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property SavageStrike on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Bladesman90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DarkSouls on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Necromancy on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property WindWalker on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MageArmor30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MagicResistance30 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MagicResistance50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property MageArmor50 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HackAndSlash90 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property AugmentedFrost on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Bladesman60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property HackAndSlash60 on script DLC1SeranaLevelingScript attached to  (02003BA8) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property SKI_GroupFullMsg on script ski_favoritesmanager attached to SKI_FavoritesManagerInstance (1300082A) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027117) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property DLC1PlayerTurnedVampire on script DudestiaSpouseScript attached to alias Spouse099 on quest DudestiaMultiMarriages (34000D62) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property Axe on script DLC2DBAncientDragonbornSCRIPT attached to  (0401DC33) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:25PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to  (04027111) cannot be initialized because the script no longer contains that property
[10/16/2013 - 04:57:31PM] Loading game...
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_HamalSybilLesson", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_HamalSybilLesson referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_SybilInitiation", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_SybilInitiation referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_TempleIdleSolo", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_TempleIdleSolo referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_SybilAlias", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_SybilAlias referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_TRG_HamalSybilLesson", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_TRG_HamalSybilLesson referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_TRG_RemoveBondage", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_TRG_RemoveBondage referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] Cannot open store for class "SL_Dibella_QST_SybilCaptiveInit", missing file?
[10/16/2013 - 04:57:31PM] warning: Unable to get type SL_Dibella_QST_SybilCaptiveInit referenced by the save game. Objects of this type will not be loaded.
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_SybilInitiation in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_HamalSybilLesson in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_TRG_RemoveBondage in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_TRG_HamalSybilLesson in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_TempleIdleSolo in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_SybilCaptiveInit in the type table in save
[10/16/2013 - 04:57:31PM] warning: Could not find type SL_Dibella_QST_SybilAlias in the type table in save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer..OnHit in stack frame 0 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 2 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 4 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 6 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 8 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 10 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 12 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 14 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 16 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 18 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 20 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 22 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 24 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 26 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 28 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 30 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 32 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 34 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 36 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 38 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 40 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 42 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 44 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 46 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 48 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 50 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 52 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 54 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 56 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 58 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 60 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 62 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 64 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 66 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 68 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 70 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 72 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 74 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 76 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 78 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 80 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 82 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 84 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 86 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 88 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 90 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 92 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 94 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 96 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 98 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 100 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 102 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 104 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 106 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 108 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 110 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 112 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 114 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 116 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 118 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 120 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 122 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 124 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 126 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 128 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 130 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 132 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 134 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 136 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 138 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 140 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 142 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 144 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 146 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 148 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 150 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 152 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 154 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 156 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 158 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 160 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 162 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 164 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 166 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 168 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 170 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 172 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 174 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 176 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 178 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 180 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 182 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 184 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 186 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 188 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 190 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 192 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 194 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 196 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 198 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 200 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 202 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 204 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 206 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 208 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 210 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 212 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 214 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 216 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 218 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 220 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 222 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 224 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 226 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 228 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 230 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 232 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 234 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 236 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 238 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 240 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 242 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 244 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 246 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 248 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 250 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 252 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 254 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 256 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 258 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 260 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 262 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 264 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 266 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 268 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 270 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 272 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 274 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 276 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 278 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 280 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 282 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 284 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 286 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 288 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 290 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 292 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 294 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 296 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 298 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 300 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 302 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 304 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 306 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 308 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 310 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 312 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 314 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 316 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 318 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 320 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 322 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 324 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 326 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 328 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 330 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 332 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 334 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 336 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 338 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 340 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 342 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 344 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 346 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 348 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 350 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 352 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 354 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 356 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 358 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 360 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 362 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 364 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 366 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 368 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 370 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 372 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 374 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 376 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 378 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 380 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 382 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 384 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 386 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 388 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 390 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 392 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 394 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 396 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 398 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 400 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 402 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 404 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 406 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 408 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 410 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 412 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 414 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 416 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 418 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 420 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 422 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 424 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 426 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 428 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 430 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] warning: Function defeatplayer.MightRecover.onBeginState in stack frame 432 in stack 8681 differs from the in-game resource files - using version from save
[10/16/2013 - 04:57:31PM] VM is thawing...
[10/16/2013 - 04:57:31PM] ERROR: Cannot call OnGameReload() on a None object, aborting function call
stack:
[alias Player on quest vvvMarkHomeQuest (21000D62)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:31PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0300305D)>] OnPlayerLoadGame...
[10/16/2013 - 04:57:31PM] [DCL1VampireTurnPlayerScript <alias Player on quest DLC1VampireTurn (0200588C)>]OnPlayerLoadGame() calling MakeAliasesEyesRed()
[10/16/2013 - 04:57:31PM] [dlc1vampireturnscript <DLC1VampireTurn (0200588C)>]MakeAliasesEyesRed()
[10/16/2013 - 04:57:31PM] DLC2InitCrossDLCScript found: [DLC1VQ01QuestScript <DLC1VQ01 (0200352A)>], [byohrelationshipadoptionscript <BYOHRelationshipAdoption (030042B4)>]
[10/16/2013 - 04:57:33PM] ERROR: Cannot cast from None to hentaipregnantactoralias[]
stack:
[HentaiPregnancyQuest (090012C7)].hentaipregnancy.gameLoaded() - "HentaiPregnancy.psc" Line 45
[HentaiPregnancyQuest (090012C7)].hentaipregnancyconfig.OnGameReload() - "HentaiPregnancyConfig.psc" Line 348
[alias PlayerAlias on quest HentaiPregnancyQuest (090012C7)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:33PM] Wardrobe Manager (Quest) v2.3.1 Performing routine housekeeping
[10/16/2013 - 04:57:33PM] ERROR: Array index 2 is out of range (0-0)
stack:
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.SetToggleOptionValue() - "SKI_ConfigBase.psc" Line 455
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.ApplySettings() - "SCM_ConfigMenu.psc" Line 255
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.OnGameReload() - "SCM_ConfigMenu.psc" Line 48
[alias PlayerAlias on quest SCM_ConfigMenu (14000D62)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:33PM] [sCM_ConfigMenu <SCM_ConfigMenu (14000D62)>] ERROR: Option type mismatch. Expected toggle option, page "", index 2
[10/16/2013 - 04:57:33PM] Wardrobe Manager (Quest) v2.3.1User Options:
DebugLevels = 1.000000
miscdbg=TRUE
mgefdbg = TRUE
transactiondbg = TRUE
aliasdbg = TRUE
changeintodbg = False
undressdbg = False
dressdbg = False
freeslotdbg = False
setprobsdbg = False
DisableChanges = False
AllowAlternatives = False
DressForCombat = False
WeaponsIncluded = False
HideWeapons = TRUE
OPT_clearslots = False
OPT_OutdoorGear = False
ChillWeight = 1.000000
CatwalkTimeout =30.000000
UserSubtitles=False
ForcedSubtitles=False
[10/16/2013 - 04:57:33PM] JemWMPatch - nothing to do
[10/16/2013 - 04:57:33PM] Wardrobe Manager (Quest) v2.3.1 Housekeeping done
[10/16/2013 - 04:57:33PM] ERROR: Array index 4 is out of range (0-0)
stack:
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.SetTextOptionValue() - "SKI_ConfigBase.psc" Line 437
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.ApplySettings() - "SCM_ConfigMenu.psc" Line 258
[sCM_ConfigMenu (14000D62)].SCM_ConfigMenu.OnGameReload() - "SCM_ConfigMenu.psc" Line 48
[alias PlayerAlias on quest SCM_ConfigMenu (14000D62)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[10/16/2013 - 04:57:33PM] [sCM_ConfigMenu <SCM_ConfigMenu (14000D62)>] ERROR: Option type mismatch. Expected text option, page "", index 4
[10/16/2013 - 04:57:33PM] InitWidgetLoader()

 

 

Out of curiosity, were you loading it from inside the Woodland Home from the Build Your Own House mod? I currently have an issue with loading into the house (either in cell changes or loading from a save that was in that location) with this plug-in to where I can only use v07-22 and v09-28 to load from--using a later version of the plugin or choosing not to use the plugin produces a CTD for me.

 

As for performance, my game CTDs from time to time as well, but usually when transitioning from one cell to another or fast traveling--it's not super frequent but it is inconvenient for long-running plays.

 

 

 

 

ive noticed BYOH errors I my log also, and I don't have the mod installed, my guess is that they used the BYOH mod to make hearthfire add-on (wich I do have) and the errors are coming from there.

Link to comment

Getting this on startup with 10-10. 9-28 works fine.

 

Running ENB v0.229
 

hdtPhysicsExtensions
[10/17/13 22:35:26]INFO: Queue OK
[10/17/13 22:35:26]INFO: System run with 8 threads
[10/17/13 22:35:26]INFO: Havok simulated world created.
[10/17/13 22:35:26]INFO: SKSEPlugin_Load
[10/17/13 22:35:47]INFO: Suspending ... Mist Menu
[10/17/13 22:36:05]INFO: Resuming... Fader Menu
[10/17/13 22:36:05]INFO: Suspending ... Loading Menu
[10/17/13 22:36:16]ERROR: Fatal error occured
[10/17/13 22:36:16]ERROR: Code : 0xe06d7363
[10/17/13 22:36:16]ERROR: Flag : 0x00000001
[10/17/13 22:36:16]ERROR: Module : 
[10/17/13 22:36:16]ERROR: Address : 0x756fc41f
[10/17/13 22:36:16]ERROR: Module Address : 0x756fc000
[10/17/13 22:36:16]ERROR: ExceptionContent saved in hdtPhysicsExtensions.dump
[10/17/13 22:36:16]ERROR: Plugin is trying to save game

hdtPhysicsExtensions.dump.7z

Link to comment

Hmm, out of sheer chance I noticed something odd. I would never have noticed this if I hadn't been talking to a friend on steam. I had the Steam overlay open while my save was loading. It loaded successfully with the overlay still on. For a brief moment before I closed the overlay I notice the background had changed. I could tell that somehow my character had been transported to somewhere high over Whiterun. As soon as I closed the overlay the game CTD. I have tested this a few times and it seems that this is happening each time on an unsuccessful game load. 

 

EDIT: @jbezorg -- What are you using to log that by chance?

 

Link to comment

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use