DigitalSmutExports
Content Creator
- Joined
- Sep 12, 2018
Hi,
I would like to be able to make body mods that aren't altered by the "Her Skin" slider under the custom tab since that's inappropriate for some body mods.
I suspect it can be done with action script somehow. Does anyone know how to do it? I'm using sby's template but I'll include the code here anyway.
I'm also wondering if the same thing is possible for Him mods.
Can anyone help?
I would like to be able to make body mods that aren't altered by the "Her Skin" slider under the custom tab since that's inappropriate for some body mods.
A figurative tattoo should still be depicting the same thing regardless of skin colour. Another example is a mod I'm working on that just adds some shading for more muscle tone. In that case it's already altered by the Her Skin slider by the fact that the alpha value is 7%. Furthermore some body mods have to use other templates in addition to the body mod template since that doesn't cover the face and neck. If you do that and Her Skin only alters part of the mod it looks really weird obviously.
I suspect it can be done with action script somehow. Does anyone know how to do it? I'm using sby's template but I'll include the code here anyway.
Code:
import SDTMods.*;
import flash.display.Loader;
registerMod(elementalbody);
registerMod(elementalhead);
charData = "";
modName = "";
modCreator = "anon";
Code:
import SDTMods.*;
var modType:String = ModTypes.BODY;
var overwrite:Boolean = false;
I'm also wondering if the same thing is possible for Him mods.
Code:
function initl(l)
{
l.g.inGameMenu.loadData("");
l.loadCustomFull(new hisfootl(),".|Him.leftLegCostume.calf.foot","x:0;y:0;r:0;a:1");
l.loadCustomFull(new hisfootr(),".|Him.rightLegCostume.calf.foot","x:0;y:0;r:0;a:1");
l.loadCustomFull(new hiscalfl(),".|Him.leftLegCostume.calf","x:0;y:0;r:0;a:1");
l.loadCustomFull(new hiscalfr(),".|Him.rightLegCostume.calf","x:0;y:0;r:0;a:1");
l.loadCustomFull(new histhighl(),".|Him.leftLegCostume","x:0;y:0;r:0;a:1");
l.loadCustomFull(new histhighr,".|Him.rightLegCostume","x:0;y:0;r:0;a:1");
l.loadCustomFull(new historso,".|Him.torsoLayer.torso","x:0;y:0;r:0;a:1");
l.loadCustomFull(new pantstop,".|Him.midLayer.hips","x:0;y:0;r:0;a:1");
var hupperarm = new hisupperarm();
hupperarm.rotation = -90;
l.him.armContainer.arm.upperArm.addChild(hupperarm);
l.registerToRemove(hupperarm);
var hforearm = new hisforearm();
l.him.armContainer.arm.lowerArm.addChild(hforearm);
l.registerToRemove(hforearm);
var hhand = new hishand();
l.him.armContainer.arm.hand.addChild(hhand);
l.registerToRemove(hhand);
var hupperarml = new hisupperarml();
l.him.leftArmContainer.arm.addChild(hupperarml);
l.registerToRemove(hupperarml);
var hforearml = new hisforearml();
l.him.leftArmContainer.arm.foreArm.addChild(hforearml);
l.registerToRemove(hforearml);
var hhandl = new hishandl();
l.him.leftArmContainer.arm.foreArm.hand.addChild(hhandl);
l.registerToRemove(hhandl);
var penis = new hispenis();
l.him.penis.addChildAt(penis,l.him.penis.getChildIndex(l.him.penis.getChildAt(0))+1);
l.unloadMod();
l.him.leftLeg.calf.visible=false;
l.him.rightLeg.calf.visible=false;
}
Can anyone help?