Jump to content

Recommended Posts

Posted
17 minutes ago, dldrzz000 said:

Thanks for your fixes. I've played with your debug patch for 5 in-game hours and strangely got no "FW" papyrus logs. 

Then also will be playing with this debug scripts with hope to catch error with registerforsingleupdate error but I played many times before and didnt see kind of errors and because think it will be hard for me to catch it. You can then safely use FWUtility from debug folder because it even faster than variant in main folder because there removed additional check of attached cell and only using Is3Dloaded() but in script from main fixes added additional as was offered.

I was hoping the error with RegisterForSingleUpdate in FWAbilityBeeingFemale will be repeated and will be possible to see all values of variables from there and make normal fix but it always so when errors hiding and not occuring when it is need.

Posted
On 7/29/2019 at 2:17 AM, Tkc said:

Then also will be playing with this debug scripts with hope to catch error with registerforsingleupdate error but I played many times before and didnt see kind of errors and because think it will be hard for me to catch it. You can then safely use FWUtility from debug folder because it even faster than variant in main folder because there removed additional check of attached cell and only using Is3Dloaded() but in script from main fixes added additional as was offered.

I was hoping the error with RegisterForSingleUpdate in FWAbilityBeeingFemale will be repeated and will be possible to see all values of variables from there and make normal fix but it always so when errors hiding and not occuring when it is need.

New logs traced with debug patch.

 

 


[07/29/2019 - 06:41:03PM] Error: Unable to call RegisterForSingleUpdateGameTime - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0001A69F)].FWAbilityBeeingFemale.RegisterForSingleUpdateGameTime() - "<native>" Line ?
    [Active effect 5 on  (0001A69F)].FWAbilityBeeingFemale.InitState() - "FWAbilityBeeingFemale.psc" Line 417
    [Active effect 5 on  (0001A69F)].FWAbilityBeeingFemale.InitValues() - "FWAbilityBeeingFemale.psc" Line 338
    [Active effect 5 on  (0001A69F)].FWAbilityBeeingFemale.BeeingFemale() - "FWAbilityBeeingFemale.psc" Line 211
 

0001A69F is a persistent female character.

 


[07/29/2019 - 06:41:39PM] Error: Incorrect number of arguments passed. Expected 5, got 4. 
stack:
    [None].FWShowStats.execute() - "FWShowStats.psc" Line 72
    [None].FWShowStats.OnEffectStart() - "FWShowStats.psc" Line 12
 

Occurs when using the illusion debug spell to show character information, low priority issue. 

 



[07/29/2019 - 06:47:26PM] warning:  (0001A69A): Ref is in an unloaded cell, so it cannot cast spells..
stack:
    [ (14006EBD)].SPELL.Cast() - "<native>" Line ?
    <unknown self>.FWUtility.ActorAddSpell() - "FWUtility.psc" Line 759
    [Active effect 4 on  (0001A69A)].FWAbilityBeeingFemale.castMentrualBlood() - "FWAbilityBeeingFemale.psc" Line 1194
    [Active effect 4 on  (0001A69A)].FWAbilityBeeingFemale.OnUpdateFunction() - "FWAbilityBeeingFemale.psc" Line ?
    [Active effect 4 on  (0001A69A)].FWAbilityBeeingFemale.OnUpdateGameTime() - "FWAbilityBeeingFemale.psc" Line 288
 

In FWUtility, around line 758, it seems that only "Is3DLoaded()" is not enough. 



[07/29/2019 - 06:48:16PM] Error: Cannot call GetLeveledActorBase() on a None object, aborting function call
stack:
    [Active effect 5 on  (00000014)].fwabilitybeeingmale.OnSleepStart() - "FWAbilityBeeingBase.psc" Line 133
[07/29/2019 - 06:48:16PM] Error: Cannot call GetSex() on a None object, aborting function call
stack:
    [Active effect 5 on  (00000014)].fwabilitybeeingmale.OnSleepStart() - "FWAbilityBeeingBase.psc" Line 133
[07/29/2019 - 06:48:16PM] warning: Assigning None to a non-object variable named "::temp30"
stack:
    [Active effect 5 on  (00000014)].fwabilitybeeingmale.OnSleepStart() - "FWAbilityBeeingBase.psc" Line 133

 

Maybe aSexPartnerOnSleep check for none should be added. 

 

 

[07/30/2019 - 04:46:17AM] Error: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 4 on  (02010DE9)].FWAbilityBeeingFemale.RegisterForSingleUpdate() - "<native>" Line ?
    [Active effect 4 on  (02010DE9)].FWAbilityBeeingFemale.OnUpdate() - "FWAbilityBeeingFemale.psc" Line 1841

 

IsPlayer check around line 180 in FWAbilityBeeingFemale seems needed.. 

 

I think another tester is needed because I only play male characters.

      PS:: Plugin of Special Edition for 1.5.80 has come on Nex and I've been running smoothly. 

 

Posted
5 hours ago, dldrzz000 said:

[07/29/2019 - 06:41:03PM] Error: Unable to call RegisterForSingleUpdateGameTime - no native object bound to the script object, or object is of incorrect type
stack:
    [Active effect 5 on  (0001A69F)].FWAbilityBeeingFemale.RegisterForSingleUpdateGameTime() - "<native>" Line ?
    [Active effect 5 on  (0001A69F)].FWAbilityBeeingFemale.InitState() - "FWAbilityBeeingFemale.psc" Line 417

 

5 hours ago, dldrzz000 said:

0001A69F is a persistent female character.

There is PlayerTimer check condition which is for player circles working and must not be working for female npcs I suppose but not 100% sure if it is also for parallell npc circles. Added IsPlayer there but if it will stop npc circles then will need to revert.

 

5 hours ago, dldrzz000 said:

[07/29/2019 - 06:41:39PM] Error: Incorrect number of arguments passed. Expected 5, got 4. 
stack:
    [None].FWShowStats.execute() - "FWShowStats.psc" Line 72
    [None].FWShowStats.OnEffectStart() - "FWShowStats.psc" Line 12
 

Occurs when using the illusion debug spell to show character information, low priority issue. 

Fixed this and one couple other problems in this script.

 

5 hours ago, dldrzz000 said:

[07/29/2019 - 06:47:26PM] warning:  (0001A69A): Ref is in an unloaded cell, so it cannot cast spells..
stack:
    [ (14006EBD)].SPELL.Cast() - "<native>" Line ?
    <unknown self>.FWUtility.ActorAddSpell() - "FWUtility.psc" Line 759
    [Active effect 4 on  (0001A69A)].FWAbilityBeeingFemale.castMentrualBlood() - "FWAbilityBeeingFemale.psc" Line 1194
    [Active effect 4 on  (0001A69A)].FWAbilityBeeingFemale.OnUpdateFunction() - "FWAbilityBeeingFemale.psc" Line ?
    [Active effect 4 on  (0001A69A)].FWAbilityBeeingFemale.OnUpdateGameTime() - "FWAbilityBeeingFemale.psc" Line 288
 

In FWUtility, around line 758, it seems that only "Is3DLoaded()" is not enough. 

Ok. Then removed this script from debug folder and little changed order in main.

 

5 hours ago, dldrzz000 said:

[07/29/2019 - 06:48:16PM] Error: Cannot call GetLeveledActorBase() on a None object, aborting function call
stack:
    [Active effect 5 on  (00000014)].fwabilitybeeingmale.OnSleepStart() - "FWAbilityBeeingBase.psc" Line 133
[07/29/2019 - 06:48:16PM] Error: Cannot call GetSex() on a None object, aborting function call
stack:
    [Active effect 5 on  (00000014)].fwabilitybeeingmale.OnSleepStart() - "FWAbilityBeeingBase.psc" Line 133
[07/29/2019 - 06:48:16PM] warning: Assigning None to a non-object variable named "::temp30"
stack:
    [Active effect 5 on  (00000014)].fwabilitybeeingmale.OnSleepStart() - "FWAbilityBeeingBase.psc" Line 133

As I understood from script the error will not be shown if player is female and only can be shown for player male when near was found none of any woman npc.

 

 

Updated archive of extras with additional fixes and tweaks here.

Posted

All right, perhaps the last problem I've met is that ramdom inseminations among NPCs does not work, even if I cancel locational check and dramatically increase RandomArray number of trying in FWSystem. It's strange that it used to work well in 2.7.x, or do I miss somthing in MCM setting? 

 

(Except sometimes still got occasional papyrus errors about RegisterForAnimationEvent or RegisterfForModEvent that related to delay of cloak spells, the problem that someone tells me nothing we can do. Increase update interval in FWAbilityBFOnMagicEffectApply may relieve that?)

 

Edit: The random insemination problem is that random insemination event cannot occur when player is sleeping. 

Posted

I'm trying to upgrade from an older version of the patch to 14. Think it was 11.

Disabled the esp file, and made a full script cleanup with resaver.

 

But now, I don't think it's working. Doesnt list Being Female on the effects list, and player information on the MCM menu says it has nothing.

Plus it used to display a message everytime my character had sex, and now it doesnt.

Also the addon layer used to list a few things, the basic one and the RS children one, and now it's empty.

 

Tried a brand new game, and these problems persist.

Another symptom is that the MCM menu never seems to initialize. The only way to make it work is to click "force activation". Before that, it doesnt warn of any errors or anything, it's just stuck on "loading" saying the mod is disabled.

 

Is any of this normal?

 

EDIT:

NVM... Did a complete reinstall including mod and patches... seems to be working better now.

Still says BF animations are not installed, but I'm hoping a FNIS regeneration should fix that.

Posted

Thanks for the update.

 

I just tested for a couple of cycles on a non cleaned game (i.e. just removed 14b and added 14c) and it all seems to work correctly, so looks like it doesn't need a clean game :classic_smile:

Posted
3 hours ago, Slorm said:

Thanks for the update.

 

I just tested for a couple of cycles on a non cleaned game (i.e. just removed 14b and added 14c) and it all seems to work correctly, so looks like it doesn't need a clean game :classic_smile:

I was just wondering that - thanks for the info Slorm!

Posted

So with Patch 14c, it appears that NPC bellies are not updating correctly, or even at all. Before, this problem was remedied by either waiting for a few hours, or reloading the game with the scanner 'update on load' option via SexLab Inflation Network. Now either methods don't appear to be working. Checking node values via SLIF on Beeing Female has all nodes listed as 1.000, so I guess there's an updating hangup somewhere in the scripts. Female PCs are still functioning normally.

 

My BFAP add-on belly-fix spell only temporarily fixes both the belly / breast nodes, but the SLIF scanner will quickly set them back at 1.00, as that's the value it's reading from Beeing Female I suppose. Updating BFAP to work with SLIF sounds like it would work, but I have no idea how to do that, as it's been years since I opened the CK.

 

Anyone else experiencing the same symptoms?

Posted
2 hours ago, Sleepy_Soul said:

So with Patch 14c, it appears that NPC bellies are not updating correctly, or even at all. Before, this problem was remedied by either waiting for a few hours, or reloading the game with the scanner 'update on load' option via SexLab Inflation Network. Now either methods don't appear to be working. Checking node values via SLIF on Beeing Female has all nodes listed as 1.000, so I guess there's an updating hangup somewhere in the scripts. Female PCs are still functioning normally.

 

My BFAP add-on belly-fix spell only temporarily fixes both the belly / breast nodes, but the SLIF scanner will quickly set them back at 1.00, as that's the value it's reading from Beeing Female I suppose. Updating BFAP to work with SLIF sounds like it would work, but I have no idea how to do that, as it's been years since I opened the CK.

 

Anyone else experiencing the same symptoms?

Stupid question sorry, will this happen on a new game for you?

Posted

Any UUNP and BF user here ?  I noticed the belly won't grow unless I use the "UUNP Special" body, is there a way to use BF with a regular UUNP body ?

Posted
6 hours ago, mangalo said:

Any UUNP and BF user here ?  I noticed the belly won't grow unless I use the "UUNP Special" body, is there a way to use BF with a regular UUNP body ?

UUNP orginal dont have Belly bone, but in game you can change Under Pregnancy & Birth > Visual Scaling > Change Skeleton (Default) to Skeleton (NiOverride). Dont know exactly how this works. Best is to update your game to UUNP Special.

Posted
28 minutes ago, Swe-DivX said:

UUNP orginal dont have Belly bone, but in game you can change Under Pregnancy & Birth > Visual Scaling > Change Skeleton (Default) to Skeleton (NiOverride). Dont know exactly how this works. Best is to update your game to UUNP Special.

Thanks, I'll try the NiOverride setting.  I'm actually using the Special body but I want to get rid of it because I'm having issues with HDT (on bodies - hanging boobs and flat bottoms).  Fixing the Special body in my game would be another option but it's much more complex than simply using the original body.

Posted
35 minutes ago, mangalo said:

Thanks, I'll try the NiOverride setting.  I'm actually using the Special body but I want to get rid of it because I'm having issues with HDT (on bodies - hanging boobs and flat bottoms).  Fixing the Special body in my game would be another option but it's much more complex than simply using the original body.

I switched to Body All-in-One UUNP HDT AP 4.0 and now i have nearly non crashes with 600 mods. Still have the flapping around when weight on armor and body don't match. Most on the ass. ? Trying to remove HDT breast, never got it working.

Posted
19 hours ago, Swe-DivX said:

Stupid question sorry, will this happen on a new game for you?

Yep, this was on a new game, with several other new mods installed onto my 'stable' config, which was getting a bit bland lately. Don't think any of them would conflict, but perhaps the increased script load caused something to break on the NPC updating side.

 

If it's just me, then that's what I'm pinning it on.

Posted
45 minutes ago, aspirine2 said:

 is there somthing wrong between this mod and Sos ??

? Not that I am aware of it. Neither the light nor the full version collided for me with BF.

Posted
11 minutes ago, worik said:

? Not that I am aware of it. Neither the light nor the full version collided for me with BF.

game run smooth until i get pc pregnant ..after that whenever i load that save game ctd ...uninstalled BF mod then loaded the save but got a message forcing me to reinstall SOS ..!!

Posted
8 minutes ago, aspirine2 said:

got a message forcing

:classic_huh: I never heard of such a message. Now I wonder what that woud be. ?

Aside form that, to my knowledge (would need to check that later today) they don't even have any colliding files.

Create an account or sign in to comment

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

Create an account

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

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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