Jump to content

SE Compatibility Tracking (Apr 23)


Recommended Posts

On 2/10/2020 at 2:09 PM, 4nk8r said:

I own SSE and can confirm that not a single main or DLC ESM is 100% form 44 throughout.  The surface version (the main file header) and any new items are form 44, but if you go expanding the other data types and looking at the record headers, you're going to find form 43 and lower, as low as 15 that I've found so far.  Your insistence that form 44 is a requirement for SSE doesn't seem to be embraced by Bethesda at all.  If you bothered to examine them, you'd see what I'm talking about.  Don't take my word.  Load them up in xEdit and see for yourself...especially before you push a narrative that Bethesda's own game engine can't tell the differences between its own form versions.

If you reread what I typed, you'd see that I never said that Form 44 is a requirement, I only stated that some people were claiming that The main ESMs for SE were in Form 43, which they are not, to bolster their opinion that you should never convert to Form 44. Resaving in SE CK doesn't always convert all form IDs to form 44 either. Sometimes it's just the header flag that's changed. So, I'm wondering why you're arguing additional points that I haven't made here in any way.  If it was you that I had a debate over this on your mod's thread a couple months ago, you can see that I have changed my tune after that encounter.

 

IMO, the best person to convert a mod is the original author, since they built it and know how it should work in minute detail, Rebuilding the the ESP from scratch in SE CK is probably the best be, so there aren't any conversion errors due to it not being converted but built for SE. 

 

also, @4nk8r Form 43 ESPs can be ESL flagged, but I don't know if that will hurt anything or not. LE won't recognize ESLs from what I understand, because ESL plugins are exclusively for SE, for some reason that's beyond my knowledge.

Link to comment

Oh yay, the version 43/44 discussion again... I'll try to only add parts that haven't been covered already.

 

After SSE came out and people started learning about the form version 43/44 issue, a couple prominent Skyrim figures came out and said that version 43 files were not safe and needed to be upgraded through the SE Creation Kit. Other people said they had 43s that worked fine. Your mileage may vary. For a while I also thought that converting to form 44 was also a good idea, and this guide list reflected that (still kinda does). Like has been said: CK 64 does more work with validating plugin files and may complain on a form 43 that CK 86 would have let slide. That alone is a benefit. However most people resaving in CK are going to be users who don't really know or care to identify problems and fix them, and there's some degree of difficulty in saving properly as demonstrated by the number of times someone has (unverifiably) said that converting broke the mod.

So I'm going to reword the ESP and ESM bits in the guide list to downplay using CK even more.

 

And as pointed out, the official ESMs don't say version 44 for everything. That's because the file header's version number covers the file header itself*, and in fact each version number in each form covers just the form itself. As a programmer I can fairly confidently presume that the number indicates the structure of the data in the file - like literally, "version 43 means the next X bytes are this thing, the next Y bytes are this thing" and so on. That's also why some advice that came about early, and IIRC supported by Wrye Bash, was to just go in and manually set the version number in the file to 44. That's definitely bad, but fortunately I haven't seen that advice offered anytime recently.

 

That's also relevant to the question about setting ESL on a form 43: it likely will not work, as the ESL flag was introduced in Skyrim SE** with form version 44. The game should not recognize the ESL flag and should load the mod into the regular 00-FD space. (That should be easy to confirm.) Or knowing Bethesda, the game could very well accept the flag even though it's not technically valid. Worst case the game would CTD on startup, but I'd be surprised.

 

So current best practice with converting mods is to use the ESP as it is without saving in CK, then if there are issues, consider using CK to see if it can identify any problems. But also as said, issues are rather unlikely to be caused by the ESP itself and are probably something else instead.

 

Assets like meshes and textures always need to be checked. Everybody agrees on that one.

 

 

* It may also serve as saying the highest version number supported by the editor that saved the file (ie, CK), thus also meaning the highest version number in the stored forms. Open question: what happens if a form is saved in CK, including some record that is itself version 44, and where the record has a breaking format change from the previous version (and where the record has data that would be affected by that change), and the file header is manually set to be version 43.

** Actually happened with FO4. I believe there was an update to it made after the original release to support ESLs, then that update also made its way to SSE.

 

 

PS: I'm also one of those people who have a number of form 43 plugins and a rock-solid game, so I promise form 43s are quite safe.

Link to comment
Link to comment

I installed CCAS v14dSE.zip from the last link for the CCAS entry. I can confirm that it works beautifully in my SE game and it was actually the last mod I needed from Oldrim to replicate my Oldrim setup in SE.    I was able to trigger the slave to a spider,  the Riekling shaman setups with no issues whatsoever in SE.

Link to comment
1 hour ago, tasairis said:

Oh yay, the version 43/44 discussion again... I'll try to only add parts that haven't been covered already.

 

After SSE came out and people started learning about the form version 43/44 issue, a couple prominent Skyrim figures came out and said that version 43 files were not safe and needed to be upgraded through the SE Creation Kit. Other people said they had 43s that worked fine. Your mileage may vary. For a while I also thought that converting to form 44 was also a good idea, and this guide list reflected that (still kinda does). Like has been said: CK 64 does more work with validating plugin files and may complain on a form 43 that CK 86 would have let slide. That alone is a benefit. However most people resaving in CK are going to be users who don't really know or care to identify problems and fix them, and there's some degree of difficulty in saving properly as demonstrated by the number of times someone has (unverifiably) said that converting broke the mod.

So I'm going to reword the ESP and ESM bits in the guide list to downplay using CK even more.

 

And as pointed out, the official ESMs don't say version 44 for everything. That's because the file header's version number covers the file header itself*, and in fact each version number in each form covers just the form itself. As a programmer I can fairly confidently presume that the number indicates the structure of the data in the file - like literally, "version 43 means the next X bytes are this thing, the next Y bytes are this thing" and so on. That's also why some advice that came about early, and IIRC supported by Wrye Bash, was to just go in and manually set the version number in the file to 44. That's definitely bad, but fortunately I haven't seen that advice offered anytime recently.

 

That's also relevant to the question about setting ESL on a form 43: it likely will not work, as the ESL flag was introduced in Skyrim SE** with form version 44. The game should not recognize the ESL flag and should load the mod into the regular 00-FD space. (That should be easy to confirm.) Or knowing Bethesda, the game could very well accept the flag even though it's not technically valid. Worst case the game would CTD on startup, but I'd be surprised.

 

So current best practice with converting mods is to use the ESP as it is without saving in CK, then if there are issues, consider using CK to see if it can identify any problems. But also as said, issues are rather unlikely to be caused by the ESP itself and are probably something else instead.

 

Assets like meshes and textures always need to be checked. Everybody agrees on that one.

 

 

* It may also serve as saying the highest version number supported by the editor that saved the file (ie, CK), thus also meaning the highest version number in the stored forms. Open question: what happens if a form is saved in CK, including some record that is itself version 44, and where the record has a breaking format change from the previous version (and where the record has data that would be affected by that change), and the file header is manually set to be version 43.

** Actually happened with FO4. I believe there was an update to it made after the original release to support ESLs, then that update also made its way to SSE.

 

 

PS: I'm also one of those people who have a number of form 43 plugins and a rock-solid game, so I promise form 43s are quite safe.

Yep.  For instance, I have the Oldrim Sexlab Adventures installed in my SE game. Works just fine for me which is big for me as it's about the only consensual sex mod that runs 3, 4, 5 NPC sex animations afaik.   (Defeat does use multiple NPC animations but it's nonconsensual rape and is only triggered after losing a battle)   DCL rape (it works with friendly and hostile NPC's is single player animation only and so is Aroused Creatures (friendly only)) 

 

Link to comment
On 2/11/2020 at 4:23 AM, Yinkle said:

Simpler to just edit the armoraddon biped slot records for the armor you are converting to the new body. If you are just simply optimising the nif files then there is no need for this.

Do you mean removing/adding slots to armor pieces in xEdit? Will that get rid of invisible shins and wrists? I did try that long time ago -didn't work. I figured the issue was that those parts weren't included in the Nifs which would require me to learn BS. Idk might be an easier way but I couldn't find any guides on it.

 

I think I get what your saying; the pictures helped. I'll try again later today.

 

13 hours ago, fiinhvip said:

So... I've been solving the game my self for 2 years now, mainly just reading posts after post on many threads on LL. Most CTD problems I will just disable mod after mod until I found the mod caused that the problem, then goes to the particular mod thread to find if anybody has a similar issue like me and don't bother anyone just because of some minor problem.
Yesterday, Skyrim was fun and everything was going well then CTD. Gallows Rock, in particular, I was doing the Silver Hand questline of the companion. I did the procedure as I always did... and I still can't fix it. Almost a day later and it's now nearly 4 AM, I still trying to fix, I have nifscans almost all the mods but nothing, CAO... nothing. At this point, I'm tired and I want to sleep. I now shamelessly ask for your help. (English is not my native language, sorry)
TL;DR: PLEASE HALP ME!

Load Order:

  Reveal hidden contents
  0  0     Skyrim.esm
  1  1     Update.esm
  2  2     Dawnguard.esm
  3  3     HearthFires.esm
  4  4     Dragonborn.esm
  5  5     Unofficial Skyrim Special Edition Patch.esp
  6  6     High Poly Head.esm
  7  7     SexLab.esm
  8  8     HentaiPregnancy.esm
  9  9     Devious Devices - Assets.esm
 10  a     SexLabAroused.esm
 11  b     CreatureFramework.esm
 12  c     MajesticMountains_Landscape.esm
 13  d     Devious Devices - Integration.esm
 14  e     Devious Devices - Expansion.esm
 15  f     ZaZAnimationPack.esm
254 FE   0 Ecotone Dual Sheath.esl
 16 10     Schlongs of Skyrim - Core.esm
 17 11     SMIM-SE-Merged-All.esp
 18 12     ELFX - Exteriors.esp
 19 13     NorthernGrass.esp
 20 14     Enhanced Vanilla Trees SSE.esp
 21 15     EnhancedLightsandFX.esp
 22 16     Audio Overhaul Skyrim.esp
254 FE   1 MajesticMountains_Moss.esp
 23 17     Landscape Fixes For Grass Mods.esp
 24 18     SkyUI_SE.esp
 25 19     WeightLessTrueAll.esp
 26 1a     Blues Skyrim.esp
 27 1b     BD UUNP Collection.esp
 28 1c     UIExtensions.esp
 29 1d     AddItemMenuSE.esp
 30 1e     3BBB.esp
254 FE   2 3BBB-SL_NoStrip.esp
254 FE   3 3BBB-RaceMenuMorphs.esp
 31 1f     SexLabDefeat.esp
 32 20     MilkModNEW.esp
 33 21     MilkMod_MilkPumpsFancy.esp
 34 22     hydra_slavegirls.esp
 35 23     Milk Addict.esp
254 FE   4 MajesticMountains.esp
 36 24     Run For Your Lives.esp
 37 25     SimpleSlavery.esp
 38 26     Immersive Patrols II.esp
 39 27     MoreNastyCritters.esp
 40 28     KS Dragon Overhaul 2.esp
 41 29     HornyCreatures.esp
 42 2a     Laura's Bondage Shop.esp
 43 2b     Bijin Warmaidens.esp
 44 2c     MilkModNEW HF.esp
 45 2d     MilkModNEW Sanbox.esp
 46 2e     MilkModNEW ZaZ Sanbox.esp
 47 2f     TKDodge.esp
254 FE   5 KSHairdosSMP.esp
 48 30     Scent of Sex.esp
 49 31     AnubAnimObj.esp
 50 32     TheAmazingWorldOfBikiniArmor.esp
 51 33     HentaiCreatures.esp
 52 34     EstrusChaurus.esp
 53 35     zzEstrus.esp
 54 36     LewdMarks.esp
 55 37     UltimateCombat.esp
 56 38     SlaveTats.esp
 57 39     SLAnimLoader.esp
 58 3a     SOS - ERF - Futanari CBBE - Addon.esp
 59 3b     ERF - Futanari CBBE - Equippable.esp
 60 3c     Iron_Head tower shield.esp
 61 3d     Grumboz Rich Ore Veins.esp
254 FE   6 SINful CBP.esp
 62 3e     NoRadialBlur.esp
 63 3f     SkyrimReputation_SSE.esp
 64 40     _GSPoses.esp
 65 41     SexLab Approach.esp
 66 42     SLALAnimObjBillyy.esp
 67 43     Ember_Sword.esp
 68 44     AHZmoreHUD.esp
 69 45     RayAnn Follower.esp
 70 46     The Ordinary Women.esp
 71 47     RaceMenuHH.esp
 72 48     Serana Companion.esp
 73 49     J42_ArmorRatingRedux.esp
 74 4a     AutoHideAmmo.esp
 75 4b     Andromeda - Unique Standing Stones of Skyrim.esp
 76 4c     AMatterOfTime.esp
 77 4d     TheCleaner.esp
 78 4e     3PCO.esp
 79 4f     IcePenguinWorldMap.esp
 80 50     Fresh Women.esp
 81 51     AmazingFollowerTweaks.esp
 82 52     Schlongs of Skyrim.esp
 83 53     SOS - VectorPlexus Muscular Addon.esp
 84 54     FNISSexyMove.esp
 85 55     FNIS.esp
 86 56     SOSRaceMenu.esp
 87 57     CBBE.esp
 88 58     RaceMenuMorphsCBBE.esp
 89 59     RaceMenu.esp
 90 5a     XPMSE.esp
 91 5b     RaceMenuPlugin.esp
254 FE   7 Ecotone Dual Sheath Patch.esp
 92 5c     KS Hairdo's.esp
 93 5d     BlendedRoads.esp
 94 5e     Cathedral Weathers.esp
 95 5f     Ordinator - Perks of Skyrim.esp
254 FE   8 Qw_Ordinator_AOS Patch.esp
 96 60     Immersive Citizens - AI Overhaul.esp
 97 61     Landscape For Grass Mods -Immersive Citizens PATCH.esp
 98 62     Open Cities Skyrim.esp
 99 63     Immersive Citizens - OCS patch.esp
100 64     ELFXEnhancer.esp
101 65     Immersive Citizens - ELFXEnhancer patch.esp
102 66     RealisticWaterTwo.esp
254 FE   9 Realistic Water Two - Landscape For Grass Mods Patch.esp
254 FE   a RealisticWaterTwo - ELFX Enhancer Patch.esp
254 FE   b RealisticWaterTwo - Watercolor.esp
 

Papyrus.0.log (i can't upload the file for unknown reason)

  Reveal hidden contents
[02/12/2020 - 03:29:25AM] Papyrus log opened (PC)
[02/12/2020 - 03:29:25AM] Function UpdateItemTextureLayer in the empty state on type NiOverride does not exist. Function will not be flagged as callable from tasklets.
[02/12/2020 - 03:29:25AM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 2000.000000ms)
[02/12/2020 - 03:29:25AM] Memory page: 128 (min) 512 (max) 153600 (max total)
[02/12/2020 - 03:29:29AM] Cannot open store for class "ZazOnTriggerEnterBindingsTMG", missing file?
[02/12/2020 - 03:29:29AM] Cannot open store for class "daymoyl_PlayerValidateQuestAlias", missing file?
[02/12/2020 - 03:29:29AM] Cannot open store for class "daymoyl_QuestTemplate", missing file?
[02/12/2020 - 03:29:29AM] Error: Unable to link "daymoyl_QuestTemplate" - the parent of "defeatdatrigger".
[02/12/2020 - 03:29:29AM] ERROR: Unable to bind script defeatdatrigger to DefeatPlayerQST (1F000D62) because their base types do not match
[02/12/2020 - 03:29:29AM] ERROR: Unable to bind script DefeatDALeftForDead to DefeatPALeftForDead (1F0C1173) because their base types do not match
[02/12/2020 - 03:29:29AM] ERROR: Unable to bind script Defeatdadefeated to DefeatPADefeated (1F0C16D8) because their base types do not match
[02/12/2020 - 03:29:29AM]  : FATAL: Magic number doesn't match, file is not a compiled script.
[02/12/2020 - 03:29:29AM] ERROR: Unable to bind script hydConfigMenu to hyd_d_mcm (2207AEF9) because their base types do not match
[02/12/2020 - 03:29:29AM] Cannot open store for class "pah_mcm", missing file?
[02/12/2020 - 03:29:29AM] Cannot open store for class "dcc_sgo_questcontroller", missing file?
[02/12/2020 - 03:29:29AM] ERROR: Unable to bind script SSLV_DAIntScript to SSLV_DAInt (2500FB14) because their base types do not match
[02/12/2020 - 03:29:30AM] Cannot open store for class "zzEstrusBondageEffectScript", missing file?
[02/12/2020 - 03:29:30AM] Cannot open store for class "PF_zzEstrusPackageDoNothingO_0101C3CF", missing file?
[02/12/2020 - 03:29:30AM] ERROR: Unable to bind script PF_zzEstrusPackageDoNothingO_0101C3CF to  (3501C3CF) because their base types do not match
[02/12/2020 - 03:29:30AM] Cannot open store for class "PF_zzEstrusPackageFollower_010280A8", missing file?
[02/12/2020 - 03:29:30AM] ERROR: Unable to bind script PF_zzEstrusPackageFollower_010280A8 to  (350280A8) because their base types do not match
[02/12/2020 - 03:29:30AM] Cannot open store for class "PRKF_Aur_LordStone_Perk_2_Ab_03000A08", missing file?
[02/12/2020 - 03:29:30AM] ERROR: Unable to bind script PRKF_Aur_LordStone_Perk_2_Ab_03000A08 to  (4B000A08) because their base types do not match
[02/12/2020 - 03:29:30AM] Cannot open store for class "PRKF_Aur_TowerStone_Perk_X_A_030009E1", missing file?
[02/12/2020 - 03:29:30AM] ERROR: Unable to bind script PRKF_Aur_TowerStone_Perk_X_A_030009E1 to  (4B0009E1) because their base types do not match
[02/12/2020 - 03:29:30AM] Cannot open store for class "PRKF_Aur_TowerStone_Perk_1_A_03028C71", missing file?
[02/12/2020 - 03:29:30AM] ERROR: Unable to bind script PRKF_Aur_TowerStone_Perk_1_A_03028C71 to  (4B028C71) because their base types do not match
[02/12/2020 - 03:29:30AM] ERROR: Unable to bind script TrapBear to TweakTraps (5100C515) because their base types do not match
[02/12/2020 - 03:29:30AM] ERROR: Unable to bind script traptriggerbase to TweakTraps (5100C515) because their base types do not match
[02/12/2020 - 03:29:30AM] Cannot open store for class "SF_TweakP1Hangout_02017201", missing file?
[02/12/2020 - 03:29:30AM] ERROR: Unable to bind script SF_TweakP1Hangout_02017201 to  (51017201) because their base types do not match
[02/12/2020 - 03:29:30AM] Cannot open store for class "SF_TweakP1Pose_02017788", missing file?
[02/12/2020 - 03:29:30AM] ERROR: Unable to bind script SF_TweakP1Pose_02017788 to  (51017788) because their base types do not match
[02/12/2020 - 03:29:30AM] Cannot open store for class "NPCO_MyConfigMenu", missing file?
[02/12/2020 - 03:29:30AM] ERROR: Unable to bind script NPCO_MyConfigMenu to NPCO_MyConfigMenu (609C39F2) because their base types do not match
[02/12/2020 - 03:29:46AM] ERROR: Unable to bind script daymoyl_PlayerValidateQuestAlias to alias PlayerRef on quest DefeatPlayerQST (1F000D62) because their base types do not match
[02/12/2020 - 03:29:46AM] ERROR: Unable to bind script daymoyl_PlayerValidateQuestAlias to alias PlayerRef on quest SSLV_DARegister (2503B46E) because their base types do not match
[02/12/2020 - 03:29:46AM] warning: Property RWT_IcebergsToggle on script RealisticWaterTwoMCM attached to RealisticWaterTwoMCMQuest (660C5FA5) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:29:46AM] warning: Property SLAPPDooLockPerk on script SLApproachPlayerAliasScript attached to alias PlayerRef on quest SLApproach_Main (41000D62) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:29:46AM] warning: Property SLQuest on script Mus3BAddon_PlayerAlias attached to alias PlayerAlias on quest Mus3BAddon (1E000815) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:29:46AM] ERROR: Property Initiate2Alias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias Initiate2Alias on quest DarkBrotherhood (0001EA5C) is not the right type
[02/12/2020 - 03:29:46AM] ERROR: Property CiceroAlias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias CiceroEndGameAlias on quest DarkBrotherhood (0001EA5C) is not the right type
[02/12/2020 - 03:29:46AM] ERROR: Property Initiate1Alias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias Initiate1Alias on quest DarkBrotherhood (0001EA5C) is not the right type
[02/12/2020 - 03:29:46AM] warning: Property SSLV_SlaveOutfit2 on script sslv_configscr attached to SSLV_Config (2502FF82) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:29:46AM] VM is freezing...
[02/12/2020 - 03:29:46AM] VM is frozen
[02/12/2020 - 03:29:46AM] Reverting game...
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script PF_zzEstrusPackageDoNothingO_0101C3CF to  (3501C3CF) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script PRKF_Aur_LordStone_Perk_2_Ab_03000A08 to  (4B000A08) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script PF_zzEstrusPackageFollower_010280A8 to  (350280A8) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script Defeatdadefeated to DefeatPADefeated (1F0C16D8) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script TrapBear to TweakTraps (5100C515) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script traptriggerbase to TweakTraps (5100C515) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script SSLV_DAIntScript to SSLV_DAInt (2500FB14) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script NPCO_MyConfigMenu to NPCO_MyConfigMenu (609C39F2) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script SF_TweakP1Hangout_02017201 to  (51017201) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script PRKF_Aur_TowerStone_Perk_X_A_030009E1 to  (4B0009E1) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script hydConfigMenu to hyd_d_mcm (2207AEF9) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script defeatdatrigger to DefeatPlayerQST (1F000D62) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script PRKF_Aur_TowerStone_Perk_1_A_03028C71 to  (4B028C71) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script DefeatDALeftForDead to DefeatPALeftForDead (1F0C1173) because their base types do not match
[02/12/2020 - 03:29:47AM] ERROR: Unable to bind script SF_TweakP1Pose_02017788 to  (51017788) because their base types do not match
[02/12/2020 - 03:30:11AM] Loading game...
[02/12/2020 - 03:30:11AM] ERROR: Unable to bind script daymoyl_PlayerValidateQuestAlias to alias PlayerRef on quest SSLV_DARegister (2503B46E) because their base types do not match
[02/12/2020 - 03:30:11AM] ERROR: Unable to bind script daymoyl_PlayerValidateQuestAlias to alias PlayerRef on quest DefeatPlayerQST (1F000D62) because their base types do not match
[02/12/2020 - 03:30:11AM] warning: Property RWT_IcebergsToggle on script RealisticWaterTwoMCM attached to RealisticWaterTwoMCMQuest (660C5FA5) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:30:11AM] warning: Property SLAPPDooLockPerk on script SLApproachPlayerAliasScript attached to alias PlayerRef on quest SLApproach_Main (41000D62) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:30:12AM] warning: Property SLQuest on script Mus3BAddon_PlayerAlias attached to alias PlayerAlias on quest Mus3BAddon (1E000815) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:30:12AM] ERROR: Property Initiate2Alias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias Initiate2Alias on quest DarkBrotherhood (0001EA5C) is not the right type
[02/12/2020 - 03:30:12AM] ERROR: Property CiceroAlias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias CiceroEndGameAlias on quest DarkBrotherhood (0001EA5C) is not the right type
[02/12/2020 - 03:30:12AM] ERROR: Property Initiate1Alias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias Initiate1Alias on quest DarkBrotherhood (0001EA5C) is not the right type
[02/12/2020 - 03:30:12AM] warning: Property SSLV_SlaveOutfit2 on script sslv_configscr attached to SSLV_Config (2502FF82) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:30:12AM] Cannot open store for class "obsidianseasons", missing file?
[02/12/2020 - 03:30:12AM] warning: Unable to get type obsidianseasons referenced by the save game. Objects of this type will not be loaded.
[02/12/2020 - 03:30:12AM] warning: Could not find type obsidianseasons in the type table in save
[02/12/2020 - 03:30:13AM] VM is thawing...
[02/12/2020 - 03:30:13AM] SEXLAB - LOADED: Version 16208 / 16208
[02/12/2020 - 03:30:13AM] SlaveTatsExtra: [Follower mods] AFT=TRUE EFF=False UFO=False standard=False
[02/12/2020 - 03:30:13AM] SlaveTatsExtra: Applying per-cell extra customization...
[02/12/2020 - 03:30:13AM] SlaveTatsExtra: No targets. Aborting.
[02/12/2020 - 03:30:13AM] SlaveTatsExtra: Applying per-load extra customization...
[02/12/2020 - 03:30:13AM] SexLab MCM Loaded CurrentVerison: 16208 / 16208
[02/12/2020 - 03:30:13AM] SlaveTatsExtra: No targets. Aborting.
[02/12/2020 - 03:30:13AM] MilkModEconomy OnPlayerLoadGame
[02/12/2020 - 03:30:13AM] FNIS AA started (load)
[02/12/2020 - 03:30:13AM] [Zad]: DevicesUnderneath::Maintenance()
[02/12/2020 - 03:30:13AM] ERROR: Cannot call OnGameReload() on a None object, aborting function call
stack:
    [alias PlayerAlias on quest hyd_d_mcm (2207AEF9)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[02/12/2020 - 03:30:13AM] SOS Maintenance: loaded version is 300004
[02/12/2020 - 03:30:13AM] SOS Maintenance: 300004 is update
[02/12/2020 - 03:30:13AM] [Immersive Citizens]======================================================================================================
[02/12/2020 - 03:30:13AM] [Immersive Citizens]     Immersive Citizens is now performing compatibility checks. Papyrus warnings about missing or       
[02/12/2020 - 03:30:13AM] [Immersive Citizens]             unloaded files may follow. This is NORMAL and can be ignored.                               
[02/12/2020 - 03:30:13AM] [Immersive Citizens]======================================================================================================
[02/12/2020 - 03:30:13AM] [mus3baddonmcm <Mus3BAddon (1E000815)>] OnGameReload() : Check Version [5] / [5]
[02/12/2020 - 03:30:13AM] ERROR: File "ClimatesOfTamriel.esm" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias Player on quest NPCO_Update (60F10B52)].npco_update.IsPluginLoaded() - "NPCO_Update.psc" Line 155
    [alias Player on quest NPCO_Update (60F10B52)].npco_update.Compatibility() - "NPCO_Update.psc" Line 140
    [alias Player on quest NPCO_Update (60F10B52)].npco_update.OnPlayerLoadGame() - "NPCO_Update.psc" Line 102
[02/12/2020 - 03:30:13AM] [Immersive Citizens]======================================================================================================
[02/12/2020 - 03:30:13AM] [Immersive Citizens]                            Immersive Citizens compatibility check complete.                           
[02/12/2020 - 03:30:13AM] [Immersive Citizens]======================================================================================================
[02/12/2020 - 03:30:13AM] SLAL: SLAL: OnLoad
[02/12/2020 - 03:30:13AM] [mus3baddonmcm <Mus3BAddon (1E000815)>] : VersionCheck()
[02/12/2020 - 03:30:13AM] [Zad]: [Vibration] Registered. Event #21
[02/12/2020 - 03:30:13AM] [Zad]: [Plug Moan] Registered. Event #0
[02/12/2020 - 03:30:13AM] [Zad]: [Belted Empty] Registered. Event #12
[02/12/2020 - 03:30:13AM] [Zad]: [Belt Chafing] Registered. Event #14
[02/12/2020 - 03:30:13AM] [Zad]: [Bump Pumps] Registered. Event #15
[02/12/2020 - 03:30:13AM] [Zad]: [Tight Gloves] Registered. Event #19
[02/12/2020 - 03:30:13AM] [Zad]: [Tight Gloves] Loaded: 15%
[02/12/2020 - 03:30:13AM] [A Quality World Map] Applying map camera constraint settings on load.
[02/12/2020 - 03:30:13AM] [Zad]: [Restrictive Collar] Registered. Event #17
[02/12/2020 - 03:30:13AM] [Zad]: [Restrictive Collar] Loaded: 15%
[02/12/2020 - 03:30:14AM] FNIS aa GetAAprefixList mod: FNIS Sexy Move nMods: 7
[02/12/2020 - 03:30:14AM] FNIS aa GetAAmodID mod: FNIS Sexy Move prefix: fsm modID:3
[02/12/2020 - 03:30:14AM] FNIS SexyMove started (load).
[02/12/2020 - 03:30:14AM] [slamainscr <sla_Main (0A042D62)>]: starting maintenance... Update frequency 120.000000
[02/12/2020 - 03:30:14AM] Cannot open store for class "consoleutil", missing file?
[02/12/2020 - 03:30:14AM] ERROR: Unable to obtain function call information - returning None
stack:
    [zadQuest (0D00F624)].zadbq00.checkBlindfoldDarkFog() - "zadBQ00.psc" Line 133
    [zadQuest (0D00F624)].zadbq00.Maintenance() - "zadBQ00.psc" Line 140
    [alias Player on quest zadQuest (0D00F624)].zadPlayerScript.OnPlayerLoadGame() - "zadPlayerScript.psc" Line 14
[02/12/2020 - 03:30:14AM] zbfExternal: Compatibility checking
[02/12/2020 - 03:30:14AM] zbfExternal: -------------------------------------------------------
[02/12/2020 - 03:30:14AM] zbfExternal:                    SexLab version: 16208
[02/12/2020 - 03:30:14AM] zbfExternal:                 SlaveTats version: 1.0.0
[02/12/2020 - 03:30:14AM] MilkModEconomy Registered events
[02/12/2020 - 03:30:14AM] [Zad]: [Vibration] Loaded: 25%
[02/12/2020 - 03:30:14AM] zbfExternal:                  RaceMenu version: 7
[02/12/2020 - 03:30:14AM] zbfExternal: Non SexLab Animation Pack version: 0
[02/12/2020 - 03:30:14AM] zbfExternal: -------------------------------------------------------
[02/12/2020 - 03:30:14AM] zbfExternal:                    SexLab support: TRUE
[02/12/2020 - 03:30:14AM] zbfExternal:                   Overlay support: TRUE
[02/12/2020 - 03:30:14AM] zbfExternal:      Non SexLab Animation support: False
[02/12/2020 - 03:30:14AM] zbfExternal: -------------------------------------------------------
[02/12/2020 - 03:30:14AM] error: Native static function ForEachMorphedReference could find no matching static function on linked type NiOverride. Function will not be bound.
[02/12/2020 - 03:30:14AM] error: Native static function GetMorphedReferences could find no matching static function on linked type NiOverride. Function will not be bound.
[02/12/2020 - 03:30:14AM] [Zad]: Starting update chain.
[02/12/2020 - 03:30:14AM] [slamainscr <sla_Main (0A042D62)>]: registered for maintenance
[02/12/2020 - 03:30:14AM] _MA_: Milk Addict soft dependency check BEGIN ==============================
[02/12/2020 - 03:30:14AM] _MA_: Mortal Weapons & Armors installed: False
[02/12/2020 - 03:30:14AM] _MA_: Soulgem Oven installed: False
[02/12/2020 - 03:30:14AM] _MA_: Paradise Halls installed: False
[02/12/2020 - 03:30:14AM] _MA_: Sexlab Inflation Framework installed: False
[02/12/2020 - 03:30:14AM] _MA_: Apropos installed: False
[02/12/2020 - 03:30:14AM] _MA_: Apropos2 installed: False
[02/12/2020 - 03:30:14AM] [Zad]: [Wet Padding] Registered. Event #23
[02/12/2020 - 03:30:14AM] [Zad]: [Wet Padding] Loaded: 10%
[02/12/2020 - 03:30:14AM] _MA_: Devious Followers installed: False
[02/12/2020 - 03:30:14AM] _MA_: Devious Devices installed: TRUE
[02/12/2020 - 03:30:14AM] _MA_: Milk Addict soft dependency check END ==============================
[02/12/2020 - 03:30:14AM] ERROR: Attempted to add invalid perk to the actor
stack:
    [ (00000014)].Actor.AddPerk() - "<native>" Line ?
    [alias PlayerRef on quest SLApproach_Main (41000D62)].SLApproachPlayerAliasScript.OnPlayerLoadGame() - "slapproachplayeraliasscript.psc" Line 18
[02/12/2020 - 03:30:14AM] [Zad]: Set Device Hider slot to 41.
[02/12/2020 - 03:30:14AM] [A Quality World Map] Settings applied.
[02/12/2020 - 03:30:14AM] MilkModEconomy DLC check
[02/12/2020 - 03:30:14AM] MilkModEconomy HearthFires.esm found
[02/12/2020 - 03:30:14AM] [Zad]: Devious Devices is now creating animations.
[02/12/2020 - 03:30:14AM] [slamainscr <sla_Main (0A042D62)>]: starting maintenance... Update frequency 120.000000
[02/12/2020 - 03:30:14AM] MilkModEconomy Dawnguard.esm found
[02/12/2020 - 03:30:14AM] MilkModEconomy Dragonborn.esm found
[02/12/2020 - 03:30:14AM] MilkModEconomy RealisticNeedsandDiseases.esp not found
[02/12/2020 - 03:30:14AM] MilkModEconomy iNeed.esp not found
[02/12/2020 - 03:30:14AM] MilkModEconomy SexLabSkoomaWhore.esp not found
[02/12/2020 - 03:30:14AM] MilkModEconomy Schlongs of Skyrim.esp found
[02/12/2020 - 03:30:14AM] MilkModEconomy SOS Equipable Schlong.esp not found
[02/12/2020 - 03:30:14AM] MilkModEconomy SOS - B3lisario UNP Addon.esp not found
[02/12/2020 - 03:30:14AM] MilkModEconomy SOS - SOS Female Schlongifier (No Schlong Addon by Erundil).esp not found
[02/12/2020 - 03:30:14AM] SEXLAB - GetSetAnimation(DDBeltedSolo): Get
[02/12/2020 - 03:30:14AM] MilkModEconomy SOS - SOS Female Schlongifier (No Schlong Addon by Erundil).esp not found
[02/12/2020 - 03:30:14AM] SEXLAB - GetSetAnimation(DDArmbinderSolo): Get
[02/12/2020 - 03:30:14AM] MilkModEconomy EstrusChaurus.esp found
[02/12/2020 - 03:30:14AM] MilkModEconomy EstrusSpider.esp not found
[02/12/2020 - 03:30:14AM] MilkModEconomy EstrusDwemer.esp not found
[02/12/2020 - 03:30:14AM] MilkModEconomy BeeingFemale.esm not found
[02/12/2020 - 03:30:14AM] MilkModEconomy FertilityMode.esp not found
[02/12/2020 - 03:30:14AM] MilkModEconomy Fertility Mode.esp not found
[02/12/2020 - 03:30:14AM] MilkModEconomy HentaiPregnancy.esm found
[02/12/2020 - 03:30:14AM] MilkModEconomy SexLabProcreation.esp not found
[02/12/2020 - 03:30:14AM] MilkModEconomy PlayerSuccubusQuest.esm not found
[02/12/2020 - 03:30:14AM] MilkModEconomy Devious Devices - Integration.esm found
[02/12/2020 - 03:30:14AM] MilkModEconomy SexLab-StoriesDevious.esp not found
[02/12/2020 - 03:30:14AM] MilkModEconomy SexLabAroused.esm found
[02/12/2020 - 03:30:14AM] SEXLAB - GetSetAnimation(DDYokeSolo): Get
[02/12/2020 - 03:30:14AM] [Zad]: Devious Devices is now creating bound animations.
[02/12/2020 - 03:30:14AM] SEXLAB - GetSetAnimation(DDZapArmbDoggy01): Get
[02/12/2020 - 03:30:14AM] SEXLAB - GetSetAnimation(DDZapArmbDoggy01Both): Get
[02/12/2020 - 03:30:14AM] [Zad]: [Chaos Plugs] Registered. Event #11
[02/12/2020 - 03:30:14AM] [Zad]: [Chaos Plugs] Loaded: 25%
[02/12/2020 - 03:30:14AM] [Zad]: [Mana Drain] Registered. Event #24
[02/12/2020 - 03:30:14AM] [Zad]: [Mana Drain] Loaded: 50%
[02/12/2020 - 03:30:14AM] SEXLAB - GetSetAnimation(DDZapArmbMissionary01): Get
[02/12/2020 - 03:30:14AM] MilkModEconomy DCL check done
[02/12/2020 - 03:30:14AM] MilkModEconomy adding MME Leveled lists to base Leveled lists
[02/12/2020 - 03:30:14AM] SEXLAB - GetSetAnimation(DDZapArmbSkullFuck01): Get
[02/12/2020 - 03:30:14AM] SEXLAB - GetSetAnimation(DDZapArmbLesbian01): Get
[02/12/2020 - 03:30:14AM] SEXLAB - GetSetAnimation(DDZapArmbLesbian01Both): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDZapArmbBoobjob01): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDZapArmbKissing01): Get
[02/12/2020 - 03:30:15AM] [slamainscr <sla_Main (0A042D62)>]: registered for maintenance
[02/12/2020 - 03:30:15AM] [Zad]: [Blindfold Mystery] Registered. Event #4
[02/12/2020 - 03:30:15AM] [Zad]: [Blindfold Mystery] Loaded: 1%
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDZapYokeMissionary01): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDZapYokeMissionary02): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDZapYokeMissionary03): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDZapYokeSkullFuck01): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDZapYokeLesbian01): Get
[02/12/2020 - 03:30:15AM] [Zad]: RebuildSlotmask()
[02/12/2020 - 03:30:15AM] [Zad]: [Restraints+Armor] Registered. Event #25
[02/12/2020 - 03:30:15AM] [Zad]: [Restraints+Armor] Loaded: 7%
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDZapYokeLesbian01Both): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDZapYokeBlowjob01): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDZapYokeKissing01): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDZapYokeForeplay01): Get
[02/12/2020 - 03:30:15AM] [Zad]: [Mounted] Registered. Event #18
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDFBYokeHolding): Get
[02/12/2020 - 03:30:15AM] [Zad]: [Mounted] Loaded: 100%
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDFBYokeDoggy): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDFBMolagStandingYoke): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDZapMixLesbian01ArmbYoke): Get
[02/12/2020 - 03:30:15AM] [Zad]: [Periodic Shocks] Registered. Event #5
[02/12/2020 - 03:30:15AM] [Zad]: [Periodic Shocks] Loaded: 25%
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DDZapMixLesbian01YokeArmb): Get
[02/12/2020 - 03:30:15AM] [Zad]: [Trip and Fall] Registered. Event #16
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_SH_armbBJ1): Get
[02/12/2020 - 03:30:15AM] [Zad]: [Trip and Fall] Loaded: 20%
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_SH_bbyokeBJ1): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_SH_cuffsFrontBJ1): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_SH_elbBJ1): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_SH_yokeBJ1): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_SH_armbMiss1): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_SH_bbyokeMiss1): Get
[02/12/2020 - 03:30:15AM] [Zad]: [Belted Empty] Loaded: 10%
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_SH_cuffsFrontMiss1): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_SH_elbMiss1): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_SH_yokeMiss1): Get
[02/12/2020 - 03:30:15AM] MilkModEconomy iNeed options is not installed
[02/12/2020 - 03:30:15AM] MilkModEconomy breast strings array resetting
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_SH_armbCowg1): Get
[02/12/2020 - 03:30:15AM] MilkModEconomy armor strings array resetting
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_SH_elbCowg1): Get
[02/12/2020 - 03:30:15AM] [Zad]: [Blindfold Trip] Registered. Event #1
[02/12/2020 - 03:30:15AM] [Zad]: [Blindfold Trip] Loaded: 10%
[02/12/2020 - 03:30:15AM] MilkModEconomy armorslots array resetting
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_Billyy_YokeCowgirl): Get
[02/12/2020 - 03:30:15AM] MilkModEconomy ECON market names array resetting
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_Billyy_YokeDoggy): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_Billyy_YokeMissionary): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_Billyy_YokeStanding): Get
[02/12/2020 - 03:30:15AM] [Zad]: [Nipple Piercings] Registered. Event #7
[02/12/2020 - 03:30:15AM] [Zad]: [Nipple Piercings] Loaded: 10%
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_Billyy_YokeFaceFuck): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_Billyy_Yoke69): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_Billyy_YokeRevCowgirlAnal): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_Billyy_YokeLayingAnal): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_B_PS_Doggy): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_B_PS_DoggyA): Get
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_B_PS_DT): Get
[02/12/2020 - 03:30:15AM] [Zad]: [Posture Collar] Registered. Event #9
[02/12/2020 - 03:30:15AM] [Zad]: [Posture Collar] Loaded: 10%
[02/12/2020 - 03:30:15AM] SEXLAB - GetSetAnimation(DD_B_PS_Miss): Get
[02/12/2020 - 03:30:15AM] [Zad]: EnableEventProcessing()
[02/12/2020 - 03:30:15AM] [Zad]: Rehooking Mod Events
[02/12/2020 - 03:30:15AM] [Zad]: [Belt Chafing] Loaded: 10%
[02/12/2020 - 03:30:15AM] [Zad]: [Struggle] Registered. Event #22
[02/12/2020 - 03:30:15AM] [Zad]: [Struggle] Loaded: 25%
[02/12/2020 - 03:30:15AM] [Zad]: [Tight Corset] Registered. Event #3
[02/12/2020 - 03:30:15AM] [Zad]: [Tight Corset] Loaded: 15%
[02/12/2020 - 03:30:15AM] [Zad]: [Drip] Registered. Event #2
[02/12/2020 - 03:30:15AM] [Zad]: [Drip] Loaded: 10%
[02/12/2020 - 03:30:15AM] MilkModEconomy ECON milk names array resetting
[02/12/2020 - 03:30:15AM] [Zad]: [Stamina Drain] Registered. Event #10
[02/12/2020 - 03:30:15AM] [Zad]: [Stamina Drain] Loaded: 50%
[02/12/2020 - 03:30:15AM] [Zad]: [Plug Moan] Loaded: 10%
[02/12/2020 - 03:30:15AM] [Zad]: [Harness] Registered. Event #6
[02/12/2020 - 03:30:15AM] [Zad]: [Harness] Loaded: 10%
[02/12/2020 - 03:30:15AM] [Zad]: [Horny] Registered. Event #8
[02/12/2020 - 03:30:15AM] [Zad]: [Horny] Loaded: 5%
[02/12/2020 - 03:30:15AM] InitWidgetLoader()
[02/12/2020 - 03:30:15AM] [Zad]: [Bra Chafing] Registered. Event #20
[02/12/2020 - 03:30:15AM] [Zad]: [Bra Chafing] Loaded: 10%
[02/12/2020 - 03:30:15AM] FNIS aa GetAAprefixList mod: FNIS Sexy Move(360) nMods: 7
[02/12/2020 - 03:30:15AM] FNIS aa GetAAmodID mod: FNIS Sexy Move(360) prefix: fs3 modID:4
[02/12/2020 - 03:30:15AM] [Zad]: [Health Drain] Registered. Event #13
[02/12/2020 - 03:30:15AM] [Zad]: [Health Drain] Loaded: 50%
[02/12/2020 - 03:30:15AM] [Zad]: [Bump Pumps] Loaded: 17%
[02/12/2020 - 03:30:15AM] SSX: Cell Scanner going to inactive state
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] SSX: Factions Cleaner going to inactive state
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] FNIS aa GetAAprefixList mod: XPMSE nMods: 7
[02/12/2020 - 03:30:15AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] [Zad]: ZadNpc::DoRegister(1.911070)
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] [Zad]: RepopulateNpcs()
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] MilkModEconomy 3J Breastfeeding animations found
[02/12/2020 - 03:30:15AM] MilkModEconomy status set to 1, should be 1
[02/12/2020 - 03:30:15AM] MilkModEconomy maintenance done
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (2A0778D7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:15AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:16AM] SEXLAB - NOTICE: ValidateActor(Aela The Huntress) -- TRUE -- HIT
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (000528EF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] >>>>> SSX - found CF
[02/12/2020 - 03:30:16AM] FNIS aa GetAAsetList mod: XPMSE nSets: 48
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:16AM] SSX: Rule Checker Update completed
[02/12/2020 - 03:30:16AM] SSX: Rule Checker Event completed
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] SSX: scanner completed
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 5 on  (1A0F1EF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 256
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] [Zad]: Set slot mask to [49152]: 49152
[02/12/2020 - 03:30:17AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 7 on  (22001E1B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (0002C90F)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 7 on  (22031EA2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 6 on  (220A53AB)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] SSX: Deferred Config Manager started
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (000FD86A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 1 on  (000528ED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:17AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 1 on  (1A0F1EED)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] SSX: Configuration init
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (0003706A)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (00037F95)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] SSX: Cell Scanner events registered
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (000528EC)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 1 on  (0003707B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (000528F0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] SSX: Cloak Scanner events registered
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 5 on  (000235D6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (000DC9E5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 5 on  (0003706E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 5 on  (001000F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 5 on  (00053AE4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (000540A1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] SSX: Alias Scanner events registered
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] [Zad]: ==========Begin Compatibility Checks==========
[02/12/2020 - 03:30:18AM] [Zad]: Please note that Errors related to missing files should be ignored.
[02/12/2020 - 03:30:18AM] [Zad]: [ Dependency Checks ]
[02/12/2020 - 03:30:18AM] [Zad]: DDi version [10.000000]: OK
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] [Zad]: assets version [3.000000]: OK
[02/12/2020 - 03:30:18AM] [Zad]: aroused version [20140124.000000]: OK
[02/12/2020 - 03:30:18AM] [Zad]: SexLab version [16208.000000]: OK
[02/12/2020 - 03:30:18AM] [Zad]: [ Third Party Mod Compatibility Checks ]
[02/12/2020 - 03:30:18AM] [Zad]: [ Sanity Checks ]
[02/12/2020 - 03:30:18AM] [Zad]: Verifying that installation is untainted by an unsupported upgrade: OK
[02/12/2020 - 03:30:18AM] [Zad]: ==========End Compatibility Checks==========
[02/12/2020 - 03:30:18AM] [Zad]: Events arrays already initialized - skipping.
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] [Zad]: zadEventSlots::Maintenance()
[02/12/2020 - 03:30:18AM] [Zad]: Config Interval:2.000000. Total number of events: 0. Next staggered update in 2.000000
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 5 on  (220718B0)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] [Zad]: Maintenance_ABC()
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 5 on  (000540A2)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] [Zad]: Monitoring Camera state.
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:18AM] SSX: Rule Checker events registered
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 6 on  (000D0FF6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 7 on  (000299F7)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] SSX: Rule Player activated and events registered
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 7 on  (0008B706)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.UnregisterForModEvent() - "<native>" Line ?
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 257
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 7 on  (22014356)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 258
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 259
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (000DC9E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 260
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.UnregisterForAnimationEvent() - "<native>" Line ?
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 261
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 7 on  (22032EDE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (000D97F1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (000FD86C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 1 on  (000528EE)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] SSX: Scene Manager activated and events registered
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 4 on  (220A5ECF)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 5 on  (00053AE5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 6 on  (000D16E1)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 5 on  (0001A678)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 6 on  (0001A67E)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 6 on  (000D0FF5)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] SSX: Deferred Mods Loader started
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 1 on  (000FE4E4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 5 on  (0003707C)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (00037056)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 5 on  (2A076348)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 6 on  (0001A6A4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 5 on  (23016785)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 6 on  (000D0FF4)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 6 on  (220018A6)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 7 on  (220D3248)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:20AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 3 on  (000FD86B)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:20AM] SSX: Deferred Actors Loader started
[02/12/2020 - 03:30:20AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.ResetAbility() - "ectnDualSheathAbilityEffect.psc" Line 264
    [Active effect 6 on  (220D8126)].ectnDualSheathAbilityEffect.OnDualSheathRest() - "ectnDualSheathAbilityEffect.psc" Line 49
[02/12/2020 - 03:30:20AM] SSX: Deferred Tags Loader started
[02/12/2020 - 03:30:20AM] SSX: Deferred Items Loader started
[02/12/2020 - 03:30:20AM] SSX: Factions Cleaner events registered
[02/12/2020 - 03:30:20AM] [CF][Framework] Sending register event
[02/12/2020 - 03:30:21AM] XPMSE MainQuest Initialization successful.
[02/12/2020 - 03:30:21AM] SSX: Configuration completed
[02/12/2020 - 03:30:21AM] SSX: Elapsed time for Loading Configuration = 2.861000
[02/12/2020 - 03:30:23AM] [CF][Framework] Beginning JSON registration
[02/12/2020 - 03:30:23AM] [CF][Framework] Found 27 JSON files in creatures.d
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HentaiCreatures.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyCreatures.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyDragonesses.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyDragonsHerm.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyDragsDogB.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyDragsDogP.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyDragsDogR.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyDragsDragB.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyDragsDragP.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyDragsDragR.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyDragsHorseB.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyDragsHorseP.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyDragsHorseR.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyWerewolvesHerm1.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyWerewolvesHerm2.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyWerewolvesHerm3.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyWerewolvesHerm4.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyWerewolvesHerm5.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyWerewolvesHorse1.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyWerewolvesHorse2.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyWerewolvesHorse3.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyWerewolvesHorse4.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file HornyWerewolvesHorse5.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file MNC.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file MNCClassic.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file MNCLurkerAlt.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Already loaded file MNCRescale.json; skipping
[02/12/2020 - 03:30:23AM] [CF][Framework] Finished JSON registration
[02/12/2020 - 03:30:23AM] [CF][Framework] Creature Framework is done initialising
[02/12/2020 - 03:30:25AM] [slamainscr <sla_Main (0A042D62)>]:Defered maintenance...
[02/12/2020 - 03:30:25AM] [slamainscr <sla_Main (0A042D62)>]: found Devious Devices - Assets.esm
[02/12/2020 - 03:30:25AM] [slamainscr <sla_Main (0A042D62)>]: Enabled Desire spell
[02/12/2020 - 03:30:25AM] [slamainscr <sla_Main (0A042D62)>]: Updated notification key to 10
[02/12/2020 - 03:30:25AM] [slamainscr <sla_Main (0A042D62)>]: finished maintenance
[02/12/2020 - 03:30:26AM] SSX: Forced Starting Scent of Sex
[02/12/2020 - 03:30:26AM] SSX: Time to wait for the next update = 91 seconds
[02/12/2020 - 03:30:26AM] SSX: started
[02/12/2020 - 03:30:26AM] SSX: Factions Cleaner going to active state
[02/12/2020 - 03:30:26AM] SSX: Cell Scanner going to active state
[02/12/2020 - 03:30:26AM] SSX: New cell=Gallows Rock
[02/12/2020 - 03:30:26AM] SSX: The scan mode is not set to Alias, going to inactive state
[02/12/2020 - 03:30:27AM] SSX: The scan mode is not set to Cloak, going to inactive state
[02/12/2020 - 03:30:27AM] SSX: Cell Scanner: Time to wait for the next update = 60.000000 seconds
[02/12/2020 - 03:30:27AM] Scent of Sex Initialized - 1.4h
[02/12/2020 - 03:30:28AM] SSX: scanner completed
[02/12/2020 - 03:30:28AM] SSX: scanner completed
[02/12/2020 - 03:30:28AM] SSX: New cell=Gallows Rock
[02/12/2020 - 03:30:28AM] SSX: Factions Cleaner START: cycles S:20 F: 0
[02/12/2020 - 03:30:28AM] SSX: Scanning of actors for MCM started
[02/12/2020 - 03:30:28AM] SSX: scanning of animation tags started
[02/12/2020 - 03:30:28AM] SSX: Factions Cleaner: 0 SCANNED cleaned
[02/12/2020 - 03:30:28AM] SSX: Factions Cleaner DONE: cycles S:0 F: 0
[02/12/2020 - 03:30:28AM] SEXLAB - AnimCache: HIT[17] -- 1:-1:-1:-1:False
[02/12/2020 - 03:30:29AM] SEXLAB - AnimCache: MISS -- 1:-1:-1:-1:TRUE
[02/12/2020 - 03:30:29AM] SSX: Cleaner events registered
[02/12/2020 - 03:30:30AM] SEXLAB - AnimCache: HIT[18] -- 2:-1:-1:-1:False
[02/12/2020 - 03:30:32AM] SSX: Scanning of mods for MCM started
[02/12/2020 - 03:30:32AM] ERROR: Unable to call RegisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [None].FXDragonBloodDamageScript.RegisterForAnimationEvent() - "<native>" Line ?
    [None].FXDragonBloodDamageScript.USSEP_RegisterForAnimationEvents() - "FXDragonBloodDamageScript.psc" Line 199
    [None].FXDragonBloodDamageScript.OnEffectStart() - "FXDragonBloodDamageScript.psc" Line 93
[02/12/2020 - 03:30:32AM] warning: Assigning None to a non-object variable named "::temp10"
stack:
    [None].FXDragonBloodDamageScript.USSEP_RegisterForAnimationEvents() - "FXDragonBloodDamageScript.psc" Line 199
    [None].FXDragonBloodDamageScript.OnEffectStart() - "FXDragonBloodDamageScript.psc" Line 93
[02/12/2020 - 03:30:32AM] SEXLAB - AnimCache: HIT[19] -- 2:-1:-1:-1:TRUE
[02/12/2020 - 03:30:33AM] SEXLAB - AnimCache: HIT[2] -- 3:-1:-1:-1:False
[02/12/2020 - 03:30:34AM] SEXLAB - AnimCache: HIT[3] -- 3:-1:-1:-1:TRUE
[02/12/2020 - 03:30:34AM] SEXLAB - AnimCache: HIT[6] -- 4:-1:-1:-1:False
[02/12/2020 - 03:30:34AM] SEXLAB - AnimCache: MISS -- 4:-1:-1:-1:TRUE
[02/12/2020 - 03:30:35AM] SEXLAB - AnimCache: HIT[8] -- 5:-1:-1:-1:False
[02/12/2020 - 03:30:35AM] SEXLAB - AnimCache: MISS -- 5:-1:-1:-1:TRUE
[02/12/2020 - 03:30:36AM] SSX: Scanning of animation tags completed
[02/12/2020 - 03:30:36AM] SSX: Elapsed time for Tags scanning OnPlayerLoadGame = 7.409996
[02/12/2020 - 03:30:36AM] SSX: Scanning of actors for MCM completed
[02/12/2020 - 03:30:36AM] SSX: Elapsed time for MCM Actors scanning OnPlayerLoadGame = 7.706001
[02/12/2020 - 03:30:36AM] SSX: Scanning of mods for MCM completed
[02/12/2020 - 03:30:36AM] SSX: Elapsed time for MCM Mods scanning and sorting = 4.215004
[02/12/2020 - 03:30:52AM] ERROR: Unable to call Delete - no native object bound to the script object, or object is of incorrect type
stack:
    [Item 1 in container  (00000014)].zadHiderScript.Delete() - "<native>" Line ?
    [Item 1 in container  (00000014)].zadHiderScript.OnContainerChanged() - "zadHiderScript.psc" Line 5
[02/12/2020 - 03:31:33AM] MilkModEconomy MME_Status: Scripts are running, Unsetting StorageUtil MME_ScriptsStarted, shutting down
[02/12/2020 - 03:31:54AM] VM is freezing...
[02/12/2020 - 03:31:54AM] VM is frozen
[02/12/2020 - 03:31:54AM] Saving game...
[02/12/2020 - 03:31:55AM] VM is thawing...
[02/12/2020 - 03:31:55AM] SOS Actor Schlongify: new schlong for Silver Hand got schlong index 0 size 9
[02/12/2020 - 03:31:55AM] SlaveTatsExtra: Applying per-cell extra customization...
[02/12/2020 - 03:31:55AM] SlaveTatsExtra: No targets. Aborting.
[02/12/2020 - 03:31:55AM] SOS Actor Schlongify: new schlong for Silver Hand got schlong index 0 size 10
[02/12/2020 - 03:31:55AM] warning: Property reanimateSpell on script TheCleanersMonitorEffect attached to Active effect 2 on  (000ED2CD) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:31:55AM] warning: Property reanimateSpell on script TheCleanersMonitorEffect attached to Active effect 2 on  (000EEB51) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:31:55AM] warning: Property reanimateSpell on script TheCleanersMonitorEffect attached to Active effect 4 on  (000ECB4A) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:31:55AM] warning: Property reanimateSpell on script TheCleanersMonitorEffect attached to Active effect 2 on  (000A9543) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:31:55AM] warning: Property reanimateSpell on script TheCleanersMonitorEffect attached to Active effect 4 on  (000FF8CC) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:31:55AM] warning: Property reanimateSpell on script TheCleanersMonitorEffect attached to Active effect 4 on  (0001A691) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:31:55AM] warning: Property reanimateSpell on script TheCleanersMonitorEffect attached to Active effect 2 on  (000A9545) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:31:55AM] warning: Property reanimateSpell on script TheCleanersMonitorEffect attached to Active effect 2 on  (000EEAF0) cannot be initialized because the script no longer contains that property
[02/12/2020 - 03:31:55AM] SOS Actor Schlongify: new schlong for Silver Hand got schlong index 0 size 8
[02/12/2020 - 03:31:56AM] SOS Actor Schlongify: new schlong for Silver Hand got schlong index 0 size 4
[02/12/2020 - 03:31:56AM] SOS Actor Schlongify: new schlong for Werewolf got schlong index 0 size 7
[02/12/2020 - 03:31:56AM] SOS Actor Schlongify: new schlong for Silver Hand got schlong index 0 size 10
 

 

Need more info dude. Do you CTD randomly or around one spot? If it's in just one area, try to spawn NPCs in that area one by one. especially if there are ones from Ordinary Women.

 

player.placeatme xxxxxxxx << ID of npc  >> find them on uesp wiki

 

 

Link to comment
5 hours ago, ssskn said:

Need more info dude. Do you CTD randomly or around one spot? If it's in just one area, try to spawn NPCs in that area one by one. especially if there are ones from Ordinary Women.

 

player.placeatme xxxxxxxx << ID of npc  >> find them on uesp wiki

Thanks for the advice, I've found the problem, it was the Creature Framework issue or MNC to be exact. It tried to schlongify the werewolf and lead to CTD. As for now, the CF still "trying" to downgrade itself for over half an hour now. It seems the problem was from MNC so I will head over that thread for more info.

Link to comment
12 hours ago, tasairis said:

Oh yay, the version 43/44 discussion again... I'll try to only add parts that haven't been covered already.

 

After SSE came out and people started learning about the form version 43/44 issue, a couple prominent Skyrim figures came out and said that version 43 files were not safe and needed to be upgraded through the SE Creation Kit. Other people said they had 43s that worked fine. Your mileage may vary. For a while I also thought that converting to form 44 was also a good idea, and this guide list reflected that (still kinda does). Like has been said: CK 64 does more work with validating plugin files and may complain on a form 43 that CK 86 would have let slide. That alone is a benefit. However most people resaving in CK are going to be users who don't really know or care to identify problems and fix them, and there's some degree of difficulty in saving properly as demonstrated by the number of times someone has (unverifiably) said that converting broke the mod.

So I'm going to reword the ESP and ESM bits in the guide list to downplay using CK even more.

 

And as pointed out, the official ESMs don't say version 44 for everything. That's because the file header's version number covers the file header itself*, and in fact each version number in each form covers just the form itself. As a programmer I can fairly confidently presume that the number indicates the structure of the data in the file - like literally, "version 43 means the next X bytes are this thing, the next Y bytes are this thing" and so on. That's also why some advice that came about early, and IIRC supported by Wrye Bash, was to just go in and manually set the version number in the file to 44. That's definitely bad, but fortunately I haven't seen that advice offered anytime recently.

 

That's also relevant to the question about setting ESL on a form 43: it likely will not work, as the ESL flag was introduced in Skyrim SE** with form version 44. The game should not recognize the ESL flag and should load the mod into the regular 00-FD space. (That should be easy to confirm.) Or knowing Bethesda, the game could very well accept the flag even though it's not technically valid. Worst case the game would CTD on startup, but I'd be surprised.

 

So current best practice with converting mods is to use the ESP as it is without saving in CK, then if there are issues, consider using CK to see if it can identify any problems. But also as said, issues are rather unlikely to be caused by the ESP itself and are probably something else instead.

 

Assets like meshes and textures always need to be checked. Everybody agrees on that one.

 

 

* It may also serve as saying the highest version number supported by the editor that saved the file (ie, CK), thus also meaning the highest version number in the stored forms. Open question: what happens if a form is saved in CK, including some record that is itself version 44, and where the record has a breaking format change from the previous version (and where the record has data that would be affected by that change), and the file header is manually set to be version 43.

** Actually happened with FO4. I believe there was an update to it made after the original release to support ESLs, then that update also made its way to SSE.

 

 

PS: I'm also one of those people who have a number of form 43 plugins and a rock-solid game, so I promise form 43s are quite safe.

Just to say it: I worked on a clothing replacer a while ago and swithched back and forth between the old and the new CK and this was never a problem. The esp itself worked in LE and SE, no matter which CK version I used to build it.... 

Link to comment
9 hours ago, fiinhvip said:

Thanks for the advice, I've found the problem, it was the Creature Framework issue or MNC to be exact. It tried to schlongify the werewolf and lead to CTD. As for now, the CF still "trying" to downgrade itself for over half an hour now. It seems the problem was from MNC so I will head over that thread for more info.

Remove CF, install latest MNC SE (has CF built in).

Link to comment
22 hours ago, tasairis said:

Oh yay, the version 43/44 discussion again... I'll try to only add parts that haven't been covered already.

 

After SSE came out and people started learning about the form version 43/44 issue, a couple prominent Skyrim figures came out and said that version 43 files were not safe and needed to be upgraded through the SE Creation Kit. Other people said they had 43s that worked fine. Your mileage may vary. For a while I also thought that converting to form 44 was also a good idea, and this guide list reflected that (still kinda does). Like has been said: CK 64 does more work with validating plugin files and may complain on a form 43 that CK 86 would have let slide. That alone is a benefit. However most people resaving in CK are going to be users who don't really know or care to identify problems and fix them, and there's some degree of difficulty in saving properly as demonstrated by the number of times someone has (unverifiably) said that converting broke the mod.

So I'm going to reword the ESP and ESM bits in the guide list to downplay using CK even more.

 

And as pointed out, the official ESMs don't say version 44 for everything. That's because the file header's version number covers the file header itself*, and in fact each version number in each form covers just the form itself. As a programmer I can fairly confidently presume that the number indicates the structure of the data in the file - like literally, "version 43 means the next X bytes are this thing, the next Y bytes are this thing" and so on. That's also why some advice that came about early, and IIRC supported by Wrye Bash, was to just go in and manually set the version number in the file to 44. That's definitely bad, but fortunately I haven't seen that advice offered anytime recently.

 

That's also relevant to the question about setting ESL on a form 43: it likely will not work, as the ESL flag was introduced in Skyrim SE** with form version 44. The game should not recognize the ESL flag and should load the mod into the regular 00-FD space. (That should be easy to confirm.) Or knowing Bethesda, the game could very well accept the flag even though it's not technically valid. Worst case the game would CTD on startup, but I'd be surprised.

 

So current best practice with converting mods is to use the ESP as it is without saving in CK, then if there are issues, consider using CK to see if it can identify any problems. But also as said, issues are rather unlikely to be caused by the ESP itself and are probably something else instead.

 

Assets like meshes and textures always need to be checked. Everybody agrees on that one.

 

 

* It may also serve as saying the highest version number supported by the editor that saved the file (ie, CK), thus also meaning the highest version number in the stored forms. Open question: what happens if a form is saved in CK, including some record that is itself version 44, and where the record has a breaking format change from the previous version (and where the record has data that would be affected by that change), and the file header is manually set to be version 43.

** Actually happened with FO4. I believe there was an update to it made after the original release to support ESLs, then that update also made its way to SSE.

 

 

PS: I'm also one of those people who have a number of form 43 plugins and a rock-solid game, so I promise form 43s are quite safe.

I used to believe that form 43 was super bad for SE, but have since realized the error in my thinking. My conversions are a mixed bag of Form 44 and Form 43, whichever works best for the individual mod, but prioritize form 44. Unfortunately I can no longer run oldrim (LE) on my PC for some reason, so I can only gauge functionality in SE, so I have to rely on others to tell me if there's function loss. One day this whole debate will hopefully be a moot point, due to modders creating new mods solely in SE.

Link to comment
5 hours ago, fiinhvip said:

Well with the latest MNC 12.2 the game no longer ctd with werewolf but some people said CF in MNC have some problem so I still keeping CF for the time being

You can install the latest MNC, just install pfiffy's CF SE conversion over it. Best we can do with it until someone finds out why the dicks don't always show up.

 

It doesn't actually break anything if you do use the new one, it's just that it looks a little odd to see something going at it with no junk. It's also inconsistent. Usually it will work for a bit if you rescan after seeing the issue, but any time there's two or more, one of them won't have the aroused mesh.

Link to comment
1 hour ago, zarantha said:

You can install the latest MNC, just install pfiffy's CF SE conversion over it. Best we can do with it until someone finds out why the dicks don't always show up.

 

It doesn't actually break anything if you do use the new one, it's just that it looks a little odd to see something going at it with no junk. It's also inconsistent. Usually it will work for a bit if you rescan after seeing the issue, but any time there's two or more, one of them won't have the aroused mesh.

That answers why yesterday everything had dicks and today some animals don't. Wolves do, dogs don't, using the old CF+ new MNC

Link to comment
19 hours ago, zarantha said:

You can install the latest MNC, just install pfiffy's CF SE conversion over it. Best we can do with it until someone finds out why the dicks don't always show up.

 

It doesn't actually break anything if you do use the new one, it's just that it looks a little odd to see something going at it with no junk. It's also inconsistent. Usually it will work for a bit if you rescan after seeing the issue, but any time there's two or more, one of them won't have the aroused mesh.

I just ran into that for the first time last night with Meeko, it was the Meeko overhaul, so I don't know if that changes things. Though the dogs from Animal Mansion (When I am testing that) seem to work fine, so it's not all dogs. I was using slightly older versions of both CF and MNC, and upgraded just now, doing the overwrite thing that was suggested. *crosses fingers*

Link to comment
On 2/11/2020 at 3:23 PM, fred200 said:

1) Don't ever remove a mod without rolling back to a save before installing that mod

2) Don't ever drop an LE mod into Skyrim SE to "see if it works".

3) If you do break a save, and have no new mods, all you can do is roll back to an earlier save that does not CTD. A Save Cleaner might help - but might not. Some mods take a long time to kill a save. Really bad sign is if your save game size is getting bigger.

1) [citation please] (facts, not anecdotes) This is really misinformed.

2) There is literally nothing wrong with this. It's very clear you have no idea what you're talking about, so I'm keen to hear why this is bad. Again: [citation please] (facts, not anecdotes)

3) Saves and cosaves get bigger over time. It happens. Some mods actually have functions that scrub useless crap from their mod from the save/cosave. But, not all. Either way, it in an environment with 100 to 200 mods, saves are going to grow, it's not avoidable. Understanding how saves work, and knowing how to clean them properly, is key.

 

It's pretty clear you really shouldn't be offer any kind of informed opinion on this topic. Uncle Harlan has some words for you:

 

 

But here's some facts for you, or anyone else pounding this sand pile, or if you're crying in the shower about this:

 

I have what amounts to a 300+ mod load. It's stable. I haven't even gotten to the point where I've merged anything yet. Last CTD I had was literally just a badly sized dds file from a pose mod. The fix for that was ezpz lemon squeezy.

 

image.png.e31413806b3918a059c068ebb6ae1af6.png

 

Now, I have ESL's, and I also have ESL flagged ESP's. On my recent playthrough, I actually rolled back one ESL back into an ESP. I deactivated, clean saved, Fallrimtools->Cleaned up Orphaned Instances-> reinstalled original mod, went about my bidnezz. I'm still play this save game just fine. Understanding the hows and whys of save files is crucial. But what you're spewing...that ain't it chief.

 

Let's also talk about 43 vs 44 while we're here. Because I still see people spewing this load of hogwash. I only ever switched to a 44 as a very last resort, a "hail mary" pass, so to speak. I do this even more rarely now. Fact is, SSE is just really goddamned flexible when it comes to old mods.

 

Case in point:

 

image.png.0f3df529872305be46791f7eaf808856.png

 

:exclamation: OH NOES. SOMEONE CALL THE ESP POLICE! IM RUNNING A FORM 43 AS A FLAGGED ESL FILE! ALERT PETE HINES AND UNLEASH THE MICROTRANSACTION WOLVES! :exclamation:

 

Seriously, people need to shut the fuck up about 43 vs 44. People also need to actually understand what the use case is for moving to 44 when handling an oldrim mod. The use case for it is rare, unless you actually you know...make mods, and know why 44 is necessary when moving your own mod over to SE from LE. If this is not what you're doing...then please, do us all a favor por favor and take a full tablespoon of 'shut the fuck up' and get 8 hours of sleep, and then come back. ;)

 

That's right. I said it: unless you make mods, and are moving your personal Oldrim mod to SE, and introducing new data to the mod necessitating form 44...you really have no business even offering up an opinion on the topic. "Save it as a 44" or "open it up in the latest Creation Kit and just save it" shouldn't ever come out in a post of yours. If it does, everyone in that thread should surround you, point at you and laugh. 

 

TL;DR: unless you're someone moving your own mod to SSE...this shouldn't even concern you, let alone be a topic you speak about here.

 

Like, this wouldn't be so bad....but at this rate, it's a game of telephone. The same bad information keeps being repeated, differently, and with more bullshit every cycle.

 

But hey, if you have actual proof of why a makeup mod with nothing but a script file, and a texture directory will damage your game if it's not a 44, or why a simple overlay mod with an esp that is nothing but path pointers and fragments MUST BE a 44 ... present your proof:

 

No log? No Proof? No empirical evidence we can use to repeat the test and come out with the same result? Then do us all a favor and shut the fuck up about this.

 

But seriously. I'd love to move on from yet another goddamned treatise on the whole topic of 43 vs 44. So, you know...I included pictures and diagrams. Feel free to use this post as a reference. Look, I even included a picture of a pony:

 

image.png.45a00d8dc513ca8052b9c2cafbef2e94.png

 

See? How majestic!

 

Can we seriously just convert mods without this coming up every month? Can we not just optimize our nifs, resize our textures, convert our anims...bitch about CAO's directory traversal methods in peace...without some yahoo coming in with Hand Waving Freak Outery about form 43, and how oldrim mods will come into your house at night and fuck your wife or your waifu pillow if you try them in SSE even though they're just a few scripts with an esp pointer?

 

Sorry, got a bit carried away here. But...seriously. Can people just knock this shit off? Every month, it's either 44 vs 43, or FNIS behavior limits in respect to animation....people need facts, not anecdotes. They need solid information not "well, I did this once when the moon was full and I got a CTD on the 15th of last seed while getting raped by a Giant in the outskirts of Whiterun....I think it's because I didn't resave it as a 44 in the CK!"

 

Cheers!

 

 

Link to comment
4 hours ago, jimmywon34 said:

i'm seeing HDT-SMP link that goes to aers page but he then says you have to look up details on other mod pages and i'm not seeing anywhere on those pages where the new 1.5.97 hdt smp physics and framework DLL's are for the latest version of the game. any help?

Unless you're asking about something related to HDT-SMP that I'm not aware of, the latest version is in the Nexus site for Skyrim SE.

 

Edit: here is the zelda https://www.nexusmods.com/skyrimspecialedition/mods/30872

 

Link to comment
8 hours ago, dontknowdontcaredontask said:

Unless you're asking about something related to HDT-SMP that I'm not aware of, the latest version is in the Nexus site for Skyrim SE.

 

Edit: here is the zelda https://www.nexusmods.com/skyrimspecialedition/mods/30872

 

yea I got it figured out thx, thought we still needed the physics and framework DLL's that use to come with hydrogen's downloads.

Link to comment

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
×
×
  • Create New...

Important Information

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