Re: sby's loader imports; 8/09/2014: too much stuff to list here
Whilst checking what mods of yours use custom linetypes, triggers and variables, I found a bug.
In BreastExpansionPlusv2_2 mod...
[code]
function variabletrackingf()
{
if(addvariabletracking == 1)
{
dialogdict["effectivecuminside"] = effectivecuminside;
dialogdict["timerpuke"] = timerpuke;
dialogdict["bellysize"] = bSbelly;
dialogdict["breastsize"] = bS;
dialogdict["bodysize"] = bSb;
dialogdict["superbreastsize"] = findarealthingtoincreaseby;
dialogdict["eyecumtimer"] = earcumtimer;
dialogdict["bigpenisbellychange"] = bigpenisbellychange;
dialogdict["bigpenisbodychange"] = bigpenisbodychange;
dialogdict["bigpenisbreastchange"] = bigpenisbreastchange;
dialogdict["penisInMouthDist"] = her.penisInMouthDist;
dialogdict["breathLevel"] = g.breathLevel;
dialogdict["passOutFactor"] = her.passOutFactor;
dialogdict["effectivecuminside2"] = effectivecuminside;
dialogdict["timerpuke2"] = timerpuke;
dialogdict["bellysize2"] = bSbelly;
dialogdict["breastsize2"] = bS;
dialogdict["bodysiz2e"] = bSb;
dialogdict["superbreastsize2"] = findarealthingtoincreaseby;
dialogdict["eyecumtimer2"] = earcumtimer;
dialogdict["bigpenisbellychange2"] = bigpenisbellychange;
dialogdict["bigpenisbodychange2"] = bigpenisbodychange;
dialogdict["bigpenisbreastchange2"] = bigpenisbreastchange;
dialogdict["penisInMouthDist2"] = her.penisInMouthDist;
dialogdict["breathLevel2"] = g.breathLevel;
dialogdict["passOutFactor2"] = her.passOutFactor;
dialogdict["mouthFull"] = her.mouthFull;
}
}
[/code]
It's this line:
[code]
dialogdict["bodysiz2e"] = bSb;
[/code]
Shouldn't that be
[code]
dialogdict["bodysize2"] = bSb;
[/code]
?