GetModelPath - Armor

Revision as of 10:56, 10 May 2012 by imported>Fg109 (Created page for GetModelPath)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

SKSE Member of: Armor Script, Weapon Script

Returns the file path for the nif file representing the world model of the armor.

Syntax

string Function GetModelPath(bool bFemalePath) native

Parameters

  • bFemalePath: Whether to get the file path of the male or female model of the armor.

Return Value

A string representing the file path of the nif file from the Data\Meshes folder.

Examples

; Retrieve the file path of the nif file for the male model of ArmorIronCuirass
String FilePath = (Game.GetForm(0x00012E49) as Armor).GetModelPath(False)
; Returns "Armor\Iron\Male\CuirassLightGND.nif"

Notes

  • This is to retrieve the nif file of the world model. That means the model you see when the armor is on the ground, not when it is equipped.

See Also