Jump to content

Proficiency Troubles


Recommended Posts

Posted

I'm having an ungoing issue with getting proficiency for sexual experince to level up. I have a total of 3+ hours in game now built up for the sex time on the Sexlab MCM Diary. However, only vaginal proficiency has increased, and is currenty at Grand Master. All other proficiencies are still at unskilled. I have been specifiically targeting the Oral Proficiency in order to be able to pass the first quest in the Sexlab Guild v0.9 mod, which requires at least some leveling in the oral proficiency to complete.

 

Has anyone come across this? Any advice on what to do to get around this proficiency leveling issue?

  • 1 month later...
Posted

Similar, vag and anal unskilled... 90+ partners? I am wondering if the Tome quest (which is done), has stopped or blocked this somehow.

Posted

I have also run into this issue with the sexlab journal in version 1.58b. The oral proficiency is stuck at unskilled, even after letting the animations play for about 20 minutes realtime. From what I gathered in 1.5x the way experience gain was altered and this is somehow causing this issue. Since the stats affect expressions I find this little glitch rather annoying and would like to fix it. The author of this mod http://www.loverslab.com/topic/31421-sexlab-stats-manipulator/ described the issue in a bit broken english:

 

Specification of SexStats is changed from SexLab1.5x, corresponding Stats instead of rising to 1 per sex once as before, Stats are now increased by the time spent on sex.
It's based on the idea of computing experience instead of bulk at the end of sex, adds the experience finely roughly at the same time with Moan, that liquidation at the end.
 
Experience value added is truncates all in the case of less than 0.375. 
You must intervals of moan to become a 0.375 or more is approximately 7.5 seconds or more.
However, that it is more than 7.5 seconds extremely rare, you will be moaning to approximately every second stage of sex advances especially in the specification of 1.5x default.
Never Stats rises most for this.
 
 
I've modified the following sources: Stats are as likely to rise. 
My changes are as the following, by adjusting it yourself if you do not like.
 
sslThreadController.psc line436
This calculate EXP to add between moan and moan.
I was corrected rise of Stats is a little too large in the original formula.
 
sslThreadModel.psc line824
It is a conditional expression, such as truncation of experience. 
Lower the experience to truncate.

 

In sslThreadController.psc the lines under System Use Only read as follow:

function RecordSkills()
    float TimeNow = Utility.GetCurrentRealTime()
    float xp = ((TimeNow - SkillTime) / 15.0)
    AddXP(1, xp, IsVaginal)
    AddXP(2, xp, IsAnal)
    AddXP(3, xp, IsOral)
    AddXP(4, xp, IsLoving)
    AddXP(5, xp, IsDirty)
    SkillTime = TimeNow
endfunction

function SetBonuses()
    SkillBonus[0] = SkillXP[0]
    if IsVaginal
        SkillBonus[1] = 1.0 + SkillXP[1]
    endIf
    if IsAnal
        SkillBonus[2] = 1.0 + SkillXP[2]
    endIf
    if IsOral
        SkillBonus[3] = 1.0 + SkillXP[3]
    endIf
    if IsLoving
        SkillBonus[4] = 1.0 + SkillXP[4]
    endIf
    if IsDirty
        SkillBonus[5] = 1.0 + SkillXP[5]
    endIf
endFunction

function AddXP(int i, float Amount, bool Condition = true)
    if Condition && Amount >= 0.375 && SkillXP < 6.0
        SkillXP = SkillXP + Amount
    endIf
endFunction

 

Am I correct in understanding that lowering the value of 0.375 would decrease the threshold where it negates the experience gain thus fixing the issue? And if so which value would give the best balance?

Archived

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

  • Recently Browsing   0 members

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