• Announcements

    • Ashal

      SITE MOVED - IN READ ONLY MODE   12/08/2015

      Please use http://www.loverslab.com moving forward. Site has been restored to a previous version, and this one placed into a read-only mode. This is available for a limited time so users may reference/copy content that has been lost in the transition. This will no longer be accessible by December 22nd, 2015.

obachan

Members
  • Content count

    3
  • Joined

  • Last visited

Posts posted by obachan


  1. Hi Ashal

     

    First I'm grateful for your great work and I love SexLab Framework very much.

    I have been enjoying playing SexLab and making add-on mods.

    Could I ask some questions about SexLab 1.60 API ?

     

     

    1. The UnregisterAnimation function of sslAnimationSlots.psc

     

    This function is to unregister a animation and empty a slot object.

    But sslAnimationSlots property "Slotted" doesn't seems to be changed after unregisterAnimation.

     

    I tried the following test script.



    SexLabFramework SexLab = SexLabUtil.GetAPI()
    sslAnimationSlots AnimSlots = SexLab.AnimSlots
    If AnimSlots
    debug.trace("[before] AnimSlots.Slotted = " + AnimSlots.Slotted)
    If AnimSlots.UnregisterAnimation("SexLabMissionary")
    debug.trace("[after] AnimSlots.Slotted = " + AnimSlots.Slotted)
    endIf
    endIf


    [before] Slotted and [after] Slotted are the same numbers in the Papyrus log.

    Is this right specification?

    I want to use this function in my mod, but I worry that I can't get the correct count of the animations.

     

     

     

    2. Cheking for finishing the SexLab1.60 manual install

     

    I tried the following test script before SexLab1.60 manual install.



    If SexLabUtil.SexLabIsActive()
    SexLabFramework SexLab = SexLabUtil.GetAPI()
    debug.trace("SexLab =" + SexLab)
    debug.trace("SexLab.Enabled = " + SexLab.Enabled)
    If !SexLabUtil.SexLabIsReady()
    debug.trace("SexLab is not ready")
    else
    debug.trace("SexLab is ready")
    endIf
    endIf


    <Papyrus log>
    [09/23/2015 - 10:21:42AM] SexLab =[sexlabframework <SexLabQuestFramework (05000D62)>]
    [09/23/2015 - 10:21:42AM] SexLab.Enabled = TRUE
    [09/23/2015 - 10:21:42AM] SexLab is ready

    If I'm not mistaken, it seems SexLab is "Enabled" and "IsReady" even if it doesn't finish install.



    I think it needs checking "IsInstalled" property of sslSystemAlias for finishing install.

    What else can I do to check it?

     

    Sorry for my poor English, but thanks for readin.

    0

  2. Thank you for answer. I'll try more post.

    I just wanted to ask some questions in the SexLab Development topic thread.

    My post didn't included any images and any links, but I could't post.

    I hope to be able to post in the thread by this post.

    0