Elf body for human character?

Hello, this probably has been asked before, but I coudn’t find a clear answer, so is it possible or not to use the elf (thinner) body type for a human somehow ?

Thanks for reading !

In which context? Do you want to use a proper human race with a built-in elf body or a thinner model version of regular human?

For the first, just change the appearance. NPCs prepared in the toolset can be modified right there. For PCs and runtime creature modification, you’d use a script:

void main()
{
    object oPC = GetFirstPC();
    SetCreatureAppearanceType(oPC, APPEARANCE_TYPE_ELF); // body
    SetCreatureBodyPart(CREATURE_PART_HEAD, 10, oPC);    // head #10
    // SetPhenoType(PHENOTYPE_BIG, oPC);                 // fat elf
}

This does mean however that you won’t be able to attach human head to this body. There might be a human head pack for elves (scaled down), but I also haven’t seen it in the Vault.

Surely someone will link to a script project which allows interactive (in-game) character customization.

Second approach: I’m not aware of a thinner human (or anyone) phenotype than the standard (aka thin) one.

1 Like

You could also try

float SetObjectVisualTransform(object oObject, OBJECT_VISUAL_TRANSFORM_SCALE , float fValue, int nLerpType = OBJECT_VISUAL_TRANSFORM_LERP_NONE, float fLerpDuration = 0.0, int bPauseWithGame = TRUE)

do scale down the human a little bit. Does not make the human thinner but smaller. Drawback is that moving/running becomes a little bit weird if you scale down too much because movement speed and animation do not change but step length has. Requires EE.

Such a script project is for example this ;): https://neverwintervault.org/project/nwn1/hakpak/original-hakpak/customize-character-override-hak-ccoh

1 Like

Scaling human heads down to fit onto elven necks works too:

@Grymlorde linked up there to this tool - you may find it useful:

NWNArmory 1.2 (with source code) | The Neverwinter Vault

1 Like

It is possible but it is a lot of custom work, with limitations, the elf skeleton is very narrow
The funny thing is, and this part will sound like shameless self promotion, I am actually working on one and taking suggestions here: Stonehammer's Body Rebuild major update

If you want to go for elf body with human heads, my custom heads are usually made for all races

https://neverwintervault.org/project/nwn1/hakpak/original-hakpak/trisshead-all-females
https://neverwintervault.org/project/nwn1/hakpak/combined/stoneheads
https://neverwintervault.org/project/nwn1/hakpak/stonehammers-princess-or-something-giant-hair
https://neverwintervault.org/project/nwn1/hakpak/heads-eurgigas-mermaid

most of these are my earlier work and I have not checked it recently

1 Like

Thanks for all your answers ! My husband’s mage is supposed to be human AND skinny, that’s why I’m looking to see if we can make him look more like he should. :slight_smile:

I just thought of something…
If you are playing the NWN EE version you can easily scale an elf to human size

  • In the toolset, right click on the elf creature and select “Adjust Location”

elfscale01

  • When the location input window pops up select the “scale” input and put in 1.1

Now you have a human sized skinny guy.

There is probably a script to do this but that is beyond me at the moment.
edit: @NWShacker’s script above should work and you can add something like:

SetObjectVisualTransform(oPC, OBJECT_VISUAL_TRANSFORM_SCALE, 1.1, TRUE);
(I did not test that script by the way, I just cobbled it up and it did not say error on compile)

Note: these are custom parts so my elf is not very skinny