Fraying9981 Posted May 21, 2025 Posted May 21, 2025 Hi, can someone upload the faction ID list? UESP Wiki is incomplete, only lists a few. I'm looking exactly for this https://www.scribd.com/document/809219138/Faction-IDs but it's paywalled. thanks in advance!
traison Posted May 21, 2025 Posted May 21, 2025 Here you go. Copy the results to a text editor for sorting. { List all factions in selected file. } unit UserScript; function Process(e: IInterface): integer; var sig: string; begin sig := Signature(e); if sig <> 'FACT' then Exit; AddMessage(EditorID(e) + ' ' + IntToHex(FormID(e), 8)); end; end.
Fraying9981 Posted May 21, 2025 Author Posted May 21, 2025 5 hours ago, traison said: Here you go. Copy the results to a text editor for sorting. { List all factions in selected file. } unit UserScript; function Process(e: IInterface): integer; var sig: string; begin sig := Signature(e); if sig <> 'FACT' then Exit; AddMessage(EditorID(e) + ' ' + IntToHex(FormID(e), 8)); end; end. thank you! sorry i'm a bit of a beginner here, in which interface do I run this?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now