Open main menu

UESPWiki β

Oblivion Mod:Mod File Format/FACT

< Mod / Oblivion: Oblivion Mod: Modding: Mod File Format
To meet our site's higher standard of quality, this article or section may require cleanup. The user who placed this here had the following concern:
Should be converted to typical table format.
To leave a message about the cleanup for this article, please add it to this article's talk page.

A FACT record is a data structure that contains information about factions. Shown below is an example of its structure in Wrye Bash Mod Elements.

class MreFact(MelRecord):
    """Faction record."""
    type = 'FACT'
    flags = Flags(0L,Flags.getNames('hiddenFromPC','evil','specialCombat'))
    melSet = MelSet(
        MelString('EDID','eid'),
        MelString('FULL','full'),
        MelStructs('XNAM','Ii','relations',(FID,'faction'),'mod'),
        MelStruct('DATA','B',(flags,'flags',0L)),
        MelStruct('CNAM','f',('crimeGoldMultiplier',1)),
        MelGroups('ranks',
            MelStruct('RNAM','i','rank'),
            MelString('MNAM','male'),
            MelString('FNAM','female'),
            MelString('INAM','insignia'),),
        )