Jump to content

Recommended Posts

I'm running into an issue: when I play as male and I use the create token spell on a dead body no animations start. It works on a 'clutter' corpse (those corpses laying around excitingly named "nord" and "Khajit" etc...), my guess is that it's because those actor's arn't considered dead by Sexlab; it's own debug spells also work on these corpses. Most of the time your spell doesn't work on an actor I killed (like a bandit).

 

Judging from the console output, your mod does what it's suppose to do, but sexlab doesn't seem to allow an animation to start with a dead actor.

Link to comment
15 hours ago, ExampleJohn said:

I'm running into an issue: when I play as male and I use the create token spell on a dead body no animations start. It works on a 'clutter' corpse (those corpses laying around excitingly named "nord" and "Khajit" etc...), my guess is that it's because those actor's arn't considered dead by Sexlab; it's own debug spells also work on these corpses. Most of the time your spell doesn't work on an actor I killed (like a bandit).

 

Judging from the console output, your mod does what it's suppose to do, but sexlab doesn't seem to allow an animation to start with a dead actor.

 

Ok, I was able to reproduce it, it's now corrected in the V1.93.1.

 

But I still don't understand why it was working sometime ;)

 

The translation of the dead body is still needed to accelerate SL. I'm going to hide that with FX, but don't have time now.

 

 

 

(please, if you have an issue/bug/something wrong, please include papyrus log)

 

 

Link to comment
1 hour ago, MrBravado_23 said:

Looking forward to future add-ons to this mod, had no complains other than it not working for the beast races (khajiit and argonian races). 

 

Hello,

I must admit that I've not tested with thoses races. Can I ask you to help me to figure out what is going on ? could you describe what is not working ( to be able to find the solution asap) ie is you player character is a khajiit and don't die / not goind ghost ..... it'll help me a lot.

 

thanks

 

Link to comment
6 hours ago, 62831853071795864769 said:

Yep, I love this mod for sure. Thanks again Nimuraa.

If I may request something in an update: Can you make a file folder for the alternate hairstyle, so that we can use our own? (I try recompiling scripts, but Creation Kit hates me.. I'm sure it hates everyone, but it especially has a disdain for me.)

 

I'm not sure to understand. Do you have an example, or do you know  a mod that do something like that ?

Link to comment

Hi,

 

I have a problem.

I have the mod enabled and it's in the MCM Menu but there isn't any quest starting...

Also i won't get any Necro Power for my PC.

Even with Tokens I won't appear as a ghost.

And i don't run any of the mods u mentoined are not compatible.

 

Pls help. ^^

Thank you :smiley:

Link to comment
1 hour ago, Tesdron3 said:

Hi,

 

I have a problem.

I have the mod enabled and it's in the MCM Menu but there isn't any quest starting...

Also i won't get any Necro Power for my PC.

Even with Tokens I won't appear as a ghost.

And i don't run any of the mods u mentoined are not compatible.

 

Pls help. ^^

Thank you :smiley:

 

 

No quest starting : it's normal, it's not done yet (working on it ;)  )

 

The power is not activated by default, you have to go to the MCM menu to enable it. If the MCM didn't show up, please wait, it should appears.

You may become a ghost by dying in fight, any other death is not valid ;)

 

 

Link to comment
9 hours ago, 62831853071795864769 said:

In your MCM menu, you have the option to put a nordhair01 if we used HDT hair (for the work around):

 

 

Would it possible to reference something like "data/meshes/AbsoluteNecro/PlaceHolderHair.nif" for example, in order so that we may use our own .nif file for hair. (It's fine if not, I'm just replacing my HairFemaleNord01 with my current hair anyway :P)

 

Try this. There is a directory for male and woman. try it, and tell me

Absolute_V1.93.2.7z

Link to comment
1 hour ago, Nimuraa said:

 

 

No quest starting : it's normal, it's not done yet (working on it ;)  )

 

The power is not activated by default, you have to go to the MCM menu to enable it. If the MCM didn't show up, please wait, it should appears.

You may become a ghost by dying in fight, any other death is not valid ;)

 

 

Thanks for the answer. :smiley:

I already activated the option `Necro Power`.

When I die (through combat ^^) I can simply go one without becoming a ghost and there is no interaction connected to the quest. 

I just won't die which is kinda handy though but not really what was intended. ;)

Link to comment
15 minutes ago, Tesdron3 said:

Thanks for the answer. :smiley:

I already activated the option `Necro Power`.

When I die (through combat ^^) I can simply go one without becoming a ghost and there is no interaction connected to the quest. 

I just won't die which is kinda handy though but not really what was intended. ;)

Do i have to eat the Tokens while in bleedout?

This might eplain some things... :'D

 

Edit: Nevermind I tried it out and same problem as before...

 

Link to comment
3 hours ago, 62831853071795864769 said:

Works beautifully, thanks dude.

Two problems though, if I am picky:

1.) Armor changed to iron armor upon death, but swapped back to my equipped armor once the necro act starts happening. Not a huge deal, and you probably already know this. But maybe it'd be better if naked; if swapping to the player armor upon death is not possible?

2.) Sometimes weird stuff happens when I die (sometimes my dead body spawns 100 meters away, sometimes my ghost has no hair, sometimes vertices are not weighed in [jagged mesh spikes into space], etc.) It feels like there is not enough time for the script to complete before the quest starts. This could be my issue (maybe papyrus latency in the .ini file). I'm not sure, I'll play around with it.

 

Anyway, thanks again, this is definitely the only DA mod I will ever use.

 

 

1) I rekill, and remove all items from the body before moving it every time. I rekill / remove all items from the body after evry sex act . sound like there is a lag somewhere.the code is the following

 

	KillPlayerCorpse() ;just in case it'll awake (kill and remove all items )

	Utility.Wait(0.5)
	;Equipe the body with player clothes
	EquipBody()
	Utility.Wait(0.5)

	; move the body to the player 
	MoveWithED(PlayerBody, BodyPos)

I can increase the wait time but I'm not sure it may help

 

2) Hum; send me your papyrus log. FYI here is my papyrus section from my skyrim.ini

[Papyrus]
fUpdateBudgetMS=1.6
fExtraTaskletBudgetMS=1.6
fPostLoadUpdateTimeMS=1000.0
iMaxMemoryPageSize=8192
iMinMemoryPageSize=256
iMaxAllocatedMemoryBytes=8388608 
bEnableLogging=1
bEnableTrace=1
bLoadDebugInformation=1

 

 

 

Link to comment
3 hours ago, 62831853071795864769 said:



Eventually, after he has walked over your corpse about 12 times, he'll realize you are dead and ask what he should do. You tell him to have sex with your dead body because it's the only way to bring yourself back to life (excluding the minor fact it'll cost him his life in exchange)

 

hints, there is timeout for the trigger area, so if it's noit triggering, move away from your body 10 seconds, and walk back to your body. You may also want to walk back to the necroist to have the forcegreet to trigger.

 

Link to comment
  • 1 month later...

Is this mod suppose to trigger a bleedout animation? I disabled all my other deathproof mods.

 

I seem to be stuck in bleedout mode, also I have succubus heart (dont got their death alt enabled though) and they will rape during the bleedout but then I just teleport to some place with no blody in the sky with nothing but grass. This sound familiar?


 

Skyrim.esm
Update.esm
Dawnguard.esm
HearthFires.esm
Dragonborn.esm
Skyrim Project Optimization - Full Version.esm
Unofficial Skyrim Legendary Edition Patch.esp
ETaC - RESOURCES.esm
WM Flora Fixes.esp
SleepingDangers-SandsofTime.esp
Lanterns Of Skyrim - All In One - Main.esm
CreatureFramework.esm
ZaZAnimationPack.esm
Schlongs of Skyrim - Core.esm
SexLab.esm
SexLabAroused.esm
ApachiiHair.esm
ApachiiHairFemales.esm
ApachiiHairMales.esm
SGHairPackBase.esm
Devious Devices - Assets.esm
Devious Devices - Integration.esm
Inn Girls Resources.esm
notice board.esp
Cutting Room Floor.esp
FNIS.esp
SkyUI.esp
iActivate.esp
iHUD.esp
RelightingSkyrim-NoScripts.esp
Atlas Compass Tweaks.esp
Bounty Gold.esp
Animations.esp
Customizable Camera.esp
Weapons & Armor Fixes_Remade.esp
ETaC - Complete.esp
ELE_Legendary_Lite.esp
SkyFem.esp
SOTAntiCTD.esp
EnhancedWetnessandPuddles.esp
Complete Alchemy & Cooking Overhaul.esp
RelightingSkyrim_DB.esp
3DNPC.esp
Tes Arena - Skyrim Frontier Fortress.esp
RelightingSkyrim_DG.esp
Skyrim Immersive Creatures.esp
Immersive Orc Strongholds.esp
Dual Sheath Redux.esp
towConversation.esp
HelmetToggle.esp
Unique Shops and Stores.esp
Helgen Reborn.esp
SkyrimCoinReplacerRedux.esp
Inns and Taverns.esp
SkyFalls + SkyMills.esp
SkyFem Patch Vanilla NPC Beauty.esp
ESFCompanions.esp
PermaZONESLegendaryBalanced.esp
Combat Evolved.esp
Skysunder Metamagics.esp
Immersive Solstheim.esp
Holidays.esp
ETaC - Complete Holidays Patch.esp
DW Enemies and Wanderers.esp
Ordinator - Perks of Skyrim.esp
Skyrim Immersive Creatures - DLC2.esp
Immersive Whiterun.esp
Immersive Merchandising.esp
Immersive Weapons.esp
FluffArgoniansDB.esp
Disparity.esp
WeaponsArmorFixes_ImmersiveWeapons_Patch.esp
Weapons & Armor_TrueWeaponsLvlLists.esp
Scarcity - Less Loot Mod.esp
HarvestOverhaul.esp
Populated Lands Roads Paths Legendary.esp
Point The Way.esp
more idle markers.esp
Inconsequential NPCs.esp
CFTO.esp
notice board - dragonborn patch.esp
Cloaks.esp
RelightingSkyrim_HF.esp
Atlas Legendary.esp
SL Sleeping Necro.esp
kuerteeGoldAjustment.esp
Lock Overhaul.esp
LootandDegradation.esp
Ish's Weighted Gold.esp
NARC.esp
RandomIdleAnimation.esp
dD - Realistic Ragdoll Force - Realistic.esp
RealisticRoomRental-Basic.esp
bugi_quicksave.esp
SimplyKnock.esp
SkyRealism - Encumbrance.esp
KS Hairdo's.esp
LovelyHairstylesCE.esp
SGHairPackAIO.esp
TradeBarter.esp
TKDodge.esp
TwoRings.esp
UIExtensions.esp
UltimateCombat.esp
attack commitment movement speed fluid 3.esp
Vivid Weathers.esp
Vivid Weathers - Falskaar.esp
Vivid Weathers - Lanterns of Skyrim Preset.esp
WetandCold.esp
WetandCold - Ashes.esp
1nivWICCloaks.esp
1nivWICCloaksCRAFT.esp
1nivWICCloaksNoGuards.esp
WondersofWeather.esp
YOT - Your Own Thoughts.esp
VioLens.esp
AddItemMenu2.esp
PC Head Tracking - MCM.esp
PC Head Tracking - Patch.esp
Scrolling Speed.esp
FNIS_PCEA2.esp
FNISSexyMove.esp
SOSRaceMenu.esp
SRG Enhanced Trees Activator.esp
Populated Skyrim Prisons Cells.esp
Battle Vixen Loadscreens SINGLE.esp
Battle Vixen Loadscreens.esp
Skyrim Particle Patch for ENB - Flame Atronach Fix.esp
BlackHorseCourier.esp
AHZmoreHUD.esp
RaceMenuMorphsUUNP.esp
12FemaleBrows.esp
RaceMenu.esp
RaceMenuPlugin.esp
HDT Female Hairstyles.esp
MoreNastyCritters.esp
SexLabNudeCreatures.esp
SexLabNudeCreaturesDB.esp
SexLabNudeCreaturesDG.esp
Schlongs of Skyrim.esp
SOS - VectorPlexus Muscular Addon.esp
SOS - VectorPlexus Regular Addon.esp
SOS - B3lisario UNP Addon.esp
SLAL_AnimationsByLeito.esp
SAP.esp
SLALAnimObj.esp
SLAnimLoader.esp
SexLabHorribleHarassment.esp
SC07SexLabRandomAttack.esp
EiriesOhmesRahtReplacer.esp
XPMSE.esp
Apropos.esp
SexLabDangerousNights2.esp
SexLab Brawling Rape.esp
SexLabFuck'EmUp.esp
SexLab_PaySexCrime.esp
SexLabTools.esp
SexLabWorkingGirl.esp
WetFunction.esp
TavernGames.esp
Inncreased Food.esp
Inncreased Food - CaCO patch.esp
prettypotions.esp
HonedMetal.esp
SexLab FadeBlack.esp
TaxesOfTheNineHolds.esp
MasculinizedLevelLists.esp
MasculinizedLevelListsDB.esp
Insignificant Object Remover.esp
Troll No Health Regen - SIC.esp
Merta Assassin Armor.esp
Sotteta Necromancer Outfit.esp
Tembtra Thief Armor.esp
EquipmentStateCopy&Rename.esp
Better Spell Learning.esp
Populated Cities Towns Villages Legendary.esp
ETaC - Dragon Bridge South.esp
Immersive Patrols II.esp
MusicMerge.esp
Merta Black Rose Armor.esp
TES ARENA AIO-Clutting-patch.esp
Immersive Wenches.esp
TimingIsEverything.esp
Immersive Wenches -Immersive Citizens AI Overhaul Patch-.esp
GTFO My Room - Normal.esp
Immersive Citizens - AI Overhaul Lite.esp
TheAmazingWorldOfBikiniArmor.esp
Missives.esp
CFTO-InconNPCs-Patch.esp
Succubus Heart.esp
iNeed.esp
YOT - iNeed.esp
HDT Piercingsets.esp
iNeed - Dangerous Diseases.esp
prettypotionsiNeedDD.esp
Sotteta Huntress Armor.esp
AsharaDimonizedDress.esp
DW Commoners.esp
MF_RadiantProstitution.esp
Remodeled Armor - Vanilla Replacer.esp
Tiwa44_Minidresses.esp
ElderOutfit.esp
SexistGuards.esp
Neithteam Warpaint.esp
CFTO-Lanterns.esp
ImmersiveGenderChange.esp
CFTO-CoveredCarriages.esp
SexLabBooksOfLove.esp
Apocalypse - The Spell Package.esp
TheEyesOfBeauty.esp
CACO-Ordinatored.esp
Skysunder Metamagics Apocalypse Compatibility Patch.esp
Apocalypse - Ordinator Compatibility Patch.esp
Aurora - Standing Stones of Skyrim.esp
ContinueGameNoCrash.esp
SLAL_K4Anims.esp
SLPGN.esp
adcSexlife.esp
Scarcity - 4x Merchant Item Rarity.esp
Scarcity - 6x Loot Rarity.esp
Devious Deviants.esp
Scarcity - 10x Loot Rarity.esp
Scarcity - 10x Merchant Item Rarity.esp
Scarcity - 2x Loot Rarity.esp
Scarcity - 2x Merchant Item Rarity.esp
Scarcity - 4x Loot Rarity.esp
Scarcity - 6x Merchant Item Rarity.esp
Scarcity - 8x Loot Rarity.esp
Scarcity - 8x Merchant Item Rarity.esp
potsanimated.esp
CT_AskToShowRoom.esp
AskTheWay.esp
Realistic-Voice.esp
Follow me for Sex.esp
kuerteeUsefulPotions.esp
vAutosaveManager.esp
posesivecorpses.esp
Dragon Stalking Fix.esp
FeminizedLevelLists.esp
DIVERSITY.esp
MasculinizedLevelListsDG.esp
TDF Aroused Rape.esp
Better Spell Learning - Apocalypse Patch.esp
TakeNotes.esp
NPCsUseAmmoAllBows.esp
MCMCustomOrder.esp
SexLabGenderChange.esp
SexLab Cumshot.esp
DLC1FLL.esp
DLC2FLL.esp
Remodeled Armor - Underwear.esp
Remodeled Armor - Vanilla Replacer - Dawnguard.esp
Remodeled Armor - Vanilla Replacer - Dragonborn.esp
Tiwa44_Minidresses_Dragonborn.esp
SLATE.esp
SLALAnimObjBillyy.esp
SlowMotionMenu.esp
Realistic Capacity.esp
KomAnimObjects.esp
Shiva's Vanilla Hair Replacer.esp
DraugrDontShout - All 3 Shouts Removed.esp
DraugrDontShout - Only Unrelenting Force Removed.esp
DraugrDontShout - Unrelenting Force & Disarm Removed.esp
DraugrDontShout - Unrelenting Force & Frost Breath Removed.esp
DraugrDontShout - Disarm & Frost Breath Removed.esp
DraugrDontShout - Only Disarm Removed.esp
DraugrDontShout - Only Frost Breath Removed.esp
SexLabDefeat.esp
SexLab Submit.esp
SkyFem Patch CACO.esp
SkyFem Patch Helgen Reborn.esp
SkyFem Patch Ordinator.esp
SkyFem Patch SIC.esp
SOS - All Armors Revealing.esp
SkyFem Patch 3DNPC.esp
SkyFem Patch More Nasty Critters.esp
SkyFem Patch Schlongs of Skyrim.esp
SkyFem Patch Smurf Average.esp
SkyFem Patch VectorPlexus Muscular.esp
SkyFem Patch VectorPlexus Regular.esp
Alternate Start - Live Another Life.esp
SkyFem Patch Remodeled Armor UNP.esp
Bashed Patch, 0.esp
Dual Sheath Redux Patch.esp
grimyhealth7.esp
grimyhealth5.esp
grimyhealth6.esp
grimyhealth9.esp
SexLab_Solutions.esp
grimy10.esp
ABSNecro.esp
know_your_enemy.esp

 

 

Link to comment
9 hours ago, soldier321 said:

Is this mod suppose to trigger a bleedout animation? I disabled all my other deathproof mods.

 

I seem to be stuck in bleedout mode, also I have succubus heart (dont got their death alt enabled though) and they will rape during the bleedout but then I just teleport to some place with no blody in the sky with nothing but grass. This sound familiar?

 

 

In a word, yes, upon death you should go to bleedout mode, but you'll stay 2-3 seconds max (just the time to fadeout, move the body, ..... )  You PC wont be raped in this mod.  Maybe Defeat is not totally deactivated.  You should not be teleported (only your corpse is moved)

Do you have a papyrus log ?

Link to comment

Not sure if this works with defeat but certainly TDF aroused rape is causes issues. On a lost brawl it assumes the character has died in combat. From there the Attacker rapes the PC's ghost, not her corpse.

Link to comment
  • 2 weeks later...

I'm not sure whay is wrong, but:

 

SITUATION 1:  ABS version 1.9.3.1 - My PC is Essential - Gained tokens (5) killing bandits and be fucked by the corpses using the spell - encountered other bandits - got "killed" in fight

                       BUT:  my character doesn't die and stays in bleedout position (sound, no Hud) FOREVER. I can access inventory, use potions and regain fighting stance.

                                IF I use manually one token, a message says that "You wasted a token, you need to be dead to use this".

 

SITUATION 2:  Exactly as above but this time I set my own character as NOT ESSENTIAL.

                       Loosing the fight my character dies. ALWAYS. No option to use anything, nu Hud, no inventory, no hotkeys. Nothing. Ends always with reloading the last save.

 

What am I doing wrong?

Link to comment
  • 2 weeks later...
  • 2 weeks later...
  • 1 month later...
  • 2 weeks later...

Hi, I just downloaded the mod and tried it out, works out great until I die, it says that I've gotten tokens after doing the add token animations but they don't appear in my inventory or anything and when I die, it says I have 0/3 tokens, are they somewhere I don't know or did I do something wrong?

Link to comment
  • 1 month later...
Guest AthenaESIV

Got a weird bug: first time after death everything works fine, use tokens and revive as intended...

 

Second time dying spawns no body, using a token starts the NPC interaction but when it comes time for them to do the animation this is in the console:

 

"NOTICE: ValidateActor(Name) -- FALSE -- They are not loaded

"FATAL - Thread[-] AddActor(Name) - AddActor(Name) -- Failed to add actor -- They are not a valid target for animation

"NOTICE: StartSex() - Failed to add some actors to the thread

 

Not sure what is up, hope that info helps get a patch, thanks!!

Link to comment

Hi, finaly I've got some time (but not so much) after a Loong year. Let's look to the backlog *read* hu !! *run out crying*

ok, It'll not be and easy task, but let's go

 

13 hours ago, AthenaESIV said:

Got a weird bug: first time after death everything works fine, use tokens and revive as intended...

 

Second time dying spawns no body, using a token starts the NPC interaction but when it comes time for them to do the animation this is in the console:

 

"NOTICE: ValidateActor(Name) -- FALSE -- They are not loaded

"FATAL - Thread[-] AddActor(Name) - AddActor(Name) -- Failed to add actor -- They are not a valid target for animation

"NOTICE: StartSex() - Failed to add some actors to the thread

 

Not sure what is up, hope that info helps get a patch, thanks!!

I realy need the papyruslog for that. What you show is the sexlab trace, not ABSN one. The main question is : is your dead bogy is there ? *re read the description* well seems not. I realy need the papyrus log to understand why the body is not there.

 

 

On 5/1/2018 at 5:30 AM, CommanderRaven316 said:

Hi, I just downloaded the mod and tried it out, works out great until I die, it says that I've gotten tokens after doing the add token animations but they don't appear in my inventory or anything and when I die, it says I have 0/3 tokens, are they somewhere I don't know or did I do something wrong?

I suppose you have tested an old version of ABSN. You can try to uninstall it, use Skyrim save tool to purge, and try again. It should work. THe other soluttion is to use  additem menu : https://www.nexusmods.com/skyrim/mods/64905

 

On 4/21/2018 at 8:48 PM, YamiPlague said:

Hello, when i die against bandits, and i use the token they revive me, but then they don't attack me anymore, even if i change zone and come back, why?

 

Because they see your death and the resurrection process *smile* ok, this is not an answer. The truth is I have a problem reseting the agro. Everyone around you, at the time of your death is added to a faction. And I don't know how (yet) to reset that. It's on my todo list, but for now, you can easily kill everybody. It's a big issue, and I'll take care of it

 

 

 

 

Link to comment
Guest AthenaESIV
2 hours ago, Nimuraa said:

I realy need the papyruslog for that. What you show is the sexlab trace, not ABSN one. The main question is : is your dead bogy is there ? *re read the description* well seems not. I realy need the papyrus log to understand why the body is not there.

 

 

Ok I'll get that for you, later today if I can, thanks!

 

Good to have you back, hope you've been well o/

 

(Also I'm PMing you a file you might find interesting)

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
  • Recently Browsing   0 members

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

Important Information

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