Duke Patrick's - Actors Can Miss Now
Duke Patrick’s Nosferatu Class Vampires Mark II
Duke Patricks - Everyone Or Just Vampires Now Bob And Weave
The companion mod fix for a very obscure bug with the Isrunning command:
...to be clear the issue was with a vanilla bug using the vanilla command isrunning, and the CTD bug is triggered by companion mods enabling and then disabling the NPC in the same frame. Something the DEV did not except anyone to do. My Rev updateds simply will not run the isrunning command unless the NPC is detected moving around using other commands that do not have the bug.
Like so:
if (Target.IsMovingForward + Target.IsMovingLeft + Target.IsMovingRight + Target.IsMovingBackward + Target.IsInAir + Target.isjumping ) > 0
if target.isrunning == 1
;do stuff
endif
endif
NPC will not move in the frame after they have been disabled then enabled, this "after frame" is where the trouble occurs even though they are not disabled in that frame. Anyway...We can thank cdCooley for discovering this issue with companion mods.