Jump to content

[search/request] faction ID list


Recommended Posts

Posted

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.

 

Posted
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?

 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...