Open main menu

UESPWiki β

Skyrim Mod:Mod File Format/Typed Value Field

< Mod / Skyrim: Skyrim Mod: File Formats: Mod File Format: Fields

A Typed Value is one where the value depends on the first character of the value's name. For mod files, this is the record's Editor ID. Only boolean, integer, float, and string types are used in mod files; the remainder appear to be available only for registry entries.

Character values are case-sensitive. The Internal ID is strictly used within the program code and is shown here for ease of reference.

Char Value Type Data Type/Size Internal ID Info
b boolean uint32 0 Boolean
i int uint32 3 Integer value
f float float32 5 Float value
s or S string lstring 6 Localized string
c char char 1 Character
h char char 2 Hex character?
u unsigned int uint32 4 Unsigned integer value
r RGB uint32 7 RGB value (alpha channel set to 0xFF)
a RGBA uint32 8 RGBA value
9 Any value that's not one of the above.