Extend one slider.

I know that there's like two mods that extend all sliders in the character creator but would it be possible to just have one that's extended for example just have the eyeball size be extended and nothing else would be extended, all the other sliders would act as normal, if it's possible then how would I do it?
 
The file you'll want to edit is player_creation.xtbl. Find the slider you want to edit (in this case; "eyeballs size"), then duplicate the Morph_Key (That is everything from "<Morph_Key>" to "</Morph_Key>") and paste it directly beneath what you just copied. You can do this multiple times.

Example:
Code:
            <Morph_Info>
                <Name>eyeballs size</Name>
                <DisplayName>PLAYER_MORPH_EYEBALLS_SIZE_TEXT</DisplayName>
                <Initial_Value>.5</Initial_Value>
                <Morph_Keys>
                    <Morph_Key>
                        <Name>eyeballs size +-</Name>
                        <Full_Value>1</Full_Value>
                        <Nill_Value>.5</Nill_Value>
                        <Neg_Value>0</Neg_Value>
                        <Full_Shader_Value>
                            <X>0.0</X>
                            <Y>0.0</Y>
                            <Z>0.0</Z>
                            </Full_Shader_Value>
                        <Nill_Shader_Value>
                            <X>0.0</X>
                            <Y>0.0</Y>
                            <Z>0.0</Z>
                            </Nill_Shader_Value>
                        </Morph_Key>
                    <Morph_Key>
                        <Name>eyeballs size +-</Name>
                        <Full_Value>1</Full_Value>
                        <Nill_Value>.5</Nill_Value>
                        <Neg_Value>0</Neg_Value>
                        <Full_Shader_Value>
                            <X>0.0</X>
                            <Y>0.0</Y>
                            <Z>0.0</Z>
                            </Full_Shader_Value>
                        <Nill_Shader_Value>
                            <X>0.0</X>
                            <Y>0.0</Y>
                            <Z>0.0</Z>
                            </Nill_Shader_Value>
                        </Morph_Key>
                    </Morph_Keys>
                <Base_Value>.5</Base_Value>
                <Type>basic</Type>
                </Morph_Info>

Hope this helps!
p.s: I have a sliders mod of my own on the horizon which may be of interest to you!
 
Back
Top