Jump to content

Scripting - Sexlab arousal check


Recommended Posts

Posted

Edit: I have been researching this myself and have written a function:

 

Function Tracker()
    Actor akActor = Game.GetPlayer()
        Box2.Show()
        slaframeworkscr.UpdateActorExposure(akActor, Utility.RandomInt(1, 3), ArousalReasonStr)
endFunction

 

And now i am getting the following compilation error: "C:\Program Files (x86)\Steam\steamapps\common\Skyrim\Data\Scripts\Source\temp\CC_Quest_Scr.psc(60,21): cannot call the member function UpdateActorExposure alone or on a type, must call it on a variable"

Posted

Fixed it by writing:

 

Function Tracker()
    Actor akActor = Game.GetPlayer()
      Message m_suit = None
        Box2.Show()
    if (CurrentPanties != None)
        m_suit.Show()
        slaarousal.UpdateActorExposure(akActor, Utility.RandomInt(1, 3), ArousalReasonStr)
    endif
endFunction

  • 4 weeks later...

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

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