Jump to content

Recommended Posts

Posted

Is there a way to make public whore a prison alternative? So, instead of sending the PC to jail, the PC would become a public whore and have to work off the bounty.

  • 2 weeks later...
Posted (edited)

@Visio Diaboli Hi, I was wondering if I could get some help with compilation errors on the PW papyrus scripts. As I understand it, decompiled scripts are the exact same as the compiled ones, but when I try to recompile, even without any modifications, I get these errors.

I can understand things like type mismatches, for example the arguments provided in sf_pw_playertakentothane_0a00e5a5.psc(14,8) are two Bools, whereas the method expects an Actor, Bool, Bool, String, but what I'm confused about is how the scripts compiled in the first place.

Thanks in advance

 

Spoiler

2024-09-21 13:59:56,502 [ERRO] COMPILATION FAILED: Source\PW_EventMemoryScript.psc(26,22): EVENT_TYPE_SEX is not a property on script pw_constants or one of its parents
2024-09-21 13:59:56,502 [ERRO] COMPILATION FAILED: Source\PW_EventMemoryScript.psc(26,100): EVENT_OUTCOME_NONE is not a property on script pw_constants or one of its parents
2024-09-21 13:59:59,209 [ERRO] COMPILATION FAILED: Source\PW__TIF__0405AC90.psc(15,7): type mismatch on parameter 1 (did you forget a cast?)
2024-09-21 13:59:59,212 [ERRO] COMPILATION FAILED: Source\PW__TIF__0904F072.psc(15,7): CurrentClient is not a property on script pw_mainloopscript or one of its parents
2024-09-21 13:59:59,212 [ERRO] COMPILATION FAILED: Source\PW__TIF__0904F072.psc(15,21): none is not a known user-defined type
2024-09-21 13:59:59,228 [ERRO] COMPILATION FAILED: Source\PW__TIF__0904F5D6.psc(13,7): type mismatch on parameter 1 (did you forget a cast?)
2024-09-21 13:59:59,242 [ERRO] COMPILATION FAILED: Source\sf_pw_playertakentothane_0a00e5a5.psc(14,8): isBeingMarchedToThane is not a property on script pw_introdetectionscript or one of its parents
2024-09-21 13:59:59,242 [ERRO] COMPILATION FAILED: Source\sf_pw_playertakentothane_0a00e5a5.psc(14,7): type mismatch while assigning to a none (cast missing or types unrelated)
2024-09-21 13:59:59,243 [ERRO] COMPILATION FAILED: Source\PW__TIF__0405B1F3.psc(13,7): type mismatch on parameter 1 (did you forget a cast?)
2024-09-21 13:59:59,247 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A021C26.psc(16,7): CurrentClient is not a property on script pw_mainloopscript or one of its parents
2024-09-21 13:59:59,248 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A021C26.psc(16,21): none is not a known user-defined type
2024-09-21 13:59:59,265 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A03F5E4.psc(7,47): type mismatch on parameter 1 (did you forget a cast?)
2024-09-21 13:59:59,266 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A03F5E4.psc(16,47): currentClient is not a property on script pw_mainloopscript or one of its parents
2024-09-21 13:59:59,269 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A03F5E2.psc(9,47): currentClient is not a property on script pw_mainloopscript or one of its parents
2024-09-21 13:59:59,269 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A03F5E2.psc(9,61): none is not a known user-defined type
2024-09-21 13:59:59,282 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A021C34.psc(12,7): ApproacherRef is not a property on script pw_mainloopscript or one of its parents
2024-09-21 13:59:59,282 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A021C34.psc(12,21): none is not a known user-defined type
2024-09-21 13:59:59,289 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A038ECE.psc(18,10): alertLevel is not a property on script pw_trackerscript or one of its parents
2024-09-21 13:59:59,290 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A038ECE.psc(18,10): only arrays can be indexed
2024-09-21 13:59:59,296 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A03BA7D.psc(14,10): alertLevel is not a property on script pw_trackerscript or one of its parents
2024-09-21 13:59:59,296 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A03BA7D.psc(14,10): only arrays can be indexed
2024-09-21 13:59:59,332 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A03896C.psc(16,10): alertLevel is not a property on script pw_trackerscript or one of its parents
2024-09-21 13:59:59,333 [ERRO] COMPILATION FAILED: Source\PW__TIF__0A03896C.psc(16,10): only arrays can be indexed
2024-09-21 13:59:59,360 [ERRO] Cannot anonymize scripts because 13 scripts failed to compile

Edit: Attached decompiled scriptsSource.7z

Edited by sixth of year
attachments
Posted
12 minutes ago, sixth of year said:

As I understand it, decompiled scripts are the exact same as the compiled ones, but when I try to recompile, even without any modifications, I get these errors.

Okay I have ask, why are you decompiling PW's scripts when the source is already provided?

Posted
53 minutes ago, Hex Bolt said:

Okay I have ask, why are you decompiling PW's scripts when the source is already provided?

 

The scripts folder appears to have 20 more files than the source folder, so I (mistakenly) assumed the source folder was an older version or was missing a few files. I later found out that the decompiler has a bug where some data, like default values, can't be parsed from the .pex file.

 

I'm back to using the provided source files, but I still have 2 compilation errors remaining. What can I do to resolve them?

2024-09-21 15:12:30,708 [INFO] Compiling "PW_EventMemoryScript"...
2024-09-21 15:12:31,409 [ERRO] COMPILATION FAILED: Source\PW_EventMemoryScript.psc(110,16): EVENT_TYPE_SEX is not a property on script pw_constants or one of its parents
2024-09-21 15:12:31,409 [ERRO] COMPILATION FAILED: Source\PW_EventMemoryScript.psc(110,94): EVENT_OUTCOME_NONE is not a property on script pw_constants or one of its parents
2024-09-21 15:12:33,681 [ERRO] COMPILATION FAILED: Source\sf_pw_playertakentothane_0a00e5a5.psc(8,6): TakePlayerToThane is not a property on script pw_introdetectionscript or one of its parents
2024-09-21 15:12:33,682 [ERRO] COMPILATION FAILED: Source\sf_pw_playertakentothane_0a00e5a5.psc(8,24): none is not a known user-defined type
2024-09-21 15:12:33,691 [ERRO] Cannot anonymize scripts because 2 scripts failed to compile

My guess would be that EVENT_TYPE_SEX and EVENT_OUTCOME_NONE go in PW_Constants.psc, and TakePlayerToThane belongs in PW_IntroDetectionScript.psc, but I'm not sure exactly how they'd appear in source. 

Posted
31 minutes ago, sixth of year said:

My guess would be that EVENT_TYPE_SEX and EVENT_OUTCOME_NONE go in PW_Constants.psc

They're only used in TestListFunctionality(), which isn't invoked anywhere.  It's probably a leftover from the author's development process that can be commented out.

 

34 minutes ago, sixth of year said:

...and TakePlayerToThane belongs in PW_IntroDetectionScript.psc, but I'm not sure exactly how they'd appear in source. 

No idea on that one.  Unfortunately, that script is used by PW_PlayerTakenToThane, which looks like it used by the mod.

Posted (edited)

Not sure if it's just me but I can't seem to get this mod to work, The game keeps crashing on startup but I should have all hard dependencies at their latest versions.

Anyone know how to remedy this? (I have version 1.2.4 & PW patch installed)

Edited by Unfairbro
elaboration
Posted

Great mod, quite fun 👍, but I realized I'm not getting my share of the money 😆.

 

On a side note, you should have an achievement, when you are PW of all Skyrim for ever (with option to leave any city I guess) then you get the title Skyrim PW and a the big Skyrim logo as a tattoo on your back 😁

Posted
15 hours ago, Snook001 said:

Great mod, quite fun 👍, but I realized I'm not getting my share of the money 😆.

 

On a side note, you should have an achievement, when you are PW of all Skyrim for ever (with option to leave any city I guess) then you get the title Skyrim PW and a the big Skyrim logo as a tattoo on your back 😁

 

If you look at the settings, you can turn off the can't leave till your done option

Posted
3 hours ago, Ixmore said:

 

If you look at the settings, you can turn off the can't leave till your done option

Thanks, but it is already turned off.  I was just making a suggestion for an achievement when the we are PW for ever in every city.  Kind of redundant now that I'm thinking about it.  To be PW in every city for ever you need to be allowed to leave.  Still it would make a great achievement 😁

Posted (edited)

Hey folks,

 

Spoiler

Been trying this for the last couple of days, but I find the guards always hassle my toon about not wearing collar. Now, when my toon accepted to be the PW, I did notice
that no collar was put on my character.  So, I put one on that I had in my equipment, but the guards still don't recognize it.  Any thoughts?  Here's my load order:

 

  0  0     Skyrim.esm
  1  1     Update.esm
  2  2     Dawnguard.esm
  3  3     HearthFires.esm
  4  4     Dragonborn.esm
  5  5     ccBGSSSE001-Fish.esm
254 FE   0 ccQDRSSE001-SurvivalMode.esl
254 FE   1 ccBGSSSE037-Curios.esl
  6  6     ccBGSSSE025-AdvDSGS.esm
254 FE   2 _ResourcePack.esl
  7  7     unofficial skyrim special edition patch.esp
254 FE   3 Skyrim Project Optimization - Full ESL Version.esm
  8  8     SexLab.esm
  9  9     CreatureFramework.esm
254 FE   4 Expressive Facegen Morphs.esl
254 FE   5 Headtracking.esp
 10  a     Heels Sound.esm
 11  b     High Poly Head.esm
 12  c     SexLabAroused.esm
 13  d     Schlongs of Skyrim - Core.esm
 14  e     ZaZAnimationPack.esm
254 FE   6 Sexy Adventures.esl
 15  f     Devious Devices - Assets.esm
 16 10     Devious Devices - Integration.esm
 17 11     Devious Devices - Expansion.esm
 18 12     RealisticWaterTwo - Resources.esm
 19 13     Devious Devices - Contraptions.esm
 20 14     SkyUI_SE.esp
 21 15     Obsidian Weathers.esp
 22 16     SMIM-SE-Merged-All.esp
 23 17     RaceMenu.esp
 24 18     XPMSE.esp
 25 19     UIExtensions.esp
254 FE   7 BD Armor and clothes replacer.esp
254 FE   8 CBBE.esp
 26 1a     RaceMenuPlugin.esp
 27 1b     RaceMenuMorphsCBBE.esp
 28 1c     Jampion NPCs.esp
 29 1d     FNIS.esp
254 FE   9 FSMPM - The FSMP MCM.esp
 30 1e     CommunityOverlays2_31T50.esp
 31 1f     CommunityOverlays3.esp
 32 20     MoreNastyCritters.esp
254 FE   a MNC_ABC_Patch.esp
254 FE   b 3BBB.esp
           AnubAnimObj.esp
 33 21     Public Whore.esp
 34 22     animal_mansion.esp
 35 23     SkyrimShroudedSecret.esp
 36 24     Cum Alchemy.esp
 37 25     [SunJeong] Ninirim Collection.esp
 38 26     SOS - VectorPlexus Muscular Addon.esp
 39 27     Schlongs of Skyrim.esp
 40 28     HavoksLipPatterns.esp
254 FE   c BakaFactoryABC.esp
254 FE   d Botox SE.esp
 41 29     Brows.esp
254 FE   e KSHairdosSMP.esp
 42 2a     CommunityOverlays1_0T30.esp
254 FE   f EvenMoreMakeup.esp
254 FE  10 LyruTat2.esp
 43 2b     FMS_FemaleMakeupSuite.esp
 44 2c     MassMatchMakerSE.esp
 45 2d     FNISspells.esp
 46 2e     HentaiCreatures.esp
254 FE  11 KaliliesBrows.esp
 47 2f     Kyoe BanginBrows.esp
254 FE  12 Lamenthia's Marks of Beauty.esp
254 FE  13 LyruTat.esp
 48 30     NibblesAnimObjects.esp
 49 31     SFO_SkinFeatureOverlays.esp
254 FE  14 Sakora's Make Over Kit for SKSE64.esp
254 FE  15 SimpleNailPolish.esp
 50 32     SLALAnimObjBillyy.esp
 51 33     SLAnimLoader.esp
 52 34     SOS - Smurf Average Addon.esp
 53 35     SOS - VectorPlexus Regular Addon.esp
254 FE  16 SOSPhysicsManager.esp
 54 36     TheEyesOfBeauty.esp
 55 37     Tiwa44_Minidresses_CBBE.esp
 56 38     Tiwa44_Minidresses_Dragonborn_CBBE.esp
 57 39     TW3Eyes.esp
 58 3a     Naked Dungeons.esp
 59 3b     SOS - TRX - Futanari Addon.esp
254 FE  17 BBD Skimpy Assassin Outfit.esp
 60 3c     SexLab Cumshot.esp
254 FE  18 SlaveTats.esp
 61 3d     MF_SpectatorCrowds.esp
 62 3e     PWComments.esp
 63 3f     PWPatch.esp
254 FE  19 KinkyCollars.esp
254 FE  1a DX FetishFashion II.esp
 64 40     PW SE G9 hotfix.esp
 65 41     RBS2020.esp
254 FE  1b SimpleItemSpawner.esp
 66 42     alternate start - live another life.esp
 67 43     RealisticWaterTwo.esp
 

Thanks in advance,

Graham C.

Edited by Grayc
Posted

Huh, literally had the same thing happen to me with the collar not getting attached. Thought it was because I was messing with scripts, but nope, guess it's happening to other people too.

Posted
12 hours ago, sixth of year said:

Huh, literally had the same thing happen to me with the collar not getting attached. Thought it was because I was messing with scripts, but nope, guess it's happening to other people too.

yes im not getting a collar either just guards running up after the thane finnishes talking then getting negative score XD

Posted

im having a problem with the mod and wanted to see if there is a way to fix it. in the quest "show of strength" every time the quest ends and the loading screan shows up, the game just crashes. this never happened before. is this a known bug?

Posted
On 1/23/2024 at 5:25 PM, Teimakaa said:

I need some help with the Show of Strength Quest in Windhelm. No Matter which end i achieve, even saying that i can't join directly at the start, i always get a short loading screen after which the game CTDs.

 

Here's my NetScriptFramework Crashlog

 

  Reveal hidden contents

Unhandled native exception occurred at 0x7FF64B7DD0D8 (SkyrimSE.exe+28D0D8) on thread 17220!

FrameworkName: NetScriptFramework
FrameworkVersion: 15
FrameworkArchitecture: x64
GameLibrary: SkyrimSE
GameLibraryVersion: 18
ApplicationName: SkyrimSE.exe
ApplicationVersion: 1.5.97.0
VersionInfo: Successfully loaded
Time: 23 Jan 2024 21:08:06.485

Possible relevant objects (6)
{
  [   1]    TESQuest(Name: PW_WindhelmStart_PostQuest `Post-Quest Dialogues`, FormId: 450838DA, File: `Public Whore.esp`)
  [   1]    TESObjectREFR(FormId: 45084412, File: `Public Whore.esp`, BaseForm: null)
  [  27]    TESNPC(Name: `Ulfric Stormcloak`, FormId: 0001414D, File: `Jampion NPCs.esp <- Unofficial Skyrim Special Edition Patch.esp <- Skyrim.esm`)
  [  27]    Character(FormId: 0001B131, File: `Skyrim.esm`, BaseForm: TESNPC(Name: `Ulfric Stormcloak`, FormId: 0001414D, File: `Jampion NPCs.esp <- Unofficial Skyrim Special Edition Patch.esp <- Skyrim.esm`))
  [  99]    TESNPC(Name: `Viinturuth`, FormId: FF001C3B)
  [  99]    Character(FormId: 000FDBB1, File: `Skyrim.esm`, BaseForm: TESNPC(Name: `Viinturuth`, FormId: FF001C3B))
}

Probable callstack
{
  [0]   0x7FF64B7DD0D8     (SkyrimSE.exe+28D0D8)          TESObjectREFR::unk_28D0B0+28
  [1]   0x7FF64B7DD06D     (SkyrimSE.exe+28D06D)          TESObjectREFR::unk_28D050+1D
  [2]   0x7FF64B70280F     (SkyrimSE.exe+1B280F)          unk_1B2730+DF
  [3]   0x7FF64B8C35D4     (SkyrimSE.exe+3735D4)          TESQuest::unk_372EB0+724
  [4]   0x7FF64BA27FF2     (SkyrimSE.exe+4D7FF2)          BGSStoryTeller::unk_4D7F80+72
  [5]   0x7FF64BA27D1A     (SkyrimSE.exe+4D7D1A)          BGSStoryTeller::unk_4D7950+3CA
  [6]   0x7FF64BA27935     (SkyrimSE.exe+4D7935)          BGSStoryTeller::unk_4D7920+15
  [7]   0x7FF64BB90186     (SkyrimSE.exe+640186)          Job_Quest_for_events_640150+36
  [8]   0x7FF64C182A81     (SkyrimSE.exe+C32A81)          JobList::Process_C329B0+D1
  [9]   0x7FF64C184C48     (SkyrimSE.exe+C34C48)          BSJobs::JobThread::Func1_C34930+318
  [10]  0x7FF64C15D6BD     (SkyrimSE.exe+C0D6BD)          StartAddress_0_C0D680+3D
  [11]  0x7FFF829D257D     (KERNEL32.DLL+1257D)           
  [12]  0x7FFF8394AA58     (ntdll.dll+5AA58)              
}

Registers
{
  AX:       0x0                (NULL)
  BX:       0x25207F85260      (TESObjectREFR*) -> (FormId: 45084412, File: `Public Whore.esp`, BaseForm: null)
  CX:       0x0                (NULL)
  DX:       0x45084412         (u32):[1158169618] (f32):[2180.254]
  SI:       0x25208F01A80      (TESQuest*) -> (Name: PW_WindhelmStart_PostQuest `Post-Quest Dialogues`, FormId: 450838DA, File: `Public Whore.esp`)
  DI:       0x252E6D45100      (void*)
  BP:       0xB2C7FFF7A0       (void*)
  SP:       0xB2C7FFF5E0       (char**) "g"
  IP:       0x7FF64B7DD0D8     (SkyrimSE.exe+28D0D8) (void*)
  R8:       0x76FF0B           (u32):[7798539]
  R9:       0x76FF0BC9         (u32):[1996426185]
  R10:      0x3700             (u16):[14080]
  R11:      0xB2C7FFF578       (void*)
  R12:      0x43EC851F         (u32):[1139574047] (f32):[473.04]
  R13:      0x252E6D45180      (void*)
  R14:      0x250F6898638      (char*) "g"
  R15:      0x45084412         (u32):[1158169618] (f32):[2180.254]
  Flags:    0x10246           
  XMM0:     (double)1.40913885858255E-314 / (float)-1.137151E-13
  XMM1:     (double)0 / (float)0
  XMM2:     (double)0 / (float)0
  XMM3:     (double)0 / (float)0
  XMM4:     (double)0 / (float)0
  XMM5:     (double)1.26025921918917E-311 / (float)-7.423615E+23
  XMM6:     (double)5.30498947741318E-315 / (float)2
  XMM7:     (double)0 / (float)0
  XMM8:     (double)0 / (float)0
  XMM9:     (double)0 / (float)0
  XMM10:    (double)0 / (float)0
  XMM11:    (double)0 / (float)0
  XMM12:    (double)0 / (float)0
  XMM13:    (double)0 / (float)0
  XMM14:    (double)0 / (float)0
  XMM15:    (double)0 / (float)0
}

Stack
{
  [SP+0]    0x250F6898638      (char*) "g"
  [SP+8]    0x2512D1D8100      (void*)
  [SP+10]   0x25208F01A80      (TESQuest*) -> (Name: PW_WindhelmStart_PostQuest `Post-Quest Dialogues`, FormId: 450838DA, File: `Public Whore.esp`)
  [SP+18]   0xB2C7FFF7A0       (void*)
  [SP+20]   0x25207F85260      (TESObjectREFR*) -> (FormId: 45084412, File: `Public Whore.esp`, BaseForm: null)
  [SP+28]   0x7FF64B7DD06D     (SkyrimSE.exe+28D06D) (void*)
  [SP+30]   0x43EC851F         (u32):[1139574047] (f32):[473.04]
  [SP+38]   0x25045084412      (u64):[2543778808850] (f32):[2180.254]
  [SP+40]   0x25202000000      (void*)
  [SP+48]   0x25243EC851F      (void*)
  [SP+50]   0x25207F85260      (TESObjectREFR*) -> (FormId: 45084412, File: `Public Whore.esp`, BaseForm: null)
  [SP+58]   0x7FF64B70280F     (SkyrimSE.exe+1B280F) (void*)
  [SP+60]   0x25207F85260      (TESObjectREFR*) -> (FormId: 45084412, File: `Public Whore.esp`, BaseForm: null)
  [SP+68]   0x25207F85260      (TESObjectREFR*) -> (FormId: 45084412, File: `Public Whore.esp`, BaseForm: null)
  [SP+70]   0x25202000000      (void*)
  [SP+78]   0x25207F852E0      (void*)
  [SP+80]   0x25208F01CE0      (void*)
  [SP+88]   0x7FF64B790812     (SkyrimSE.exe+240812) (void*)
  [SP+90]   0xFFFFFFFFFFFFFFFE (i64):[-2]
  [SP+98]   0x7FF64D414358     (SkyrimSE.exe+1EC4358) (char*) "DC"
  [SP+A0]   0x25208F01A80      (TESQuest*) -> (Name: PW_WindhelmStart_PostQuest `Post-Quest Dialogues`, FormId: 450838DA, File: `Public Whore.esp`)
  [SP+A8]   0x252E6D451F0      (void*)
  [SP+B0]   0x7FF64D303308     (SkyrimSE.exe+1DB3308) (void*)
  [SP+B8]   0x7FF64B8C35D4     (SkyrimSE.exe+3735D4) (void*)
  [SP+C0]   0x25207F85260      (TESObjectREFR*) -> (FormId: 45084412, File: `Public Whore.esp`, BaseForm: null)
  [SP+C8]   0x251E0516E00      (Character*) -> (FormId: 0001B131, File: `Skyrim.esm`, BaseForm: TESNPC(Name: `Ulfric Stormcloak`, FormId: 0001414D, File: `Jampion NPCs.esp <- Unofficial Skyrim Special Edition Patch.esp <- Skyrim.esm`))
  [SP+D0]   0xB2C7FFF7A0       (void*)
  [SP+D8]   0x7FF60000005A     (u64):[140694538682458]
  [SP+E0]   0x25210000000      (void*)
  [SP+E8]   0x252ADFED2C2      (void*)
  [SP+F0]   0x25208F01A80      (TESQuest*) -> (Name: PW_WindhelmStart_PostQuest `Post-Quest Dialogues`, FormId: 450838DA, File: `Public Whore.esp`)
  [SP+F8]   0x84B8C45AD        (u64):[35627222445]
  [SP+100]  0x800000006        (u64):[34359738374]
  [SP+108]  0x7FF64D303308     (SkyrimSE.exe+1DB3308) (void*)
  [SP+110]  0x250F68985A0      (ScrapHeap*)
  [SP+118]  0x252E6D45180      (void*)
  [SP+120]  0xB2C7FFF8C0       (void*)
  [SP+128]  0xB2C7FFF710       (void*)
  [SP+130]  0xFFFFFF01FFFFFF00 (i64):[-1090921693440]
  [SP+138]  0x80300D6C0        (u64):[34410124992]
  [SP+140]  0x43EC851F00132A35 (u64):[4894433263236622901]
  [SP+148]  0x25243EC851F      (void*)
  [SP+150]  0x803C298C0        (u64):[34422823104]
  [SP+158]  0x6F               (u8):[111]
  [SP+160]  0x25207F85260      (TESObjectREFR*) -> (FormId: 45084412, File: `Public Whore.esp`, BaseForm: null)
  [SP+168]  0x252E6D45220      (void*)
  [SP+170]  0x252E6D45280      (void*)
  [SP+178]  0x8F629757         (u32):[2405603159]
  [SP+180]  0x25208F01B50      (void*)
  [SP+188]  0x250F6898638      (char*) "g"
  [SP+190]  0x7FF64CA711A8     (SkyrimSE.exe+15211A8) (void*)
  [SP+198]  0x25208F01CD0      (void*)
  [SP+1A0]  0xFFFFFFFFFFFFFFFE (i64):[-2]
  [SP+1A8]  0x252E6D45280      (void*)
  [SP+1B0]  0x252E6D45280      (void*)
  [SP+1B8]  0x0                (NULL)
  [SP+1C0]  0x0                (NULL)
  [SP+1C8]  0x7FF64CA711A8     (SkyrimSE.exe+15211A8) (void*)
  [SP+1D0]  0x7FF64E477750     (SkyrimSE.exe+2F27750) (BGSStoryTeller*)
  [SP+1D8]  0x0                (NULL)
  [SP+1E0]  0x250F6897ED0      (void*)
  [SP+1E8]  0x250F6898638      (char*) "g"
  [SP+1F0]  0x25208F01A80      (TESQuest*) -> (Name: PW_WindhelmStart_PostQuest `Post-Quest Dialogues`, FormId: 450838DA, File: `Public Whore.esp`)
  [SP+1F8]  0x6F               (u8):[111]
  [SP+200]  0xB2C7FFF950       (void*)
  [SP+208]  0x7FF64BA27FF2     (SkyrimSE.exe+4D7FF2) (void*)
  [SP+210]  0x25208F01A80      (TESQuest*) -> (Name: PW_WindhelmStart_PostQuest `Post-Quest Dialogues`, FormId: 450838DA, File: `Public Whore.esp`)
  [SP+218]  0x25226AE61D0      (QueuedPromoteQuestTask*)
  [SP+220]  0x25200132A36      (void*)
  [SP+228]  0x25208F01A80      (TESQuest*) -> (Name: PW_WindhelmStart_PostQuest `Post-Quest Dialogues`, FormId: 450838DA, File: `Public Whore.esp`)
  [SP+230]  0xFFFFFFFFFFFFFFFE (i64):[-2]
  [SP+238]  0x0                (NULL)
  [SP+240]  0x250F6897ED0      (void*)
  [SP+248]  0x7FF64CA81DB0     (SkyrimSE.exe+1531DB0) (void*)
  [SP+250]  0x0                (NULL)
  [SP+258]  0x25208F01A80      (TESQuest*) -> (Name: PW_WindhelmStart_PostQuest `Post-Quest Dialogues`, FormId: 450838DA, File: `Public Whore.esp`)
  [SP+260]  0x7FF64E477750     (SkyrimSE.exe+2F27750) (BGSStoryTeller*)
  [SP+268]  0x7FF64BA27D1A     (SkyrimSE.exe+4D7D1A) (void*)
  [SP+270]  0x0                (NULL)
  [SP+278]  0x6F               (u8):[111]
  [SP+280]  0x7FF64E474F00     (SkyrimSE.exe+2F24F00) (char*) "DC"
  [SP+288]  0xB2C7FFF900       (BSTArrayBase::IAllocatorFunctor*)
  [SP+290]  0x25403C9D710      (void*)
  [SP+298]  0x25403C9D758      (void*)
  [SP+2A0]  0x25403C9D708      (BShkbAnimationGraph**)
  [SP+2A8]  0x25403C9D710      (void*)
  [SP+2B0]  0x250F68985A0      (ScrapHeap*)
  [SP+2B8]  0x25226AFBBA8      (TESQuest**) -> (Name: PW_WindhelmStart_PostQuest `Post-Quest Dialogues`, FormId: 450838DA, File: `Public Whore.esp`)
  [SP+2C0]  0x25000000001      (u64):[2542620639233]
  [SP+2C8]  0x7FF600000001     (u64):[140694538682369]
  [SP+2D0]  0x7FF64E547788     (SkyrimSE.exe+2FF7788) (void*)
  [SP+2D8]  0x25403C365A0      (WeaponAnimationGraphManagerHolder*)
  [SP+2E0]  0x1101C565A78      (u64):[1168706525816]
  [SP+2E8]  0x4E20             (u16):[20000]
  [SP+2F0]  0x0                (NULL)
  [SP+2F8]  0x7FF64BA41198     (SkyrimSE.exe+4F1198) (void*)
  [SP+300]  0x7FF64E547700     (SkyrimSE.exe+2FF7700) (void*)
  [SP+308]  0x251E0260438      (IAnimationGraphManagerHolder*) -> Character(FormId: 000FDBB1, File: `Skyrim.esm`, BaseForm: TESNPC(Name: `Viinturuth`, FormId: FF001C3B))
  [SP+310]  0x7FF64CA711A8     (SkyrimSE.exe+15211A8) (void*)
  [SP+318]  0xB2C7FFF890       (ScrapHeap**)
  [SP+320]  0x7FF64CA711A8     (SkyrimSE.exe+15211A8) (void*)
  [SP+328]  0xB2C7FFF890       (ScrapHeap**)
  [SP+330]  0xFFFFFFFFFFFFFFFE (i64):[-2]
  [SP+338]  0x7FF64B715F68     (SkyrimSE.exe+1C5F68) (void*)
  [SP+340]  0x2                (u8):[2]
  [SP+348]  0x25403C9D6C0      (BSAnimationGraphManager*)
  [SP+350]  0x11               (u8):[17]
  [SP+358]  0x0                (NULL)
  [SP+360]  0x251E0260400      (Character*) -> (FormId: 000FDBB1, File: `Skyrim.esm`, BaseForm: TESNPC(Name: `Viinturuth`, FormId: FF001C3B))
  [SP+368]  0x7FF64B7F41BE     (SkyrimSE.exe+2A41BE) (void*)
  [SP+370]  0x2                (u8):[2]
  [SP+378]  0x25403C9DCC0      (BSAnimationGraphManager*)
  [SP+380]  0x0                (NULL)
  [SP+388]  0x0                (NULL)
  [SP+390]  0xFFFFFFFFFFFFFFFE (i64):[-2]
  [SP+398]  0x7FF64E547784     (SkyrimSE.exe+2FF7784) (void*)
  [SP+3A0]  0x1                (u8):[1]
  [SP+3A8]  0x7FF64E547780     (SkyrimSE.exe+2FF7780) (void*)
  [SP+3B0]  0x7FF64E547788     (SkyrimSE.exe+2FF7788) (void*)
  [SP+3B8]  0x7FF64E477750     (SkyrimSE.exe+2F27750) (BGSStoryTeller*)
  [SP+3C0]  0x0                (NULL)
  [SP+3C8]  0x2512D3CB7E0      (char*) " *&-Q"
  [SP+3D0]  0x0                (NULL)
  [SP+3D8]  0x7FF64BA27935     (SkyrimSE.exe+4D7935) (void*)
  [SP+3E0]  0x2512D262300      (void*)
  [SP+3E8]  0x7FF64BC31A00     (SkyrimSE.exe+6E1A00) (void*)
  [SP+3F0]  0x251E0260400      (Character*) -> (FormId: 000FDBB1, File: `Skyrim.esm`, BaseForm: TESNPC(Name: `Viinturuth`, FormId: FF001C3B))
  [SP+3F8]  0x7FFF00000002     (u64):[140733193388034]
  [SP+400]  0x2512D262940      (void*)
  [SP+408]  0x7FF64BB90186     (SkyrimSE.exe+640186) (void*)
  [SP+410]  0x2512D3CB7E0      (char*) " *&-Q"
  [SP+418]  0x7FFF812F7B0D     (KERNELBASE.dll+67B0D) (void*)
  [SP+420]  0x7FF600000000     (u64):[140694538682368]
  [SP+428]  0x1                (u8):[1]
  [SP+430]  0xFFFFFFFFFFFFFFFE (i64):[-2]
  [SP+438]  0x7FF600000001     (u64):[140694538682369]
  [SP+440]  0x7FF64E549788     (SkyrimSE.exe+2FF9788) (char*) "@)&-Q"
  [SP+448]  0x7FF64C182A81     (SkyrimSE.exe+C32A81) (void*)
  [SP+450]  0x0                (NULL)
  [SP+458]  0x0                (NULL)
  [SP+460]  0x0                (NULL)
  [SP+468]  0x0                (NULL)
  [SP+470]  0x2                (u8):[2]
  [SP+478]  0x7FF64E549738     (SkyrimSE.exe+2FF9738) (void*)
  [SP+480]  0x0                (NULL)
  [SP+488]  0x2512D262940      (void*)
  [SP+490]  0x7FF64E549718     (SkyrimSE.exe+2FF9718) (BSJobs::JobThread*)
  [SP+498]  0x7FF64C184C48     (SkyrimSE.exe+C34C48) (void*)
  [SP+4A0]  0x1                (u8):[1]
  [SP+4A8]  0x1                (u8):[1]
  [SP+4B0]  0x0                (NULL)
  [SP+4B8]  0x674              (u16):[1652]
  [SP+4C0]  0x0                (NULL)
  [SP+4C8]  0x0                (NULL)
  [SP+4D0]  0x0                (NULL)
  [SP+4D8]  0x0                (NULL)
  [SP+4E0]  0x0                (NULL)
  [SP+4E8]  0x0                (NULL)
  [SP+4F0]  0x7FF64E549718     (SkyrimSE.exe+2FF9718) (BSJobs::JobThread*)
  [SP+4F8]  0x7FF64C15D6BD     (SkyrimSE.exe+C0D6BD) (void*)
  [SP+500]  0x61DF             (u16):[25055]
  [SP+508]  0x61DE             (u16):[25054]
  [SP+510]  0x0                (NULL)
  [SP+518]  0x250E5CDCD88      (void*)
  [SP+520]  0x7FF64E549718     (SkyrimSE.exe+2FF9718) (BSJobs::JobThread*)
  [SP+528]  0x0                (NULL)
  [SP+530]  0x0                (NULL)
  [SP+538]  0x7FFF829D257D     (KERNEL32.DLL+1257D) (void*)
  [SP+540]  0x0                (NULL)
  [SP+548]  0x0                (NULL)
  [SP+550]  0x0                (NULL)
  [SP+558]  0x0                (NULL)
  [SP+560]  0x0                (NULL)
  [SP+568]  0x7FFF8394AA58     (ntdll.dll+5AA58) (void*)
  [SP+570]  0x0                (NULL)
  [SP+578]  0x0                (NULL)
  [SP+580]  0x0                (NULL)
  [SP+588]  0x0                (NULL)
  [SP+590]  0x0                (NULL)
  [SP+598]  0x0                (NULL)
  [SP+5A0]  0x1F74974600000000 (u64):[2266602839377707008]
  [SP+5A8]  0x0                (NULL)
  [SP+5B0]  0x4F0FFFFFB30      (u64):[5433133628208]
  [SP+5B8]  0x7FFF813EC720     (KERNELBASE.dll+15C720) (void*)
  [SP+5C0]  0xB2C7FFE700       (void*)
  [SP+5C8]  0x980001FFFE792941 (i64):[-7493987580946863807]
  [SP+5D0]  0x7FFF9E4A5066     (u64):[140735849058406]
  [SP+5D8]  0xB2C7FFE700       (void*)
  [SP+5E0]  0x0                (NULL)
  [SP+5E8]  0x0                (NULL)
  [SP+5F0]  0x0                (NULL)
  [SP+5F8]  0x0                (NULL)
  [SP+600]  0x0                (NULL)
  [SP+608]  0x0                (NULL)
  [SP+610]  0x0                (NULL)
  [SP+618]  0x0                (NULL)
  [SP+620]  0x0                (NULL)
  [SP+628]  0x0                (NULL)
  [SP+630]  0x0                (NULL)
  [SP+638]  0x0                (NULL)
  [SP+640]  0x0                (NULL)
  [SP+648]  0x0                (NULL)
  [SP+650]  0x0                (NULL)
  [SP+658]  0x0                (NULL)
  [SP+660]  0x0                (NULL)
  [SP+668]  0x0                (NULL)
  [SP+670]  0x0                (NULL)
  [SP+678]  0x0                (NULL)
  [SP+680]  0x0                (NULL)
  [SP+688]  0x0                (NULL)
  [SP+690]  0x0                (NULL)
  [SP+698]  0x0                (NULL)
  [SP+6A0]  0x0                (NULL)
  [SP+6A8]  0x0                (NULL)
  [SP+6B0]  0x0                (NULL)
  [SP+6B8]  0x0                (NULL)
  [SP+6C0]  0x0                (NULL)
  [SP+6C8]  0x0                (NULL)
  [SP+6D0]  0x0                (NULL)
  [SP+6D8]  0x0                (NULL)
  [SP+6E0]  0x0                (NULL)
  [SP+6E8]  0x0                (NULL)
  [SP+6F0]  0x0                (NULL)
  [SP+6F8]  0x0                (NULL)
  [SP+700]  0x0                (NULL)
  [SP+708]  0x0                (NULL)
  [SP+710]  0x0                (NULL)
  [SP+718]  0x0                (NULL)
  [SP+720]  0x0                (NULL)
  [SP+728]  0x0                (NULL)
  [SP+730]  0x0                (NULL)
  [SP+738]  0x0                (NULL)
  [SP+740]  0x0                (NULL)
  [SP+748]  0x0                (NULL)
  [SP+750]  0x0                (NULL)
  [SP+758]  0x0                (NULL)
  [SP+760]  0x0                (NULL)
  [SP+768]  0x0                (NULL)
  [SP+770]  0x0                (NULL)
  [SP+778]  0x0                (NULL)
  [SP+780]  0x0                (NULL)
  [SP+788]  0x0                (NULL)
  [SP+790]  0x0                (NULL)
  [SP+798]  0x0                (NULL)
  [SP+7A0]  0x0                (NULL)
  [SP+7A8]  0x0                (NULL)
  [SP+7B0]  0x0                (NULL)
  [SP+7B8]  0x0                (NULL)
  [SP+7C0]  0x0                (NULL)
  [SP+7C8]  0x0                (NULL)
  [SP+7D0]  0x0                (NULL)
  [SP+7D8]  0x0                (NULL)
  [SP+7E0]  0x0                (NULL)
  [SP+7E8]  0x0                (NULL)
  [SP+7F0]  0x0                (NULL)
  [SP+7F8]  0x0                (NULL)
  [SP+800]  0x0                (NULL)
  [SP+808]  0x0                (NULL)
  [SP+810]  0x0                (NULL)
  [SP+818]  0x0                (NULL)
  [SP+820]  0x0                (NULL)
  [SP+828]  0x0                (NULL)
  [SP+830]  0x0                (NULL)
  [SP+838]  0x0                (NULL)
  [SP+840]  0x0                (NULL)
  [SP+848]  0x0                (NULL)
  [SP+850]  0x0                (NULL)
  [SP+858]  0x0                (NULL)
  [SP+860]  0x0                (NULL)
  [SP+868]  0x0                (NULL)
  [SP+870]  0x0                (NULL)
  [SP+878]  0x0                (NULL)
  [SP+880]  0x0                (NULL)
  [SP+888]  0x0                (NULL)
  [SP+890]  0x0                (NULL)
  [SP+898]  0x0                (NULL)
  [SP+8A0]  0x0                (NULL)
  [SP+8A8]  0x0                (NULL)
  [SP+8B0]  0x0                (NULL)
  [SP+8B8]  0x0                (NULL)
  [SP+8C0]  0x0                (NULL)
  [SP+8C8]  0x0                (NULL)
  [SP+8D0]  0x0                (NULL)
  [SP+8D8]  0x0                (NULL)
  [SP+8E0]  0x0                (NULL)
  [SP+8E8]  0x0                (NULL)
  [SP+8F0]  0x0                (NULL)
  [SP+8F8]  0x0                (NULL)
  [SP+900]  0x0                (NULL)
  [SP+908]  0x0                (NULL)
  [SP+910]  0x0                (NULL)
  [SP+918]  0x0                (NULL)
  [SP+920]  0x0                (NULL)
  [SP+928]  0x0                (NULL)
  [SP+930]  0x0                (NULL)
  [SP+938]  0x0                (NULL)
  [SP+940]  0x0                (NULL)
  [SP+948]  0x0                (NULL)
  [SP+950]  0x0                (NULL)
  [SP+958]  0x0                (NULL)
  [SP+960]  0x0                (NULL)
  [SP+968]  0x0                (NULL)
  [SP+970]  0x0                (NULL)
  [SP+978]  0x0                (NULL)
  [SP+980]  0x0                (NULL)
  [SP+988]  0x0                (NULL)
  [SP+990]  0x0                (NULL)
  [SP+998]  0x0                (NULL)
  [SP+9A0]  0x0                (NULL)
  [SP+9A8]  0x0                (NULL)
  [SP+9B0]  0x0                (NULL)
  [SP+9B8]  0x0                (NULL)
  [SP+9C0]  0x0                (NULL)
  [SP+9C8]  0x0                (NULL)
  [SP+9D0]  0x0                (NULL)
  [SP+9D8]  0x0                (NULL)
  [SP+9E0]  0x0                (NULL)
  [SP+9E8]  0x0                (NULL)
  [SP+9F0]  0x0                (NULL)
  [SP+9F8]  0x0                (NULL)
  [SP+A00]  0x0                (NULL)
  [SP+A08]  0x0                (NULL)
  [SP+A10]  0x0                (NULL)
  [SP+A18]  0x0                (NULL)
}

Modules
{
  SkyrimSE.exe:                                     0x7FF64B550000
  ntdll.dll:                                        0x7FFF838F0000
  KERNEL32.DLL:                                     0x7FFF829C0000
  KERNELBASE.dll:                                   0x7FFF81290000
  apphelp.dll:                                      0x7FFF7DBD0000
  USER32.dll:                                       0x7FFF81C90000
  win32u.dll:                                       0x7FFF81120000
  GDI32.dll:                                        0x7FFF81E40000
  gdi32full.dll:                                    0x7FFF80DA0000
  msvcp_win.dll:                                    0x7FFF80EC0000
  ucrtbase.dll:                                     0x7FFF80F60000
  ADVAPI32.dll:                                     0x7FFF81830000
  msvcrt.dll:                                       0x7FFF81640000
  sechost.dll:                                      0x7FFF81780000
  bcrypt.dll:                                       0x7FFF81080000
  RPCRT4.dll:                                       0x7FFF82130000
  SHELL32.dll:                                      0x7FFF82B60000
  ole32.dll:                                        0x7FFF82250000
  combase.dll:                                      0x7FFF818F0000
  WS2_32.dll:                                       0x7FFF823F0000
  SETUPAPI.dll:                                     0x7FFF833C0000
  OLEAUT32.dll:                                     0x7FFF828C0000
  XINPUT1_3.dll:                                    0x400000
  DINPUT8.dll:                                      0x7FFF4F2C0000
  X3DAudio1_7.dll:                                  0x55D80000
  binkw64.dll:                                      0x180000000
  WINHTTP.dll:                                      0x7FFF7B260000
  IPHLPAPI.DLL:                                     0x7FFF7F6E0000
  MSVCP140.dll:                                     0x7FFF75A80000
  steam_api64.dll:                                  0x55D40000
  WSOCK32.dll:                                      0x7FFF73880000
  VCRUNTIME140.dll:                                 0x7FFF76700000
  d3dx9_42.dll:                                     0x7FFF61FE0000
  WINMM.dll:                                        0x7FFF70F50000
  HID.DLL:                                          0x7FFF7F480000
  dxgi.dll:                                         0x7FFF7E2E0000
  VCRUNTIME140_1.dll:                               0x7FFF76980000
  SHLWAPI.dll:                                      0x7FFF825D0000
  d3d11.dll:                                        0x250BC4A0000
  D3DCOMPILER_43.dll:                               0x7FFEEA8C0000
  d3dx11_43.dll:                                    0x7FFF4C350000
  IMM32.DLL:                                        0x7FFF82AA0000
  skse64_steam_loader.dll:                          0x7FFF59530000
  VERSION.dll:                                      0x7FFF7B000000
  windows.storage.dll:                              0x7FFF7EB80000
  wintypes.dll:                                     0x7FFF7EA40000
  inputhost.dll:                                    0x7FFF5BB50000
  CoreMessaging.dll:                                0x7FFF7D310000
  SHCORE.dll:                                       0x7FFF82030000
  profapi.dll:                                      0x7FFF80B60000
  bcryptPrimitives.dll:                             0x7FFF81150000
  CRYPTBASE.DLL:                                    0x7FFF80350000
  steamclient64.dll:                                0x7FFEE9250000
  CRYPT32.dll:                                      0x7FFF80C30000
  imagehlp.dll:                                     0x7FFF829A0000
  PSAPI.DLL:                                        0x7FFF82630000
  Secur32.dll:                                      0x7FFF7FA30000
  MSWSOCK.dll:                                      0x7FFF800E0000
  tier0_s64.dll:                                    0x7FFF59370000
  vstdlib_s64.dll:                                  0x7FFF556C0000
  SSPICLI.DLL:                                      0x7FFF7FEC0000
  NetScriptFramework.Runtime.dll:                   0x7FFF7A9C0000
  mscoree.dll:                                      0x7FFF76D10000
  dbghelp.dll:                                      0x7FFF6D470000
  mscoreei.dll:                                     0x7FFF76650000
  kernel.appcore.dll:                               0x7FFF7FC60000
  clr.dll:                                          0x7FFF73E40000
  VCRUNTIME140_CLR0400.dll:                         0x7FFF739C0000
  VCRUNTIME140_1_CLR0400.dll:                       0x7FFF739E0000
  ucrtbase_clr0400.dll:                             0x7FFF738D0000
  mscorlib.ni.dll:                                  0x7FFF62310000
  clrjit.dll:                                       0x7FFF61850000
  wldp.dll:                                         0x7FFF803E0000
  amsi.dll:                                         0x7FFF76BE0000
  USERENV.dll:                                      0x7FFF801D0000
  MpOav.dll:                                        0x7FFF76B20000
  MPCLIENT.DLL:                                     0x7FFF739F0000
  WINTRUST.dll:                                     0x7FFF810B0000
  MSASN1.dll:                                       0x7FFF807E0000
  gpapi.dll:                                        0x7FFF80170000
  System.ni.dll:                                    0x7FFF60640000
  System.Core.ni.dll:                               0x7FFF5FAA0000
  urlmon.dll:                                       0x7FFF73B30000
  iertutil.dll:                                     0x7FFF732E0000
  netutils.dll:                                     0x7FFF7F6D0000
  srvcli.dll:                                       0x7FFF73E10000
  PROPSYS.dll:                                      0x7FFF7BB50000
  virtdisk.dll:                                     0x7FFF521B0000
  NetScriptFramework.SkyrimSE.dll:                  0x7FFF51F20000
  EngineFixes.dll:                                  0x7FFF555C0000
  tbb.dll:                                          0x7FFF5AE70000
  tbbmalloc.dll:                                    0x7FFF55490000
  skse64_1_5_97.dll:                                0x7FFF4C3E0000
  AddItemMenuSE.dll:                                0x7FFF55360000
  BetterJumpingSE.dll:                              0x7FFF51EC0000
  BetterThirdPersonSelection.dll:                   0x7FFEE9050000
  cbp.dll:                                          0x7FFF50470000
  ConsoleUtilSSE.dll:                               0x7FFF4C2C0000
  DeviousDevices.dll:                               0x7FFF7A3A0000
  DynamicAnimationReplacer.dll:                     0x7FFF51E50000
  ENBHelperSE.dll:                                  0x7FFF4C230000
  EVLaS.dll:                                        0x7FFF73890000
  FaceGenFixes.dll:                                 0x7FFF4BEE0000
  Fuz Ro D'oh.dll:                                  0x7FFF51990000
  hdtSMP64.dll:                                     0x7FFEE8040000
  InsertAttackData.dll:                             0x7FFF4BE80000
  JContainers64.dll:                                0x7FFEE8D10000
  MCMHelper.dll:                                    0x7FFEE8BF0000
  mfgfix.dll:                                       0x7FFF4BDC0000
  MuJointFix.dll:                                   0x7FFF37890000
  PapyrusTweaks.dll:                                0x7FFEE8AF0000
  PapyrusUtil.dll:                                  0x7FFEE7EC0000
  po3_MoonMod.dll:                                  0x7FFF2B040000
  po3_PapyrusExtender.dll:                          0x250FB870000
  po3_SpellPerkItemDistributor.dll:                 0x7FFEE7B60000
  po3_Tweaks.dll:                                   0x7FFEFDAA0000
  SchlongsOfSkyrim.dll:                             0x7FFF35380000
  SexLabUtil.dll:                                   0x7FFEE7A90000
  ShowAnimCommand.dll:                              0x250F9860000
  SimpleDualSheath.dll:                             0x7FFEE7990000
  skee64.dll:                                       0x7FFEE77A0000
  SmoothCam.dll:                                    0x7FFEE7640000
  D3DCOMPILER_47.dll:                               0x7FFF7BE40000
  CRYPTSP.dll:                                      0x7FFF80330000
  dbgcore.DLL:                                      0x7FFF63DD0000
  TKPlugin.dll:                                     0x7FFF5AA00000
  TrueDirectionalMovement.dll:                      0x7FFEE7560000
  UltimateCombat.dll:                               0x7FFF59330000
  uxtheme.dll:                                      0x7FFF7E1A0000
  gameoverlayrenderer64.dll:                        0x7FFEE73D0000
  CFGMGR32.dll:                                     0x7FFF80810000
  MSCTF.dll:                                        0x7FFF82470000
  textinputframework.dll:                           0x7FFF6EB30000
  CoreUIComponents.dll:                             0x7FFF79D00000
  dxcore.dll:                                       0x7FFF7E2A0000
  directxdatabasehelper.dll:                        0x7FFF7AC30000
  d3dcompiler_46e.dll:                              0x7FFEE2D00000
  d3d11.dll:                                        0x7FFF7C790000
  nvldumdx.dll:                                     0x7FFF76E70000
  cryptnet.dll:                                     0x7FFF7AF30000
  drvstore.dll:                                     0x7FFF7ADD0000
  devobj.dll:                                       0x7FFF80880000
  rsaenh.dll:                                       0x7FFF7FBC0000
  nvwgf2umx.dll:                                    0x7FFF67300000
  nvspcap64.dll:                                    0x7FFEDF610000
  ntmarta.dll:                                      0x7FFF7FC80000
  MessageBus.dll:                                   0x7FFF64190000
  NSI.dll:                                          0x7FFF825C0000
  dhcpcsvc.DLL:                                     0x7FFF7B220000
  WindowsCodecs.dll:                                0x7FFF7C2D0000
  XAudio2_7.dll:                                    0x7FFEE21F0000
  clbcatq.dll:                                      0x7FFF827A0000
  MMDevApi.dll:                                     0x7FFF7A400000
  resourcepolicyclient.dll:                         0x7FFF7E650000
  AUDIOSES.DLL:                                     0x7FFF54710000
  powrprof.dll:                                     0x7FFF80B00000
  UMPDC.dll:                                        0x7FFF80AE0000
  Windows.UI.dll:                                   0x7FFF61E30000
  avrt.dll:                                         0x7FFF7A830000
  DSOUND.DLL:                                       0x7FFF74F10000
  winmmbase.dll:                                    0x7FFF74D40000
  ResampleDmo.DLL:                                  0x7FFF747F0000
  msdmo.dll:                                        0x7FFF73DF0000
  dwmapi.dll:                                       0x7FFF7E5D0000
  wbemprox.dll:                                     0x7FFF7A2D0000
  wbemcomn.dll:                                     0x7FFF70C80000
  wbemsvc.dll:                                      0x7FFF6FB00000
  fastprox.dll:                                     0x7FFF6F4E0000
  dhcpcsvc6.DLL:                                    0x7FFF7B240000
  DNSAPI.dll:                                       0x7FFF7F750000
  webio.dll:                                        0x7FFF5B5A0000
  WINNSI.DLL:                                       0x7FFF7E150000
  rasadhlp.dll:                                     0x7FFF7A2C0000
  fwpuclnt.dll:                                     0x7FFF7AF70000
  schannel.DLL:                                     0x7FFF7FAB0000
  ncrypt.dll:                                       0x7FFF804D0000
  NTASN1.dll:                                       0x7FFF80490000
  ncryptsslp.dll:                                   0x7FFF5B7C0000
  DPAPI.DLL:                                        0x7FFF80800000
}

Plugins (1)
{
  custom_skills
  {
    Name: "Custom Skills"
    Version: 1
    Author: "meh321"
    Assembly: CustomSkills, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  }
}

Game plugins (369)
{
  [00] Skyrim.esm
  [01] Update.esm
  [02] Dawnguard.esm
  [03] HearthFires.esm
  [04] Dragonborn.esm
  [05] ccBGSSSE001-Fish.esm
  [06] ccBGSSSE025-AdvDSGS.esm
  [07] RSkyrimChildren.esm
  [08] Unofficial Skyrim Special Edition Patch.esp
  [09] BSAssets.esm
  [0A] BSHeartland.esm
  [0B] Alpine Forest of Whiterun Valley.esp
  [0C] LegacyoftheDragonborn.esm
  [0D] Enhanced Solitude SSE.esp
  [0E] BS_DLC_patch.esp
  [0F] Water for ENB.esm
  [10] Ryn's Snazzy Last Vigil.esp
  [11] RaceCompatibility.esm
  [12] Vigilant.esm
  [13] Apachii_DivineEleganceStore.esm
  [14] CreatureFramework.esm
  [15] SexLab.esm
  [16] SexLabAroused.esm
  [17] ZaZAnimationPack.esm
  [18] FlowerGirls SE.esm
  [19] Devious Devices - Assets.esm
  [1A] Devious Devices - Integration.esm
  [1B] Devious Devices - Expansion.esm
  [1C] Devious Devices - Contraptions.esm
  [1D] High Poly Head.esm
  [1E] SGEyebrows.esp
  [1F] Schlongs of Skyrim - Core.esm
  [20] SGHairPackBase.esm
  [21] SkyUI_SE.esp
  [22] Obsidian Weathers.esp
  [23] SMIM-SE-Merged-All.esp
  [24] Immersive Wenches.esp
  [25] KS Hairdo's.esp
  [26] The Forts of Skyrim-Rebuilt.esp
  [27] COTN - Falkreath.esp
  [28] JKs Skyrim.esp
  [29] Landscape Fixes For Grass Mods.esp
  [2A] COTN - Dawnstar.esp
  [2B] WindhelmSSE.esp
  [2C] COTN - Morthal.esp
  [2D] The Ancient Profession.esp
  [2E] TAP Interiors.esp
  [2F] COTN - Winterhold.esp
  [30] COTN Morthal - JK's Skyrim Patch.esp
  [31] Ryn's Farms.esp
  [32] SurWR.esp
  [33] HentaiCreatures.esp
  [34] MoreNastyCritters.esp
  [35] SLAnimLoader.esp
  [36] DemonicCreatures.esp
  [37] GKBWavesReborn.esp
  [38] JK's Blue Palace.esp
  [39] SexLab_Solutions.esp
  [3A] Jampion NPCs.esp
  [3B] troublesofheroine.esp
  [3C] SeranaDialogAddon.esp
  [3D] HearthfireMultiKid.esp
  [3E] Immersive Encounters.esp
  [3F] Embers XD.esp
  [40] ES + JK Patch.esp
  [41] Odin - Skyrim Magic Overhaul.esp
  [42] SexLab_DibellaCult.esp
  [43] SexLab Confabulation.esp
  [44] MrissiTailOfTroubles.esp
  [45] Public Whore.esp
  [46] Hothtrooper44_ArmorCompilation.esp
  [47] moonpath.esp
  [48] JRMoonpathtoElsweyrPatch.esp
  [49] NewArmoury.esp
  [4A] SexLab More Creatures.esp
  [4B] Immersive Weapons.esp
  [4C] animal_mansion.esp
  [4D] LakeViewManorUpgrades.esp
  [4E] Immersive Music.esp
  [4F] FurnitureMarkerSex.esp
  [50] Dwarfsphere.esp
  [51] Goodstormcloaks.esp
  [52] FloatingSwordFollower.esp
  [53] The Great City of Rorikstead.esp
  [54] BaboInteractiveDia.esp
  [55] BalazarTheHusky.esp
  [56] SLALAnimObjBillyy.esp
  [57] 018Auri.esp
  [58] MistySkye.esp
  [59] Arcanum.esp
  [5A] vampeyefixv11.esp
  [5B] troublesofheroineDG.esp
  [5C] troublesofheroineDB.esp
  [5D] SLPrivacy.esp
  [5E] BesEss.esp
  [5F] Skyrim Flora Overhaul.esp
  [60] Missives.esp
  [61] sl_triggers.esp
  [62] Cum Alchemy.esp
  [63] Apachii_DivineEleganceStore_Patch.esp
  [64] VampireFacesRestored.esp
  [65] Schlongs of Skyrim.esp
  [66] ForgottenCity.esp
  [67] SOS - Shop.esp
  [68] [SunJeong] Ninirim Collection.esp
  [69] SLDragons.esp
  [6A] AmorousAdventuresPlus.esp
  [6B] MF_RadiantProstitution.esp
  [6C] submissivelola_est.esp
  [6D] The Amazing World of Bikini Armors REMASTERED.esp
  [6E] Landscape For Grass Mods - Military Camps.esp
  [6F] SexLab Eager NPCs.esp
  [70] troublesofheroineHF.esp
  [71] HDTTailsEquipable.esp
  [72] SOS - ERF - Horse Penis Redux Addon.esp
  [73] SimpleDefeat.esp
  [74] CBBE.esp
  [75] RaceMenu.esp
  [76] RaceMenuPlugin.esp
  [77] Auto Unequip Ammo.esp
  [78] NoRadialBlur.esp
  [79] CommunityOverlays1_0T30.esp
  [7A] CommunityOverlays3.esp
  [7B] SOS - TRX - Futanari Addon Horse.esp
  [7C] UIExtensions.esp
  [7D] AddItemMenuSE.esp
  [7E] 3jiouAnimSLAL.esp
  [7F] IcePenguinWorldMap.esp
  [80] 50 More Perk Points.esp
  [81] AnubAnimObj.esp
  [82] Bijin NPCs.esp
  [83] Armored Empire.esp
  [84] FGCWingedSpear.esp
  [85] Bijin Warmaidens.esp
  [86] Bijin Wives.esp
  [87] bloodbond.esp
  [88] Blush When Aroused.esp
  [89] Cathedral - 3D Pine Grass.esp
  [8A] DCR_KingCrusaderMegaPack_SSE.esp
  [8B] RSChildren.esp
  [8C] Garnak gro-Mattul Follower.esp
  [8D] MennoHairFlowers.esp
  [8E] SLALAnimObj.esp
  [8F] FGCumEffect.esp
  [90] FNIS.esp
  [91] FNIS_PCEA2.esp
  [92] FNISSexyMove.esp
  [93] FNISspells.esp
  [94] Faction Crossbows.esp
  [95] FMS_FemaleMakeupSuite.esp
  [96] Flower Girls NPC Overhaul.esp
  [97] KSWigsSMP.esp
  [98] sr_FillHerUp.esp
  [99] FlufyFoxAnimObjects.esp
  [9A] FranklyHDImperialArmorsAndWeapons.esp
  [9B] GR Inari EarsTails SMP.esp
  [9C] GR Elin EarsTails SMP.esp
  [9D] GirlHeavyArmor.esp
  [9E] GuardianShieldSLN.esp
  [9F] HearthfireMultiKid_LastName.esp
  [A0] HornyCreatures.esp
  [A1] Hothtrooper44_Armor_Ecksstra.esp
  [A2] SGHairPackAIO.esp
  [A3] Immersive Wenches -SG hairs- Patch.esp
  [A4] KS Jewelry.esp
  [A5] SLAL_K4Anims.esp
  [A6] Less Clovers for 3D Pine Grass.esp
  [A7] SLACS.esp
  [A8] NCK30Obj.esp
  [A9] NewmPiercingsCBBESSE1.esp
  [AA] UltimateCombat.esp
  [AB] NoBSAIProjectileDodge.esp
  [AC] NoHeavyBreathing.esp
  [AD] VR_Tannick.esp
  [AE] PWComments.esp
  [AF] SexLabTools.esp
  [B0] Phenderix Skyrim In-Game Editor.esp
  [B1] PsycheAnimationObjects.esp
  [B2] QuickLight.esp
  [B3] Refined Auri.esp
  [B4] RiftenFPSGrassFix.esp
  [B5] SexLabDefeat.esp
  [B6] NibblesAnimObjects.esp
  [B7] SLAL_SHanimAnimObj.esp
  [B8] SexLab Enchantress.esp
  [B9] Skyrim Weapons Expansion.esp
  [BA] SOS - VectorPlexus Regular Addon.esp
  [BB] SexLab Aroused Creatures.esp
  [BC] SexLab Inflation Framework.esp
  [BD] SexLab Extra Voices.esp
  [BE] SexistGuards.esp
  [BF] SimpleHorse.esp
  [C0] SimpleOutfitManager.esp
  [C1] SexLab_DibellaCult_Sisters.esp
  [C2] SFO_SkinFeatureOverlays.esp
  [C3] SkyHUD.esp
  [C4] SlaveTats.esp
  [C5] Sleep Spell.esp
  [C6] MF_SpectatorCrowds.esp
  [C7] Stormcloak Battle Armor Replacer.esp
  [C8] Stinger-Poisoner.esp
  [C9] TKDodge.esp
  [CA] TalosHousecarl.esp
  [CB] TheEyesOfBeauty.esp
  [CC] JZBai_ThrowingWpnsLite.esp
  [CD] JZBai_ThrowingWpnsLite_LL.esp
  [CE] Toccata as Elisif.esp
  [CF] Toccata.esp
  [D0] Unique Uniques.esp
  [D1] Valerica.esp
  [D2] VampireSunProtection.esp
  [D3] Vero Follower.esp
  [D4] VioLens SE.esp
  [D5] FGC_WingedSpear_AAPatchSSE.esp
  [D6] Wolfpaint_Face.esp
  [D7] SOSRaceMenu.esp
  [D8] XPMSE.esp
  [D9] YunDao_Hdt_Hair.esp
  [DA] [Dint999] BDOr_Hairstyles.esp
  [DB] TDF Aroused Sexy Idles.esp
  [DC] NMNEB.esp
  [DD] Ordinator - Perks of Skyrim.esp
  [DE] Odin - Ordinator Compatibility Patch.esp
  [DF] Better Vampires.esp
  [E0] Alternate Start - Live Another Life.esp
  [E1] nwsFollowerFramework.esp
  [E2] ELE_SSE.esp
  [E3] SL Dirty Deeds Missives.esp
  [E4] SL Dirty Deeds Missives Race Edits.esp
  [E5] Water for ENB (Shades of Skyrim).esp
  [FE 000] ccQDRSSE001-SurvivalMode.esl
  [FE 001] ccBGSSSE037-Curios.esl
  [FE 002] Cathedral - 3D Mountain Flowers.esp
  [FE 003] Unofficial Saints and Seducers Patch.esl
  [FE 004] Unofficial Rare Curios Patch.esl
  [FE 005] Unofficial Skyrim Survival Patch.esl
  [FE 006] Simple No More Stupid Dog.esl
  [FE 007] 1FalconerArmor.esl
  [FE 008] Backshields.esl
  [FE 009] Expressive Facegen Morphs.esl
  [FE 00A] LewdMarks.esl
  [FE 00B] SmoothCam.esl
  [FE 00C] iWant Widgets.esl
  [FE 00D] Landscape For Grass Mods JK'S Skyrim.esp
  [FE 00E] Capital Windhelm Expansion - JK's Skyrim Patch.esp
  [FE 00F] JK's The Bards College.esp
  [FE 010] COTN Falkreath - JKs Skyrim Patch.esp
  [FE 011] COTN Dawnstar - JK's Skyrim Patch.esp
  [FE 012] DBM_EnhancedSolitude_Patch.esp
  [FE 013] LOTD - ES + JK patch.esp
  [FE 014] DBM_JKSkyrim_Patch.esp
  [FE 015] COTN Falkreath - JKs Skyrim - LOTD Patch.esp
  [FE 016] DBM_AHO_Patch.esp
  [FE 017] COTN Falkreath - Embers XD Patch.esp
  [FE 018] DBM_IW_Patch.esp
  [FE 019] DBM_Vigilant_Patch.esp
  [FE 01A] Missives - JK Skyrim.esp
  [FE 01B] COTN Falkreath - Grass Mods Patch.esp
  [FE 01C] Vampire Eye Fix.esp
  [FE 01D] [COCO] Ahri Uniforms.esp
  [FE 01E] Botox SE.esp
  [FE 01F] NormalVampireFaces-HighPolyHead.esp
  [FE 020] Embers XD - Patch - JKs Skyrim.esp
  [FE 021] COTN Dawnstar - Embers XD [XD ESP] Patch.esp
  [FE 022] COTN Dawnstar - Legacy of the Dragonborn Patch.esp
  [FE 023] troublesofheroine_Voices1.esp
  [FE 024] troublesofheroine_Voices2.esp
  [FE 025] R18pn_Lingerie_3BA.esp
  [FE 026] Grass FPS Booster - SFO.esp
  [FE 027] 3BBB.esp
  [FE 028] [COCO] CaressofVenus.esp
  [FE 029] Race Compatiblity - Serana Add-on Dialogue.esp
  [FE 02A] [COCO] Deliciously Bride.esp
  [FE 02B] Obsidian Weathers - Patch - Rudy ENB.esp
  [FE 02C] [Caenarvon] Cosplay Pack.esp
  [FE 02D] AutoSave_Minimalistic.esp
  [FE 02E] Wilding.esp
  [FE 02F] Kyoe BanginBrows.esp
  [FE 030] COTN Winterhold - Embers XD [XD ESP] Patch.esp
  [FE 031] COTN Winterhold - Immersive Wenches Patch.esp
  [FE 032] COTN Winterhold - LOTD Patch.esp
  [FE 033] Ryn's Snazzy Last Vigil - Embers XD Patch.esp
  [FE 034] Landscape For Grass Mods - TGC Rorikstead PATCH.esp
  [FE 035] Sharkish_Piercings.esp
  [FE 036] Priscilla.Serana.Replacer.esp
  [FE 037] BakaFactoryABC.esp
  [FE 038] Animated Armoury - Falconer sword patch.esp
  [FE 039] ARTA Glasses.esp
  [FE 03A] Missives - Solstheim.esp
  [FE 03B] [Dint999] FacePartMod.esp
  [FE 03C] COTN Falkreath - CC - Fishing Patch.esp
  [FE 03D] COTN Falkreath Addons.esp
  [FE 03E] COTN Dawnstar - Cathedral Flowers Patch.esp
  [FE 03F] Asuras Guard [Armor].esp
  [FE 040] SLAL_AnimationByBakaFactory.esp
  [FE 041] BetterThirdPersonSelection.esp
  [FE 042] bloodbond - alternative player dialogue.esp
  [FE 043] Botox SE - Flower Girls.esp
  [FE 044] [COCO] 2B Wedding Outfit.esp
  [FE 045] [COCO] Pandora Box.esp
  [FE 046] COTN Dawnstar - Immersive Wenches Patch.esp
  [FE 047] COTN Falkreath - Immersive Wenches Patch.esp
  [FE 048] [COCO] Scarlet Rose.esp
  [FE 049] COTN Winterhold - Cathedral Flowers Patch.esp
  [FE 04A] [SunJeong] Dark Sorceress.esp
  [FE 04B] DeerHoovesAndTail.esp
  [FE 04C] Demon Cat Follower.esp
  [FE 04D] Devious Devices SE patch.esp
  [FE 04E] RSC Enhanced Solitude Patch.esp
  [FE 04F] DVLaSS Skyrim Underside.esp
  [FE 050] FloatingSwordFollower_LODPatch.esp
  [FE 051] Flower Girls NPC Overhaul - KS Hairdos Patch.esp
  [FE 052] IA_CBBE.esp
  [FE 053] Immersive Encounters - RS Children Patch.esp
  [FE 054] KSHairdosSMP.esp
  [FE 055] KSHairForAncientProf.esp
  [FE 056] DBM_IA_Patch.esp
  [FE 057] DBM_RSChildren_Patch.esp
  [FE 058] Lovely Hair Flowers ESL.esp
  [FE 059] IZZA_Mrissi.esp
  [FE 05A] MCMHelper.esp
  [FE 05B] MiuSAFollower.esp
  [FE 05C] MoonsAndStars.esp
  [FE 05D] NaySanPiercing.esp
  [FE 05E] Ultimate Lingerie Collection 2.esp
  [FE 05F] NideVeilFollower.esp
  [FE 060] PW Comments Voice.esp
  [FE 061] Ryn's Snazzy Last Vigil - Ebony Warrior Overhaul.esp
  [FE 062] SL Dirty Deeds Voice Pack.esp
  [FE 063] SWE - Traditional Leveled Lists.esp
  [FE 064] SafehouseTeleport.esp
  [FE 065] Sexist Guards Voice.esp
  [FE 066] Sexist Guards Voice0.esp
  [FE 067] Sexlab Solutions Voice.esp
  [FE 068] SexlabLightMeUp.esp
  [FE 069] Spear of Skyrim.esp
  [FE 06A] StormcloakWarmaidenArmor.esp
  [FE 06B] Suisei_HairdosSMP.esp
  [FE 06C] TAWOBA Remastered Leveled List.esp
  [FE 06D] [TheMilkDrinker] Kinnari Armor.esp
  [FE 06E] TrueDirectionalMovement.esp
  [FE 06F] [Caenarvon] True Flame Sakitama.esp
  [FE 070] Vigilant Voiced.esp
  [FE 071] Vigilant CBBE Patch.esp
  [FE 072] Water for ENB - Patch - Blue Volcanic Water.esp
  [FE 073] Wenches with a view.esp
  [FE 074] YandereEyes.esp
  [FE 075] ZakiTattooBeast.esp
  [FE 076] [COCO] Succubus [SE].esp
  [FE 077] Zaki Tattoos.esp
  [FE 078] [COCO] Witchiness [SE].esp
  [FE 079] BaboInteractiveDia_Voices1.esp
  [FE 07A] BaboInteractiveDia_Voices2.esp
  [FE 07B] BaboInteractiveDia_Voices3.esp
  [FE 07C] MF_RadiantProstitution_Voices.esp
  [FE 07D] sr_FillHerUp_Voice1.esp
  [FE 07E] submissivelola_est_Voices1.esp
  [FE 07F] submissivelola_est_Voices2.esp
  [FE 080] submissivelola_est_Voices3.esp
  [FE 081] The Ancient Profession_Voices.esp
  [FE 082] Ordinator - Bypass TimedBlock.esp
  [FE 083] Ordinator - Beyond Skyrim Bruma Patch.esp
  [FE 084] COTN Dawnstar - Alternate Start LAL Patch.esp
  [FE 085] COTN Falkreath - Alternate Start Patch.esp
  [FE 086] SDA NFF Patch.esp
  [FE 087] Water for ENB - Patch - Rudy ENB.esp
  [FE 088] Water for ENB - Patch - Clear Muddy Water.esp
  [FE 089] Water for ENB - Patch - Clear Underwater.esp
  [FE 08A] NightEyeENBFix.esp
}
 

 

did you ever solved the problem? im having the same issues

Posted
5 hours ago, Neyri LL said:

Trying to gauge how stable and bug free this mod is today... seems like it has some dealbreakers?

 

Opinions welcome 😅


This mod works well for me. I do not have any of the crashes or other problems reported in the posts above on this page.

Posted
4 hours ago, Herowynne said:


This mod works well for me. I do not have any of the crashes or other problems reported in the posts above on this page.

Nice! What game & mod version are you playing?

Posted (edited)
4 hours ago, Neyri LL said:

Nice! What game & mod version are you playing?


I use Skyrim SE 1.5.97 and Public Whore v1.2.4 SE.

 

 

Edited by Herowynne
Posted
21 minutes ago, leking said:

I checked their boxes in SLAL but public whore seems to only pick from basic sexlab animation list (i tested by unchecking all sexlab base animation and then nothing happen instead of randomly picking form the list of anub's animation in SLAL.

You might have missed a step.  Did you click "Register Animations" in SLAL?  The animations that you selected should then appear under "Toggle Animations" in SexLab.

Posted (edited)

@Visio Diaboli

Weren't there these "thoughts" showing up on screen about beeing the PW? I haven't seen them lately. I also remembered that they showed up of duty?

Danica has dialogues about how frequent these thought show up but I haven't seen any on or off duty.

Edited by xyzxyz
Posted
On 10/9/2024 at 10:17 AM, xyzxyz said:

@Visio Diaboli

Weren't there these "thoughts" showing up on screen about beeing the PW? I haven't seen them lately. I also remembered that they showed up of duty?

Danica has dialogues about how frequent these thought show up but I haven't seen any on or off duty.

I think the only place I wrote anything related to the PC's thoughts is in punishment story boxes. Sounds like Bimbos of Skyrim maybe?

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...