Change character size?

SR3. I want to know how to change character size to, where do i get the mod? how do you do this All i see is ppl talking about this>></Model><Height_Class>Medium</Height_Class><Height>1.0<
of the
<Character><Name>StyleTest_PC
in the
character_definitions.xtbl file.

Example; My character is
</Model><Height_Class>Big</Height_Class><Height>1.083< i don't see this on my game on app steam or anything, how do i go by seeing this?? where do i get mods or if there's any mod how do you do it? can any one plz be so kind and help.
 
Using the above I found:
Code:
        <Character>
            <Name>StyleTest_PC</Name>
            <_Editor>
                <Category>Entries:Pedestrian:4Delete</Category>
            </_Editor>
            <Approved>Yes</Approved>
            <Model>
                <Filename>dorito.cmeshx</Filename>
            </Model>
            <Height_Class>Medium</Height_Class>
            <Height>1.0</Height>
            <Variation>0.0</Variation>
            <Base_Height_Offset>0.0</Base_Height_Offset>
            <Min_Blink>1000</Min_Blink>
            <Max_Blink>4000</Max_Blink>
            <Anim_Set>PLYM</Anim_Set>
            <Rig>
                <Filename>cm_body.rigx</Filename>
                <Preload>true</Preload>
            </Rig>
            <StreamCategory>Spawnable Civilian</StreamCategory>
            <Default_Personas>
                <Personas>
                    <Persona_Name>Player_WM</Persona_Name>
                </Personas>
            </Default_Personas>
        </Character>

I am gonna edit it a bit and see what happens.

Changing to:

Code:
        <Character>
            <Name>StyleTest_PC</Name>
            <_Editor>
                <Category>Entries:Pedestrian:4Delete</Category>
            </_Editor>
            <Approved>Yes</Approved>
            <Model>
                <Filename>dorito.cmeshx</Filename>
            </Model>
            <Height_Class>Small</Height_Class>
            <Height>0.85</Height>
            <Variation>0.0</Variation>
            <Base_Height_Offset>0.0</Base_Height_Offset>
            <Min_Blink>1000</Min_Blink>
            <Max_Blink>4000</Max_Blink>
            <Anim_Set>PLYM</Anim_Set>
            <Rig>
                <Filename>cm_body.rigx</Filename>
                <Preload>true</Preload>
            </Rig>
            <StreamCategory>Spawnable Civilian</StreamCategory>
            <Default_Personas>
                <Personas>
                    <Persona_Name>Player_WM</Persona_Name>
                </Personas>
            </Default_Personas>
        </Character>

seem to work pretty well.
 
Last edited:
Back
Top