Jump to content

SexLab Framework Development


Recommended Posts

Posted

OK I know "sexlab aroused" was discussed but I do not get an error, onscreen anyway.

what I AM getting is a crash-on-save after I try to use "sexlab aroused" on an NPC at one specific part of the game.

Question: Is the "sexlab aroused" really at fault or is my game trashed generally?

And apologies for anything, I've only done the procedure listed 4 posts above.

This is maddening, I'm trying to be vague enough to not be boring, but if any of you had any problems

with "aroused redux" reacting to 1.60RC1 and if you solved them, that would be the department I'm looking for.

 

Aroused and Aroused Redux use mostly the same code to do their work.  Neither should be causing you to crash.  If your issue is too much papyrus, Redux will be a better choice.  The log error you MAY get with either is a warning.  It is not an error even though it looks pretty aweful.  If I fix this warning, Redux will cease to work with 1.59c and below, so I am leaving it alone for a while.

 

Check your papyrus log and if you are getting stack dumps, consider dumping some of your heavier papyrus mods.  Check this post for a list of troublesome mods http://steamcommunity.com/app/72850/discussions/0/523890681422555089/.

 

Also, check the list on the Sex Slaves main page  (about halfway down) for a list of mods that are also known to put a heavy papyrus load on your machine.

 

Also consider using SaveTool.exe and/or PDT if you want to spend some learning time to clean up your saves.

Posted

 

OK I know "sexlab aroused" was discussed but I do not get an error, onscreen anyway.

what I AM getting is a crash-on-save after I try to use "sexlab aroused" on an NPC at one specific part of the game.

Question: Is the "sexlab aroused" really at fault or is my game trashed generally?

And apologies for anything, I've only done the procedure listed 4 posts above.

This is maddening, I'm trying to be vague enough to not be boring, but if any of you had any problems

with "aroused redux" reacting to 1.60RC1 and if you solved them, that would be the department I'm looking for.

 

Aroused and Aroused Redux use mostly the same code to do their work.  Neither should be causing you to crash.  If your issue is too much papyrus, Redux will be a better choice.  The log error you MAY get with either is a warning.  It is not an error even though it looks pretty aweful.  If I fix this warning, Redux will cease to work with 1.59c and below, so I am leaving it alone for a while.

 

Check your papyrus log and if you are getting stack dumps, consider dumping some of your heavier papyrus mods.  Check this post for a list of troublesome mods http://steamcommunity.com/app/72850/discussions/0/523890681422555089/.

 

Also, check the list on the Sex Slaves main page  (about halfway down) for a list of mods that are also known to put a heavy papyrus load on your machine.

 

Also consider using SaveTool.exe and/or PDT if you want to spend some learning time to clean up your saves.

 

It's timely you mentioned Papyrus, because either the mod or the game itself modified my papyrus section of skyrim.ini, turning off all logging (logging, trace, information).

 

I turned them back on, and looked for threads on the subject.

" fPostLoadUpdateTimeMS "​

 

is a variable in the INI that is brought up repeatedly, and users relate that it should be changed (to 2000).

along with, um, the other variables (basically, increasing the crap out of them).

I'll be back.

 

Thank you so much!!

Posted

SexLab 1.60 Release Candidate 2:

http://www.loverslab.com/topic/18708-sexlab-framework-development-160-beta-2b-july-19th/?p=1249225

 
 
This will likely be the last non-final release of 1.60.

 

With this version debug mode is no longer force enabled and deprecation messages have been disabled along with a lot of other development related logging.

 
Assuming no major bugs are reported that are actually framework bugs, then the only thing it's missing from the final release is expanded animation tags and API documentation of the new modder features (which there is a lot of.)

Posted

In case this was missed previously: FindAvailableActor() in sslThreadLibrary.psc is still generating errors.

    ; Create supression list
    form[] Suppressed = new form[25]
    Suppressed[24] = CenterRef
    Suppressed[23] = IgnoreRef1
    Suppressed[22] = IgnoreRef2
    Suppressed[21] = IgnoreRef3
    Suppressed[20] = IgnoreRef4
    ; Attempt 30 times before giving up.
    int i = 30
    while i
        i -= 1
        Actor FoundRef = Game.FindRandomActorFromRef(CenterRef, Radius)
        if !FoundRef || (Suppressed.Find(FoundRef) == -1 && CheckActor(FoundRef, FindGender))
            return FoundRef ; None means no actor in radius, give up now
        endIf
        Suppressed[i] = FoundRef
    endWhile

If a non-ignored actor is not found on the first try this will produce up to five "out of range" errors. On the next loop it will begin overriding the ignored actors.

 

int i = 30 should be int i = 20 or the Suppressed array should be extended to 35 and the ignored indexes raised appropriately.

Posted

In case this was missed previously: FindAvailableActor() in sslThreadLibrary.psc is still generating errors.

    ; Create supression list
    form[] Suppressed = new form[25]
    Suppressed[24] = CenterRef
    Suppressed[23] = IgnoreRef1
    Suppressed[22] = IgnoreRef2
    Suppressed[21] = IgnoreRef3
    Suppressed[20] = IgnoreRef4
    ; Attempt 30 times before giving up.
    int i = 30
    while i
        i -= 1
        Actor FoundRef = Game.FindRandomActorFromRef(CenterRef, Radius)
        if !FoundRef || (Suppressed.Find(FoundRef) == -1 && CheckActor(FoundRef, FindGender))
            return FoundRef ; None means no actor in radius, give up now
        endIf
        Suppressed[i] = FoundRef
    endWhile

If a non-ignored actor is not found on the first try this will produce up to five "out of range" errors. On the next loop it will begin overriding the ignored actors.

 

int i = 30 should be int i = 20 or the Suppressed array should be extended to 35 and the ignored indexes raised appropriately.

 

Fixed now.

Posted

The SLA-R problem above was much improved with RC2.

Gods know why, but

OK a save after modifying Peaches level of arousal would result in a crash.

After RC2, I changed her level three times and saved (changed, saved etc)

It worked great.

So somethings new and better.

Now All's I gotta do is calm the hell down and stop being so hard on myself.

It wasn't Me!

Yay.

:(

Posted

Just a heads up.

 

Do NOT use ANY Devious Devices mods with 1.60 until they are updated.  Just removed all DD mods and my CTD and performance issues disappeared.

 

Thanks to the guys in Technical Support Forum for finding this.  Was driving me nuts.

Posted

Just a heads up.

 

Do NOT use ANY Devious Devices mods with 1.60 until they are updated.  Just removed all DD mods and my CTD and performance issues disappeared.

 

Thanks to the guys in Technical Support Forum for finding this.  Was driving me nuts.

 

I've been using and testing many devious devices mods throughout the development of 1.60. There have been no issues. If you can, provide any support information, otherwise  all indications seem to suggest there being no problem with SexLab or it's related mods.

Posted

 

Just a heads up.

 

Do NOT use ANY Devious Devices mods with 1.60 until they are updated.  Just removed all DD mods and my CTD and performance issues disappeared.

 

Thanks to the guys in Technical Support Forum for finding this.  Was driving me nuts.

 

I've been using and testing many devious devices mods throughout the development of 1.60. There have been no issues. If you can, provide any support information, otherwise  all indications seem to suggest there being no problem with SexLab or it's related mods.

 

 

 

0 0 Skyrim.esm

1 1 Update.esm

2 2 Unofficial Skyrim Patch.esp

3 3 Dawnguard.esm

4 4 Unofficial Dawnguard Patch.esp

5 5 HearthFires.esm

6 6 Unofficial Hearthfire Patch.esp

7 7 Dragonborn.esm

8 8 Unofficial Dragonborn Patch.esp

9 9 Skyrim Project Optimization - No Homes - Full Version.esm

10 a Falskaar.esm

11 b Wyrmstooth.esp

12 c ApachiiHair.esm

13 d ApachiiHairFemales.esm

14 e ApachiiHairMales.esm

15 f AzarHair.esm

16 10 OblivionHairPackAIO.esm

17 11 EFFCore.esm

18 12 hdtHighHeel.esm

19 13 Schlongs of Skyrim - Core.esm

20 14 SexLab.esm

21 15 SexLabAroused.esm

22 16 SGHairPackBase.esm

23 17 ZaZAnimationPack.esm

24 18 Devious Devices - Assets.esm

25 19 RSkyrimChildren.esm

26 1a SharedSeranaDialogue.esm

27 1b MiasLair.esp

28 1c Devious Devices - Integration.esm

29 1d Devious Devices - Expansion.esm

30 1e Inn Girls Resources.esm

31 1f daymoyl.esm

32 20 LevelersTower.esm

33 21 PSQ PlayerSuccubusQuest.esm

34 22 CreatureFramework.esm

35 23 Auto Unequip Ammo.esp

36 24 Chesko_WearableLantern.esp

37 25 FISS.esp

38 26 SexLabMatchMaker.esp

39 27 kuerteeActorDetails.esp

40 28 RaceMenu.esp

41 29 RaceMenuPlugin.esp

42 2a UIExtensions.esp

43 2b AddItemMenu.esp

44 2c towConversation.esp

45 2d vAutosaveManager.esp

46 2e SkyUI.esp

47 2f AHZmoreHUD.esp

48 30 Extended UI.esp

49 31 LessIntrusiveHUD.esp

50 32 hmkLockOn.esp

51 33 AMB Glass Variants Lore.esp

52 34 BBP_ArmorPack.esp

53 35 BBP_ArmorPack2.esp

54 36 InigoPerkPointGiver.esp

55 37 TERAArmors_CBBE.esp

56 38 Differently Ebony.esp

57 39 Schlongs of Skyrim.esp

58 3a SOS - VectorPlexus Regular Addon.esp

59 3b dD - Enhanced Blood Main.esp

60 3c dD-Dragonborn-Dawnguard-EBT Patch.esp

61 3d UnreadBooksGlow.esp

62 3e DVA - Dynamic Vampire Appearance.esp

63 3f Vampire Sight.esp

64 40 Werewolves.esp

65 41 ShowRaceMenuAlternative.esp

66 42 Skill Config.esp

67 43 Brows.esp

68 44 Grimoa_83WillowsDreadlocks_Nonreplacing.esp

69 45 SGEyebrows.esp

70 46 SGHairPackAIO.esp

71 47 TheEyesOfBeauty.esp

72 48 The Eyes Of Beauty - Elves Edition.esp

73 49 RaceMenuOverlayCompilation - CBBE.esp

74 4a RelightingSkyrim_Legendary.esp

75 4b ZaForswornStory.esp

76 4c 3DNPC.esp

77 4d SexLabGuild.esp

78 4e Immersive Citizens - AI Overhaul.esp

79 4f My Followers.esp

80 50 Guard Dialogue Overhaul.esp

81 51 MoreNastyCritters.esp

82 52 SexLabNudeCreatures.esp

83 53 KS Hairdo's.esp

84 54 LovelyHairstylesCE.esp

85 55 SexLabNudeCreaturesDG.esp

86 56 SexLabNudeCreaturesDB.esp

87 57 Helgen Reborn.esp

88 58 Undeath.esp

89 59 Immersive Wenches.esp

90 5a Ebonvale.esp

91 5b Thunderchild - Epic Shout Package.esp

92 5c SexLab_DibellaCult.esp

93 5d Remodeled Armors - Outfits.esp

94 5e Cum Shot Brothel.esp

95 5f HentaiCreatures.esp

96 60 animal_mansion.esp

97 61 SexLabSkoomaWhore.esp

98 62 BellyachesNewDragonSpecies.esp

99 63 AliciaPainSlut.esp

100 64 HDT Stuff.esp

101 65 Kofman Armors.esp

102 66 Vampire and Werewolf Potion.esp

103 67 BecomeKingofSkyrim.esp

104 68 Automatic_Crossbow_Collection_EN.esp

105 69 Marriable Serana.esp

106 6a ZaFromTheDeepsV2.esp

107 6b SexLab-AmorousAdventures.esp

108 6c Deviously Cursed Loot.esp

109 6d TimingIsEverything.esp

110 6e CollegeDaysWinterhold.esp

111 6f SexLab-StoriesDevious.esp

112 70 AngrimApprentice.esp

113 71 SexLabWorkingGirl.esp

114 72 aMidianborn_Skyforge_Weapons.esp

115 73 Better Vampires.esp

116 74 Phenderix's Magic Evolved.esp

117 75 specializedfollowers.esp

118 76 daymoyl_DawnguardAddon.esp

119 77 SpousesEnhanced.esp

120 78 Draconic Bloodline.esp

121 79 Devious Deviants.esp

122 7a Extended Encounters.esp

123 7b Follower Map Markers - Merged.esp

124 7c Vampirelordroyal.esp

125 7d WerewolfMastery.esp

126 7e isilNarsil.esp

127 7f IslandFastTravel.esp

128 80 Apocalypse - The Spell Package.esp

129 81 SVS LadyTemplar.esp

130 82 FNISspells.esp

131 83 ForgottenMagic_Redone.esp

132 84 LustmordVampireArmor.esp

133 85 SummonSuccubus.esp

134 86 XCES.esp

135 87 EFFDialogue.esp

136 88 Blaze Of Eventide.esp

137 89 MixedUnitTactics.esp

138 8a dD - Realistic Ragdoll Force - Realistic.esp

139 8b MatureSkinComplexions.esp

140 8c FemaleOrcFix.esp

141 8d Facelight.esp

142 8e BVandRB_Formlist.esp

143 8f VioLens.esp

144 90 Deadly Wenches.esp

145 91 dc-untamed-000.esp

146 92 chfshPlayerVoicesets.esp

147 93 CrimeDecay.esp

148 94 FreckleMania.esp

149 95 HDTTailsEquipable.esp

150 96 IndividualizedShoutCooldowns.esp

151 97 MarryMe.esp

152 98 RaceMenuMorphsCBBE.esp

153 99 SexLabGenderChange.esp

154 9a TrueEyes.esp

155 9b EFEEBR.esp

156 9c NonSexLabAnimationPack.esp

157 9d RaceMenu - Norse Tattoos.esp

158 9e RutahTattooPack.esp

159 9f AutoHarvest2.esp

160 a0 RaceMenuMorphsUUNP.esp

161 a1 TrueBrows.esp

162 a2 12FemaleBrows.esp

163 a3 JaxonzDiagnostics.esp

164 a4 SkyComplete.esp

165 a5 PSQ Aroused.esp

166 a6 PSQ ERF Animated Wings.esp

167 a7 SlaveTats.esp

168 a8 falskaarbabes.esp

169 a9 3dnpcbabes.esp

170 aa wyrmstoothbabes.esp

171 ab RSChildren_CompleteUSKP.esp

172 ac All NPC Overhaul.esp

173 ad Apropos.esp

174 ae Deadly Wenches - CBBE Tera Armors Random-.esp

175 af NecroAnims.esp

176 b0 SexLabFuck'EmUp.esp

177 b1 TheCoenaculiCBBE.esp

178 b2 XPMSE.esp

179 b3 kuerteeUsefulPotions.esp

180 b4 SpousesEnhanced_Serana.esp

181 b5 JaxonzUtilities.esp

182 b6 SpellTomeResurrectDead.esp

183 b7 SexLab Slut Shout.esp

184 b8 CS_TagNTrack.esp

185 b9 WSCO - OriFemaleCBBE.esp

186 ba Alternate Start - Live Another Life.esp

187 bb SexLab_Solutions.esp

188 bc TES5Merged.esp

189 bd Bashed Patch, 0.esp

 

 

i had the problem with this load order but it worked after i disabled captureddreams for some reason

i know it's not a captured dreams issue it works for everyone else and maybe it's something else on my list

i use sexlab 1.59c + PapyrusUtilv30 RC1 i have every mod updated nothing is outdated

that was the bugged load order papyrus.log i removed some mods didn't change anything and the game changed

and really worked like it suppose to after removing captureddreams i asked the author before he said the cd_x on papyrus log is harmless

that's why it's confusing disabling it really did fix my all save problems + ctd's

old papyrus.log

 

[07/24/2015 - 10:51:23AM] error: Unable to bind script _Arissa_TIF__0202A34E to topic info 2402A34E on quest _Arissa_DialogueMain (24001D97) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script SlaveBardPlayScriptTest01 to (13021A6F) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script MMMMRMAlert001 to (7701297C) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script QF__010191D9 to 00_andragon_DialogueFollower (260191D9) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzConsolePlugIn to JaxonzRenamerQuest (D2032C31) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzRenamerObject to JaxonzRenamerQuest (D2032C31) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script QF__01008F44 to njadampmarker (C6008F44) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script DsR__TIF__02025960 to topic info BC025960 on quest CDW (BC000D63) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script _Arissa_TIF__02027C33 to topic info 24027C33 on quest _Arissa_DialogueMain (24001D97) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script MMPostWeddingSceneTearDown to (770061A7) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script DsR__TIF__020253E5 to topic info BC0253E5 on quest CDW (BC000D63) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script SKI_PlayerLoadGameAlias to AAACrimeDecay (9A000D62) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzEnhGrabObject to JaxonzEnhGrabUpdateQuest (D2032BB8) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzConsolePlugIn to JaxonzEnhGrabUpdateQuest (D2032BB8) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script DA16VaerminaStatue to (00024E04) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script _Arissa_TIF__02027C2F to topic info 24027C2F on quest _Arissa_DialogueMain (24001D97) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script SF_MMMultipleMarriageAoLRise_01038602 to (77038602) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzSmartLooterMCM to JaxonzSmartLooterUpdateQuest (D2032BF1) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzSmartLooterUpdateQuestScript to JaxonzSmartLooterUpdateQuest (D2032BF1) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzConsolePlugIn to JaxonzNameGen (D2032C42) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script PF__02008ECC to (5A008ECC) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzDateTimeUtil to JaxonzNamedSaveQuest (D2032C40) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzStringUtil to JaxonzNamedSaveQuest (D2032C40) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzEnhGrabObject to JaxonzEnhGrabUpdateQuest (D2032BB8) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzConsolePlugIn to JaxonzEnhGrabUpdateQuest (D2032BB8) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzSmartLooterMCM to JaxonzSmartLooterUpdateQuest (D2032BF1) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzSmartLooterUpdateQuestScript to JaxonzSmartLooterUpdateQuest (D2032BF1) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzConsolePlugIn to JaxonzRenamerQuest (D2032C31) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzRenamerObject to JaxonzRenamerQuest (D2032C31) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzDateTimeUtil to JaxonzNamedSaveQuest (D2032C40) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzStringUtil to JaxonzNamedSaveQuest (D2032C40) because their base types do not match

[07/24/2015 - 10:51:23AM] error: Unable to bind script JaxonzConsolePlugIn to JaxonzNameGen (D2032C42) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script SKI_PlayerLoadGameAlias to AAACrimeDecay (9A000D62) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script QF__010191D9 to 00_andragon_DialogueFollower (260191D9) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script QF__01008F44 to njadampmarker (C6008F44) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refCritter1001 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script AASoldierDies to alias AAKingSpouse on quest AAKingSkyrim (88006E8B) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterPlayerAlias to alias refPlayer on quest JaxonzSmartLooterUpdateQuest (D2032BF1) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script AFS2BriarDranaCompanionDeathScript to alias AFSCompanion5 on quest AFS2BriarDrana (54066FDA) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refCritter1000 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterUnopened to alias refContainerUnopened000 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script sdsMCMSkillBoost to alias PlayerAlias on quest sdsSkillConfig (470012C4) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script TestSummonSpellAddScript to alias PlayerAlias on quest KvmSummonBishopquest (5104122B) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterLooseItem to alias refLooseItem1000 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refProjectile000 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script MMRMAPlayerScript to alias Player on quest MMRelationshipMarriageAlertPlayer (77046DEC) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script KRY_QD_PlayerAliasScript to alias PlayerAlias on quest KRY_QD_MCMStartupQuest (40005E3B) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterUnopened to alias refCorpse on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterLooseItem to alias refLooseItem1002 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterUnopened to alias refCorpse000 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script zmFollowerAliasScript to alias zmFollowerAlias on quest zzMiraiDialogue (5A0160A3) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refFlora1 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterLooseItem to alias refLooseItem1 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refFlora1001 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refCritter1 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterLooseItem to alias refLooseItem1001 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script _FollowerWhoreAliasScr to alias _FollowerWhore on quest _SLWG_WhoreFollower (8D045DEB) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refProjectile on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterMiningAlias to alias refMine on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterUnopened to alias refContainerUnopened on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refFlora1000 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refProjectile001 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:24AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE087C96) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property scene3end on script giantdeath2enablescene3end attached to (5B00D880) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property madquest on script giantdeath2enablescene3end attached to (5B00D880) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property enablefem on script giantdeath2enablescene3end attached to (5B00D880) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property g1 on script giantdeath2enablescene3end attached to (5B00D880) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property BardSingerNoAutostart on script LSnoBardActions attached to alias LSmikael on quest LSvisitorsM (980059CC) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE087C95) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] error: Property TP on script Succubusdeath attached to (5B01B805) cannot be bound because (5B01BEE6) is not the right type

[07/24/2015 - 10:51:24AM] error: Property AFS1FollowKatalia on script afs1findkalydiscript attached to (5400A497) cannot be bound because (540035DC) is not the right type

[07/24/2015 - 10:51:24AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE087C98) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property Stats on script SLFTU_main attached to SLFTU (A30012C4) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE087C99) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property doll on script bh_adoptionchanger attached to (B9003B94) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1401D24A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1401D24A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property MrissiCanBeAgressive on script MrissiEVP attached to (5A00F056) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property TP on script activateaudio attached to (5B01B7C5) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property b1 on script activateaudio attached to (5B01B7C5) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property PetCollarZap on script PetCollarScript attached to (DD009984) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property slncSkinRiekling02Melee on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2SkinRiekling01 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property slncSkinRieklingChief on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property slncSkinRiekling01 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2SkinRiekling02Melee on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2WerebearBeastRace on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property slncSkinThriskRiekling03 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2SkinThriskRiekling02 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2SkinRiekling01Melee on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property slncSkinRiekling01Melee on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2SkinBenthicLurker on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2SkinAshSpawn on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2SkinRiekling03Melee on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2AshSpawnRace on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2RieklingRace on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property slncSkinThriskRiekling01 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2ThirskRieklingRace on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property slncAshmanMaleNaked on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2SkinRieklingChief on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property slncSkinThriskRiekling02 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property slncLurkerMaleNaked on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2SkinNakedWereBearBeast on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property slncSkinRiekling03Melee on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2SkinThriskRiekling03 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2SkinThriskRiekling01 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property slncWerebearMaleNaked on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DLC2LurkerRace on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1401BC41) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1401BC41) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property BookQuest on script zmErstarPillarsScript attached to (5A068E98) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1401BC44) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1401BC44) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property placed on script bh_maskplacer attached to (2603FE5F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property AFS4KoldunWay on script afs4loregroveinttriggerscript attached to (54046120) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] error: Property RelationshipMarriageWedding on script mmrelationshipmarriagefinscript attached to RelationshipMarriageBreakUp (0007431B) cannot be bound because RelationshipMarriageWedding (0007404E) is not the right type

[07/24/2015 - 10:51:24AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE03BE7F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property HackAndSlash60 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property WindWalker on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property AugmentedFrost on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property MagicResistance30 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property MagicResistance50 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property Bladesman60 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property Bladesman90 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property HackAndSlash90 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property Necromancy on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property MageArmor30 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DarkSouls on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property SavageStrike on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property MageArmor50 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] error: Property Mirai on script zMiraiMCM attached to zMiraiMCM (5A01FE10) cannot be bound because (0301A285) is not the right type

[07/24/2015 - 10:51:24AM] warning: Property bookDwemerCatalog on script JaxonzDSQuest attached to JaxonzDSQuest (D2032C2C) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property Alias_Lob on script QF__0200DB11 attached to ugormapmarker (C600DB11) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DismissedFollowerFaction on script zmElderGleamTriggerScript attached to (5A0E03B8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property zmTwilightDateS1 on script zmElderGleamTriggerScript attached to (5A0E03B8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property zmElderGleamDateS1 on script zmElderGleamTriggerScript attached to (5A0E03B8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property pDialogueFollower on script zmElderGleamTriggerScript attached to (5A0E03B8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property zMaraDateS1 on script zmElderGleamTriggerScript attached to (5A0E03B8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] error: Property b2 on script Centuriandeath attached to (5B01A469) cannot be bound because (5B01A493) is not the right type

[07/24/2015 - 10:51:24AM] error: Property b1 on script Centuriandeath attached to (5B01A469) cannot be bound because (5B01A491) is not the right type

[07/24/2015 - 10:51:24AM] warning: Property MrissiCanBeAgressive on script MrissiEVP attached to (5A011B9B) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSguest3inLS on script LSfirstEntryMarker attached to (14031669) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSguest2inLS on script LSfirstEntryMarker attached to (14031669) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSguest1inLS on script LSfirstEntryMarker attached to (14031669) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSguestCount on script LSfirstEntryMarker attached to (14031669) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] error: Property PotionRackIngredientsList on script PotionRackContainerScript attached to (610402C9) cannot be bound because (61000DC4) is not the right type

[07/24/2015 - 10:51:24AM] error: Property AFS5OldGods3Initiation on script afs5oldgods3ruinstriggerscript attached to (5405434C) cannot be bound because (54053DCC) is not the right type

[07/24/2015 - 10:51:24AM] warning: Property NecroLichRitualQuest on script NecroBlackBookScript attached to (5F22523E) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property placed on script bh_maskplacer attached to (2603FE60) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] error: Property idlemarker on script QF_3DNPCMainQuest_02196D2D attached to 3DNPCMQ1 (55196D2D) cannot be bound because (00064110) is not the right type

[07/24/2015 - 10:51:24AM] warning: Property placed on script bh_maskplacer attached to (2603FE61) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property Config on script zbfbondageshell attached to zbf (1E0137E6) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property startup1 on script mapmarkerbeaconscript attached to (C600DF1E) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] error: Property zmFollowerAlias on script zzMiraiDialogueScript attached to zmRenaiDialogue (5A0C2760) cannot be bound because (0) on (5A0C2760) is not the right type

[07/24/2015 - 10:51:24AM] warning: Property BlackFrame on script PF_zmZan1sMiraiPassGate_0205DC77 attached to (5A05DC77) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property FallIdle on script PF_zmZan1sMiraiPassGate_0205DC77 attached to (5A05DC77) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property FXMeleeDraugr on script PF_zmZan1sMiraiPassGate_0205DC77 attached to (5A05DC77) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property Stabbed on script PF_zmZan1sMiraiPassGate_0205DC77 attached to (5A05DC77) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property myActor on script WilliamTellArrow3dnpc attached to (552E1E29) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property dunArcherQST on script WilliamTellArrow3dnpc attached to (552E1E29) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property flArrows on script WilliamTellArrow3dnpc attached to (552E1E29) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] error: Property BYOHRelationshipAdoptionFaction on script QF_DialogueAmsien_021C99F9 attached to DialogueAmsien (551C99F9) cannot be bound because (550042B0) is not the right type

[07/24/2015 - 10:51:24AM] warning: Property delivery on script CDxPD_Delivery attached to alias delivery on quest CDxPackageDelivery (73117012) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1400B454) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1400B454) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] error: Property myActor on script dunPinewatchMakeHostileScript attached to (54067646) cannot be bound because (5406764E) is not the right type

[07/24/2015 - 10:51:24AM] warning: Property Alias_MarriageCustomHome on script QF_RelationshipMarriageFIN_00021382 attached to RelationshipMarriageFIN (00021382) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DismissedFollowerFaction on script zmElderGleamTriggerScript attached to (5A0D0528) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property zmElderGleamDateS1 on script zmElderGleamTriggerScript attached to (5A0D0528) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property pDialogueFollower on script zmElderGleamTriggerScript attached to (5A0D0528) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property zmTwilightDateS1 on script zmElderGleamTriggerScript attached to (5A0D0528) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] error: Property HFWindstad on script MSeranaHomeMarkerScript attached to MSeranaMainDialogue (91005739) cannot be bound because (9101205C) is not the right type

[07/24/2015 - 10:51:24AM] error: Property HFLakeview on script MSeranaHomeMarkerScript attached to MSeranaMainDialogue (91005739) cannot be bound because (9100309B) is not the right type

[07/24/2015 - 10:51:24AM] error: Property HFHeljarchen on script MSeranaHomeMarkerScript attached to MSeranaMainDialogue (91005739) cannot be bound because (91016E05) is not the right type

[07/24/2015 - 10:51:24AM] warning: Property ArmorNudeHelmet61 on script SLV_StartQuest attached to SLV_StartQuest01 (D9008F09) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] error: Property Didsleep on script CDxEQ02Sleep attached to (730F52CC) cannot be bound because (000FB981) is not the right type

[07/24/2015 - 10:51:24AM] warning: Property LSXMarkerLanding1 on script LSPF_PF_LSadrianneEatsAgain_020053F4 attached to (980053F4) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSstatsAlias on script LSperksStealth attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSstatsAlias on script LSperksMagic attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSstatsAlias on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property WindWalker on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property AgileDefender80 on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property CustomFit on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property Unhindered on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property AgileDefender20 on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DeftMovement on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property MatchingSet on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property AgileDefender00 on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property AgileDefender60 on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property AgileDefender40 on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1405200D) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1405200D) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property Ethrane on script sf_afs2newshaman2ethrane_03025b81 attached to (54025B81) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property SLSW_Twig on script slsw_mcmconfig attached to SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property SLSW_Lilly on script slsw_mcmconfig attached to SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property SLSW_DrugBrothel on script slsw_mcmconfig attached to SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property SLSW_Brothel on script slsw_mcmconfig attached to SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property DismissedFollowerFaction on script zmElderGleamTriggerScript attached to (5A0DA250) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property zmTwilightDateS1 on script zmElderGleamTriggerScript attached to (5A0DA250) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property zmElderGleamDateS1 on script zmElderGleamTriggerScript attached to (5A0DA250) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property pDialogueFollower on script zmElderGleamTriggerScript attached to (5A0DA250) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property zMaraDateS1 on script zmElderGleamTriggerScript attached to (5A0DA250) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property LSXMarkerExit2 on script LSPF_PF_LSadrianneVisitsAgain_020053F5 attached to (980053F5) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (07016E02) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] error: Property RelationshipMarriageFIN on script MMMultipleMarriageDivorceScript attached to MMMultipleMarriage (77024200) cannot be bound because RelationshipMarriageFIN (00021382) is not the right type

[07/24/2015 - 10:51:24AM] warning: Property bModActive on script jaxonzenhgrab attached to JaxonzEnhGrabUpdateQuest (D2032BB8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:24AM] error: Property _VLR_EclipseEffect_Dummy on script dlc1playervampirechangescript attached to DLC1PlayerVampireQuest (030071D0) cannot be bound because (CC03316C) is not the right type

[07/24/2015 - 10:51:24AM] error: Property aa_andragon_FireLightRef on script bh_pullbarincinerator attached to (26036817) cannot be bound because (05036795) is not the right type

[07/24/2015 - 10:51:25AM] error: Property AFS5OldGods3Initiation on script afs5oldgods3arrivaltriggerscript attached to (540548E3) cannot be bound because (54053DCC) is not the right type

[07/24/2015 - 10:51:25AM] error: Property SBInnDoor on script Asteriascriptclosedoor attached to (551BB0F5) cannot be bound because (0009E223) is not the right type

[07/24/2015 - 10:51:25AM] error: Property PotionRackIngredientsList on script PotionRackContainerScript attached to (61039A5D) cannot be bound because (61000DC4) is not the right type

[07/24/2015 - 10:51:25AM] error: Property PotionRackFoodList on script PotionRackContainerScript attached to (61039A5D) cannot be bound because (61000DC2) is not the right type

[07/24/2015 - 10:51:25AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1405200C) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1405200C) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property zbfc on script csbPlayerManagement attached to alias PlayerRefManager on quest csbs (7502AD12) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] error: Property collarPostureLeatherRendered on script zadlibs attached to zadQuest (2100F624) cannot be bound because (21047003) is not the right type

[07/24/2015 - 10:51:25AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B93) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B92) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property MiaDungeonSlaveMarker1 on script PF_MiaDungeonSlave3Chained_06054A3F attached to (57054A3F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property madquest on script deadjarlfail attached to (5B00D217) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property zmZ1Scene on script zmZan1STriggerScript attached to (5A057AE1) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property zmZan1S on script zmZan1STriggerScript attached to (5A057AE1) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property zm1sZanPlayerPos on script zmZan1STriggerScript attached to (5A057AE1) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B91) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property bedroompic5 on script bh_tapestry_cellchecker attached to (B9003462) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property placed on script bh_maskplacer attached to (2603FE63) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property placed on script bh_maskplacer attached to (2603FE62) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE087C97) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property placed on script bh_maskplacer attached to (2603FE64) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property placed on script bh_maskplacer attached to (2603FE65) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] error: Property PotionRackIngredientsList on script PotionRackContainerScript attached to (610402B5) cannot be bound because (61000DC4) is not the right type

[07/24/2015 - 10:51:25AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (14057269) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (14057269) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B90) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property ExitIdle on script SF_pchsWolfclubScene016Custo_0500B6C9 attached to (7A00B6C9) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property InventorUpgradeDefault on script TV_MCMScript attached to KRY_TradingMCMStartupQuest (7E001831) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property gate on script CdxEQ02Gates attached to (730EF613) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property DLC1SkinTrollFrostArmored on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property slncDLC1TrollArmoredErect on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property DLC1TrollRaceArmored on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property slncDLC1SabrecatHard on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property DLC1SkinTrollArmored on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property slncDLC1TrollFrostArmoredErect on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property DLC1TrollFrostRaceArmored on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property DLC1SabreCatGlowRace on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property slncSkinTrollArmoredNormal on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B8A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property AFS4KoldunInitiation on script afs4kolduninitiationsannideathscript attached to (5404669C) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B8B) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property CWSiegeAttackObj on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property WhoreSO on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property WorkScript on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property WhoreRI on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property WhoreWH on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property CWSiegeDefendObj on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property WhoreWR on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property Work2 on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property Work3 on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property Work1 on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property WhoreMK on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property TutorialQuest on script KVMbanditscript attached to (5100C083) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] error: Property zmCampDragon on script PF_zmCampDragonPackage_020388BF attached to (5A0388BF) cannot be bound because (030388BE) is not the right type

[07/24/2015 - 10:51:25AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1401BC40) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1401BC40) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property zmShinRorikRef on script PF_zMiraiIntroShinLeave_0202EC2F attached to (5A02EC2F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B8D) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B8C) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B8E) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:25AM] error: Property PotionRackClutterList on script PotionRackContainerScript attached to (61039A5E) cannot be bound because (61000DC1) is not the right type

[07/24/2015 - 10:51:25AM] error: Property PotionRackIngredientsList on script PotionRackContainerScript attached to (61039A5E) cannot be bound because (61000DC4) is not the right type

[07/24/2015 - 10:51:25AM] error: Property PotionRackFoodList on script PotionRackContainerScript attached to (61039A5E) cannot be bound because (61000DC2) is not the right type

[07/24/2015 - 10:51:25AM] error: Property HirelingRehireScript on script dialoguefollowerscript attached to 00_andragon_DialogueFollower (260191D9) cannot be bound because 00_andragon_DialogueFollower (260191D9) is not the right type

[07/24/2015 - 10:51:25AM] warning: Property InventorUpgradeDefault on script KRY_TVPlayerAliasScript attached to alias PlayerAlias on quest KRY_TradingMCMStartupQuest (7E001831) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:39AM] Reverting game...

[07/24/2015 - 10:51:40AM] error: Unable to bind script _Arissa_TIF__0202A34E to topic info 2402A34E on quest _Arissa_DialogueMain (24001D97) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script SlaveBardPlayScriptTest01 to (13021A6F) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script MMMMRMAlert001 to (7701297C) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script QF__010191D9 to 00_andragon_DialogueFollower (260191D9) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzConsolePlugIn to JaxonzRenamerQuest (D2032C31) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzRenamerObject to JaxonzRenamerQuest (D2032C31) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script QF__01008F44 to njadampmarker (C6008F44) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script DsR__TIF__02025960 to topic info BC025960 on quest CDW (BC000D63) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script _Arissa_TIF__02027C33 to topic info 24027C33 on quest _Arissa_DialogueMain (24001D97) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script MMPostWeddingSceneTearDown to (770061A7) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script DsR__TIF__020253E5 to topic info BC0253E5 on quest CDW (BC000D63) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script SKI_PlayerLoadGameAlias to AAACrimeDecay (9A000D62) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzEnhGrabObject to JaxonzEnhGrabUpdateQuest (D2032BB8) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzConsolePlugIn to JaxonzEnhGrabUpdateQuest (D2032BB8) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script DA16VaerminaStatue to (00024E04) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script _Arissa_TIF__02027C2F to topic info 24027C2F on quest _Arissa_DialogueMain (24001D97) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script SF_MMMultipleMarriageAoLRise_01038602 to (77038602) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterMCM to JaxonzSmartLooterUpdateQuest (D2032BF1) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterUpdateQuestScript to JaxonzSmartLooterUpdateQuest (D2032BF1) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzConsolePlugIn to JaxonzNameGen (D2032C42) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script PF__02008ECC to (5A008ECC) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzDateTimeUtil to JaxonzNamedSaveQuest (D2032C40) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzStringUtil to JaxonzNamedSaveQuest (D2032C40) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refCritter1001 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script AASoldierDies to alias AAKingSpouse on quest AAKingSkyrim (88006E8B) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterPlayerAlias to alias refPlayer on quest JaxonzSmartLooterUpdateQuest (D2032BF1) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script AFS2BriarDranaCompanionDeathScript to alias AFSCompanion5 on quest AFS2BriarDrana (54066FDA) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refCritter1000 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterUnopened to alias refContainerUnopened000 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script sdsMCMSkillBoost to alias PlayerAlias on quest sdsSkillConfig (470012C4) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script TestSummonSpellAddScript to alias PlayerAlias on quest KvmSummonBishopquest (5104122B) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterLooseItem to alias refLooseItem1000 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refProjectile000 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script MMRMAPlayerScript to alias Player on quest MMRelationshipMarriageAlertPlayer (77046DEC) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script KRY_QD_PlayerAliasScript to alias PlayerAlias on quest KRY_QD_MCMStartupQuest (40005E3B) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterUnopened to alias refCorpse on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterLooseItem to alias refLooseItem1002 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterUnopened to alias refCorpse000 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script zmFollowerAliasScript to alias zmFollowerAlias on quest zzMiraiDialogue (5A0160A3) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refFlora1 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterLooseItem to alias refLooseItem1 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refFlora1001 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refCritter1 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterLooseItem to alias refLooseItem1001 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script _FollowerWhoreAliasScr to alias _FollowerWhore on quest _SLWG_WhoreFollower (8D045DEB) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refProjectile on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterMiningAlias to alias refMine on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterUnopened to alias refContainerUnopened on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refFlora1000 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] error: Unable to bind script JaxonzSmartLooterHarvest to alias refProjectile001 on quest JaxonzSmartLooterFinderQuest (D2032C0E) because their base types do not match

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE087C96) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property scene3end on script giantdeath2enablescene3end attached to (5B00D880) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property madquest on script giantdeath2enablescene3end attached to (5B00D880) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property enablefem on script giantdeath2enablescene3end attached to (5B00D880) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property g1 on script giantdeath2enablescene3end attached to (5B00D880) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property BardSingerNoAutostart on script LSnoBardActions attached to alias LSmikael on quest LSvisitorsM (980059CC) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE087C95) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property TP on script Succubusdeath attached to (5B01B805) cannot be bound because (5B01BEE6) is not the right type

[07/24/2015 - 10:51:40AM] error: Property AFS1FollowKatalia on script afs1findkalydiscript attached to (5400A497) cannot be bound because (540035DC) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE087C98) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE087C99) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property doll on script bh_adoptionchanger attached to (B9003B94) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1401D24A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1401D24A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property MrissiCanBeAgressive on script MrissiEVP attached to (5A00F056) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property TP on script activateaudio attached to (5B01B7C5) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property b1 on script activateaudio attached to (5B01B7C5) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property PetCollarZap on script PetCollarScript attached to (DD009984) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncSkinRiekling02Melee on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2SkinRiekling01 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncSkinRieklingChief on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncSkinRiekling01 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2SkinRiekling02Melee on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2WerebearBeastRace on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncSkinThriskRiekling03 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2SkinThriskRiekling02 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2SkinRiekling01Melee on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncSkinRiekling01Melee on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2SkinBenthicLurker on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2SkinAshSpawn on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2SkinRiekling03Melee on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2AshSpawnRace on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2RieklingRace on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncSkinThriskRiekling01 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2ThirskRieklingRace on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncAshmanMaleNaked on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2SkinRieklingChief on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncSkinThriskRiekling02 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncLurkerMaleNaked on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2SkinNakedWereBearBeast on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncSkinRiekling03Melee on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2SkinThriskRiekling03 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2SkinThriskRiekling01 on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncWerebearMaleNaked on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC2LurkerRace on script slncaddondbscript attached to slncAddonDB (6C005911) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1401BC41) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1401BC41) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property BookQuest on script zmErstarPillarsScript attached to (5A068E98) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1401BC44) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1401BC44) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property placed on script bh_maskplacer attached to (2603FE5F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property AFS4KoldunWay on script afs4loregroveinttriggerscript attached to (54046120) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property RelationshipMarriageWedding on script mmrelationshipmarriagefinscript attached to RelationshipMarriageBreakUp (0007431B) cannot be bound because RelationshipMarriageWedding (0007404E) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE03BE7F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property HackAndSlash60 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property WindWalker on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property AugmentedFrost on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property MagicResistance30 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property MagicResistance50 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property Bladesman60 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property Bladesman90 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property HackAndSlash90 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property Necromancy on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property MageArmor30 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DarkSouls on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property SavageStrike on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property MageArmor50 on script DLC1SeranaLevelingScript attached to (03003BA8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property Mirai on script zMiraiMCM attached to zMiraiMCM (5A01FE10) cannot be bound because (0301A285) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property bookDwemerCatalog on script JaxonzDSQuest attached to JaxonzDSQuest (D2032C2C) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property Alias_Lob on script QF__0200DB11 attached to ugormapmarker (C600DB11) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DismissedFollowerFaction on script zmElderGleamTriggerScript attached to (5A0E03B8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property zmTwilightDateS1 on script zmElderGleamTriggerScript attached to (5A0E03B8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property zmElderGleamDateS1 on script zmElderGleamTriggerScript attached to (5A0E03B8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property pDialogueFollower on script zmElderGleamTriggerScript attached to (5A0E03B8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property zMaraDateS1 on script zmElderGleamTriggerScript attached to (5A0E03B8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property b2 on script Centuriandeath attached to (5B01A469) cannot be bound because (5B01A493) is not the right type

[07/24/2015 - 10:51:40AM] error: Property b1 on script Centuriandeath attached to (5B01A469) cannot be bound because (5B01A491) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property MrissiCanBeAgressive on script MrissiEVP attached to (5A011B9B) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSguest3inLS on script LSfirstEntryMarker attached to (14031669) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSguest2inLS on script LSfirstEntryMarker attached to (14031669) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSguest1inLS on script LSfirstEntryMarker attached to (14031669) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSguestCount on script LSfirstEntryMarker attached to (14031669) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property PotionRackIngredientsList on script PotionRackContainerScript attached to (610402C9) cannot be bound because (61000DC4) is not the right type

[07/24/2015 - 10:51:40AM] error: Property AFS5OldGods3Initiation on script afs5oldgods3ruinstriggerscript attached to (5405434C) cannot be bound because (54053DCC) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property NecroLichRitualQuest on script NecroBlackBookScript attached to (5F22523E) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property placed on script bh_maskplacer attached to (2603FE60) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property idlemarker on script QF_3DNPCMainQuest_02196D2D attached to 3DNPCMQ1 (55196D2D) cannot be bound because (00064110) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property placed on script bh_maskplacer attached to (2603FE61) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property Config on script zbfbondageshell attached to zbf (1E0137E6) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property startup1 on script mapmarkerbeaconscript attached to (C600DF1E) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property zmFollowerAlias on script zzMiraiDialogueScript attached to zmRenaiDialogue (5A0C2760) cannot be bound because (0) on (5A0C2760) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property BlackFrame on script PF_zmZan1sMiraiPassGate_0205DC77 attached to (5A05DC77) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property FallIdle on script PF_zmZan1sMiraiPassGate_0205DC77 attached to (5A05DC77) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property FXMeleeDraugr on script PF_zmZan1sMiraiPassGate_0205DC77 attached to (5A05DC77) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property Stabbed on script PF_zmZan1sMiraiPassGate_0205DC77 attached to (5A05DC77) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property myActor on script WilliamTellArrow3dnpc attached to (552E1E29) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property dunArcherQST on script WilliamTellArrow3dnpc attached to (552E1E29) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property flArrows on script WilliamTellArrow3dnpc attached to (552E1E29) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property BYOHRelationshipAdoptionFaction on script QF_DialogueAmsien_021C99F9 attached to DialogueAmsien (551C99F9) cannot be bound because (550042B0) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property delivery on script CDxPD_Delivery attached to alias delivery on quest CDxPackageDelivery (73117012) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1400B454) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1400B454) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property myActor on script dunPinewatchMakeHostileScript attached to (54067646) cannot be bound because (5406764E) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property Alias_MarriageCustomHome on script QF_RelationshipMarriageFIN_00021382 attached to RelationshipMarriageFIN (00021382) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DismissedFollowerFaction on script zmElderGleamTriggerScript attached to (5A0D0528) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property zmElderGleamDateS1 on script zmElderGleamTriggerScript attached to (5A0D0528) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property pDialogueFollower on script zmElderGleamTriggerScript attached to (5A0D0528) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property zmTwilightDateS1 on script zmElderGleamTriggerScript attached to (5A0D0528) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property HFWindstad on script MSeranaHomeMarkerScript attached to MSeranaMainDialogue (91005739) cannot be bound because (9101205C) is not the right type

[07/24/2015 - 10:51:40AM] error: Property HFLakeview on script MSeranaHomeMarkerScript attached to MSeranaMainDialogue (91005739) cannot be bound because (9100309B) is not the right type

[07/24/2015 - 10:51:40AM] error: Property HFHeljarchen on script MSeranaHomeMarkerScript attached to MSeranaMainDialogue (91005739) cannot be bound because (91016E05) is not the right type

[07/24/2015 - 10:51:40AM] error: Property Didsleep on script CDxEQ02Sleep attached to (730F52CC) cannot be bound because (000FB981) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property LSXMarkerLanding1 on script LSPF_PF_LSadrianneEatsAgain_020053F4 attached to (980053F4) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSstatsAlias on script LSperksStealth attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSstatsAlias on script LSperksMagic attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSstatsAlias on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property WindWalker on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property AgileDefender80 on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property CustomFit on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property Unhindered on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property AgileDefender20 on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DeftMovement on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property MatchingSet on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property AgileDefender00 on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property AgileDefender60 on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property AgileDefender40 on script LSperksCombat attached to LSstatsDialogue (1402AA8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1405200C) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1405200C) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1405200D) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1405200D) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property Ethrane on script sf_afs2newshaman2ethrane_03025b81 attached to (54025B81) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property SLSW_Twig on script slsw_mcmconfig attached to SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property SLSW_Lilly on script slsw_mcmconfig attached to SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property SLSW_DrugBrothel on script slsw_mcmconfig attached to SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property SLSW_Brothel on script slsw_mcmconfig attached to SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DismissedFollowerFaction on script zmElderGleamTriggerScript attached to (5A0DA250) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property zmTwilightDateS1 on script zmElderGleamTriggerScript attached to (5A0DA250) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property zmElderGleamDateS1 on script zmElderGleamTriggerScript attached to (5A0DA250) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property pDialogueFollower on script zmElderGleamTriggerScript attached to (5A0DA250) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property zMaraDateS1 on script zmElderGleamTriggerScript attached to (5A0DA250) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (07016E02) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property RelationshipMarriageFIN on script MMMultipleMarriageDivorceScript attached to MMMultipleMarriage (77024200) cannot be bound because RelationshipMarriageFIN (00021382) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property bModActive on script jaxonzenhgrab attached to JaxonzEnhGrabUpdateQuest (D2032BB8) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property aa_andragon_FireLightRef on script bh_pullbarincinerator attached to (26036817) cannot be bound because (05036795) is not the right type

[07/24/2015 - 10:51:40AM] error: Property _VLR_EclipseEffect_Dummy on script dlc1playervampirechangescript attached to DLC1PlayerVampireQuest (030071D0) cannot be bound because (CC03316C) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property TutorialQuest on script KVMbanditscript attached to (5100C083) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property AFS5OldGods3Initiation on script afs5oldgods3arrivaltriggerscript attached to (540548E3) cannot be bound because (54053DCC) is not the right type

[07/24/2015 - 10:51:40AM] error: Property SBInnDoor on script Asteriascriptclosedoor attached to (551BB0F5) cannot be bound because (0009E223) is not the right type

[07/24/2015 - 10:51:40AM] error: Property PotionRackIngredientsList on script PotionRackContainerScript attached to (61039A5D) cannot be bound because (61000DC4) is not the right type

[07/24/2015 - 10:51:40AM] error: Property PotionRackFoodList on script PotionRackContainerScript attached to (61039A5D) cannot be bound because (61000DC2) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property zbfc on script csbPlayerManagement attached to alias PlayerRefManager on quest csbs (7502AD12) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B93) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property collarPostureLeatherRendered on script zadlibs attached to zadQuest (2100F624) cannot be bound because (21047003) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B92) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSXMarkerExit2 on script LSPF_PF_LSadrianneVisitsAgain_020053F5 attached to (980053F5) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property zmZ1Scene on script zmZan1STriggerScript attached to (5A057AE1) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property zmZan1S on script zmZan1STriggerScript attached to (5A057AE1) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property zm1sZanPlayerPos on script zmZan1STriggerScript attached to (5A057AE1) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B91) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property bedroompic5 on script bh_tapestry_cellchecker attached to (B9003462) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property Marker4 on script qf__0415e47e attached to AsteriaQuest (5515E47E) cannot be bound because (00064B76) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property placed on script bh_maskplacer attached to (2603FE63) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property placed on script bh_maskplacer attached to (2603FE62) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE087C97) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property placed on script bh_maskplacer attached to (2603FE64) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property placed on script bh_maskplacer attached to (2603FE65) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property PotionRackIngredientsList on script PotionRackContainerScript attached to (610402B5) cannot be bound because (61000DC4) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (1401BC40) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (1401BC40) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSmalesStrip on script LSBathTriggerScript attached to (14057269) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property LSfemalesStrip on script LSBathTriggerScript attached to (14057269) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property ExitIdle on script SF_pchsWolfclubScene016Custo_0500B6C9 attached to (7A00B6C9) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property InventorUpgradeDefault on script TV_MCMScript attached to KRY_TradingMCMStartupQuest (7E001831) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property madquest on script deadjarlfail attached to (5B00D217) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property AFS4KoldunInitiation on script afs4kolduninitiationsannideathscript attached to (5404669C) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property gate on script CdxEQ02Gates attached to (730EF613) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC1SkinTrollFrostArmored on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncDLC1TrollArmoredErect on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC1TrollRaceArmored on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncDLC1SabrecatHard on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC1SkinTrollArmored on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncDLC1TrollFrostArmoredErect on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC1TrollFrostRaceArmored on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property DLC1SabreCatGlowRace on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property slncSkinTrollArmoredNormal on script slncaddondgscript attached to slncAddonDG (6D002F9A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property HirelingRehireScript on script dialoguefollowerscript attached to 00_andragon_DialogueFollower (260191D9) cannot be bound because 00_andragon_DialogueFollower (260191D9) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B90) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B8A) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B8B) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property CWSiegeAttackObj on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property WhoreSO on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property WorkScript on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property WhoreRI on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property WhoreWH on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property CWSiegeDefendObj on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property WhoreWR on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property Work2 on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property Work3 on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property Work1 on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property WhoreMK on script slsw_scum attached to alias PlayerAlias on quest SLSW (7D002863) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property zmCampDragon on script PF_zmCampDragonPackage_020388BF attached to (5A0388BF) cannot be bound because (030388BE) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property zmShinRorikRef on script PF_zMiraiIntroShinLeave_0202EC2F attached to (5A02EC2F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B8D) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B8C) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B8F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property familiarDeath on script PhenderixFamiliarScript attached to (BE082B8E) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] error: Property PotionRackClutterList on script PotionRackContainerScript attached to (61039A5E) cannot be bound because (61000DC1) is not the right type

[07/24/2015 - 10:51:40AM] error: Property PotionRackIngredientsList on script PotionRackContainerScript attached to (61039A5E) cannot be bound because (61000DC4) is not the right type

[07/24/2015 - 10:51:40AM] error: Property PotionRackFoodList on script PotionRackContainerScript attached to (61039A5E) cannot be bound because (61000DC2) is not the right type

[07/24/2015 - 10:51:40AM] warning: Property ArmorNudeHelmet61 on script SLV_StartQuest attached to SLV_StartQuest01 (D9008F09) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property MiaDungeonSlaveMarker1 on script PF_MiaDungeonSlave3Chained_06054A3F attached to (57054A3F) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property Stats on script SLFTU_main attached to SLFTU (A30012C4) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:40AM] warning: Property InventorUpgradeDefault on script KRY_TVPlayerAliasScript attached to alias PlayerAlias on quest KRY_TradingMCMStartupQuest (7E001831) cannot be initialized because the script no longer contains that property

[07/24/2015 - 10:51:41AM] Cannot open store for class "TIF__0102420C", missing file?

[07/24/2015 - 10:51:41AM] error: Unable to bind script TIF__0102420C to topic info 7702420C on because their base types do not match

[07/24/2015 - 10:51:41AM] error: Unable to bind script defaultsetstageonplayeracquire to (FF00154F) because their base types do not match

[07/24/2015 - 10:51:41AM] error: Unable to bind script CDxSummonsLetter04 to (FF001559) because their base types do not match

[07/24/2015 - 10:51:41AM] error: Unable to bind script CDxPD_Delivery to (FF00155B) because their base types do not match

[07/24/2015 - 10:51:48AM] Loading game...

 

EDIT: i made 2 threads about it before which contains all the info i hope this help discovering this dilemma

new papyrus log using my existing load order without captured dreams played one hour without single ctd

saved and reloaded many times save reloading works every time

 

Papyrus.2.log

Posted

My experience was with 1.60 and brand new saves.

Tried playing with these Devious Mods on a fresh new save.

 

Devious Cidhna v1_7

Devious Devices Assets

Devious Devices Expansion

Devious Devices for the Masses II

DeviousDevices - Integration

Deviously Enslaved v9.8

Deviously Helpless 1.15d

 

and would get a "Access Violation" in my hdtSkyrimMemPatch.log after about 15min to a hour of playing.  While playing noticed quite a lot of lag and drops in frame rate.

 

Disabling these and starting a fresh save seemed to fix my crashing.

Might have nothing to do with the Framework, and if angelboy is using 1.59 I'm kind of suspicious of the new XP32MSE Skeleton conflicting instead.

Installed both the XP32 3.0+ Skeletons and the 1.60 RC about the same time when the problems started showing up.

 

Just know that Skyrim is running MASSIVELY better after starting a fresh save with the 1.60 RC candidate, minus any devious devices mods.  Was able to stay at a steady 60fps, where as before it'd drop to 10 fps occasionally around cell changes.

 

Posted

Iam getting CTDs now, when iam using the RC2 Version when i save after an animation. It seems to be the old Automatic Free Camera Problem since it stops when I disable it.

 

The 1.59c version works withhout a hitch.

I tested both versions in new saves.

 

Anything else I should try?

Posted

Will there be any way to configure the amount of multiple unsynced orgasms that can happen during animations besides an on/off toggle? They're pretty cool as is, but it'd be neat if you could mess around with the settings that trigger them or even have a hotkey for triggering them whenever you want.

Posted

I am geting the file corruption problem I had with RC! and B2 again.

After a while the game becomes "corrupt" and fails to load.

Must be my game since no-one else has it  :(

 

*Edit

I also noticed that the SKSE co-save is almost half the size as with the previous versions

Posted

I am geting the file corruption problem I had with RC! and B2 again.

After a while the game becomes "corrupt" and fails to load.

Must be my game since no-one else has it  :(

 

*Edit

I also noticed that the SKSE co-save is almost half the size as with the previous versions

 

If you are using an old version of XPMSE (the earlier 3.0 versions), download the latest one (3.07)

This will improve a lot the problems with the SKSE Co-Save.

Posted

I seriously doupt that this has anything to do with the  skeleton.

I have been going trough 1.59 to 1.60 versions trying ot get it to work and now SOS is broken.

I am almost certain that there is something wrong either with my game of the update. 

Posted

Possible bug, In SL MCM - Player Voice gets reset to 'Random' on every game load regardless of what it was set to before. (Will post logs later if required, Not currently at my game PC).

Posted

I seriously doupt that this has anything to do with the  skeleton.

I have been going trough 1.59 to 1.60 versions trying ot get it to work and now SOS is broken.

I am almost certain that there is something wrong either with my game of the update. 

The skeleton can cause a lot of (seemingly) unrelated issues if it's not the proper one so I definitely recommend updating to XPMSE 3.06 (newest) as it fixed problems I was having and solves a lot of save corruption issues too.  You can also try first opening the console at the main menu and then typing coc qasmoke if you have a lot of script mods and then starting a new game/loading a save after a couple seconds since Skyrim (at least in my experience) sometimes keels over with initializing so many scripts at once in the non-test cell. 

Posted

Apparently modders have to reset the properties in sslAnimationFactory to register human animations, else they get put into the creature section.

function registerNewAnimations()
    PrepareFactory()

    RegisterAnimation("blabla")
endFunction

puts blabla in creature.

function registerNewAnimations()
    Squishing = None
    Sucking = None
    SexMix = None
    Squirting = None
    Slots = None
    PrepareFactory()

    RegisterAnimation("blabla")
endFunction

puts blabla in non-creature.

 

The log files says they are registered as Animations (log 3 is the non working version, log 0 the working one), but they still showed up as creature animations in MCM.

Also attached is the actual (working) script, maybe I missed something in sslAnimationDefaults someone can point out to me.

NecroAnimationsScript.psc

Papyrus.0.log

Papyrus.3.log

Posted

 

I am geting the file corruption problem I had with RC! and B2 again.

After a while the game becomes "corrupt" and fails to load.

Must be my game since no-one else has it  :(

 

*Edit

I also noticed that the SKSE co-save is almost half the size as with the previous versions

 

If you are using an old version of XPMSE (the earlier 3.0 versions), download the latest one (3.07)

This will improve a lot the problems with the SKSE Co-Save.

 

 

On that note, what would be the "right way" to update XMPSE to 3.06 from 3.05 through MO? Just replace folder contents, a clean install or uninstall 3.05 (uncheck on MO) and install 3.06?

 

Thanks in advance.

Posted

 

 

 

On that note, what would be the "right way" to update XMPSE to 3.06 from 3.05 through MO? Just replace folder contents, a clean install or uninstall 3.05 (uncheck on MO) and install 3.06?

 

Thanks in advance.

 

 

Just overwrite the previous one with the new one.

If you are using MO (and you are), just connect to Nexus, and let MO to update the mod.

Posted

 

 

 

 

On that note, what would be the "right way" to update XMPSE to 3.06 from 3.05 through MO? Just replace folder contents, a clean install or uninstall 3.05 (uncheck on MO) and install 3.06?

 

Thanks in advance.

 

 

Just overwrite the previous one with the new one.

If you are using MO (and you are), just connect to Nexus, and let MO to update the mod.

 

 

Great, thanks!

Posted

What determines what a girl will use during sex? I sometimes see a strapon, sometimes a futa dong, and sometimes the double-dildo (which seems to float in the air in one place and stretch to the girl sometimes). Also, does the new version fix the "sometimes backwards at first" thing?

 

Also, my girl's been raped way more than consensual sex. Says she's a nymphomaniac. Can there be something that clears that up? Being raped a hundred times doesn't make you a nympho, it makes you a repeated victim.

Posted

Possible bug, In SL MCM - Player Voice gets reset to 'Random' on every game load regardless of what it was set to before. (Will post logs later if required, Not currently at my game PC).

 

I can confirm this. All other MCM changes seem to stick but player voice resets to random every time I load a game. Going through cell changes and loading screens doesn't seem to do it, though.

 

Not sure how much help they are but here are the papyrus log, papyrusUtildev log and sexlab log. Here I loaded a save, checked the MCM, voice type had been Average (Female) but showed Random, put voice type back, saved, loaded the new save and confirmed it was back to Random again.

 

voice_reset_logs.7z

Posted

 

Possible bug, In SL MCM - Player Voice gets reset to 'Random' on every game load regardless of what it was set to before. (Will post logs later if required, Not currently at my game PC).

 

I can confirm this. All other MCM changes seem to stick but player voice resets to random every time I load a game. Going through cell changes and loading screens doesn't seem to do it, though.

 

Not sure how much help they are but here are the papyrus log, papyrusUtildev log and sexlab log. Here I loaded a save, checked the MCM, voice type had been Average (Female) but showed Random, put voice type back, saved, loaded the new save and confirmed it was back to Random again.

 

attachicon.gifvoice_reset_logs.7z

 

 

Same bug occurs with the toggle animations panel. But i've checked my SexlabConfig.json and everything was ok. So it might be a display problem.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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