Background for Skyrim SE
Member of the ArmorAddon script
stringfunctionGetModelPath(boolfirstPerson, boolfemale)Native

Description

Wiki Description

Returns the file path for the nif file representing the equipped model of the armor. (This function requires SKSE)

Documentation Comment

returns the model path of the particular model


Caveats

CK Wiki - Notes

  • This is to retrieve the nif file of the equipped model on an actor. Use Armor.GetModelPath(...) to retrieve the nif file of the armor as it appears on the ground.
  • Remember that this function returns string values from ArmorAddon objects, not from Armor objects. You can use Armor.GetNthArmorAddon(...) on Armor objects to quickly retrieve ArmorAddon objects, however.

Parameters

  1. boolfirstPerson

    CK Wiki Description

    Whether to get the file path of the biped armor model (false) or first person armor model (true). "True" only applicable to certain armor types.

  2. boolfemale

    CK Wiki Description

    Whether to get the file path of the male armor model (false) or female armor model (true).


Examples

No human-generated examples found for this function.

Auto-Generated Example

bool myBool__firstPerson
bool myBool__female

string returnedValue = myArmorAddon__toCallFunctionOn.GetModelPath(myBool__firstPerson, myBool__female)

Related Pages


Additional References

View this function’s page on the Skyrim Creation Kit Wiki

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.