Jump to content
  • 0

Mass Delete Clutter from an esp


Wolfman5750

Question

Currently I have installed STEP Extended + REGS + MMO and so far it seems to be working well. Included in REGS I've installed JK's WHiterun. When looking certain directions, especially near the gate, I've noticed that there are large drops in framerate (55-25 and back up again). Generally, I run 45-60+ everywhere else.

 

I've read that one possible fix for this is to remove all of the Ivy which was added by the mod. Is there a way to search for and mass delete all of a certain type of entry, in this case ivy, from the esp using TES5Edit?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

I've read that one possible fix for this is to remove all of the Ivy which was added by the mod. Is there a way to search for and mass delete all of a certain type of entry, in this case ivy, from the esp using TES5Edit?

Replace 'Ivy' with exact Editor ID of a record to delete, and apply this script to a plugin or particular cells if need selective deleting. It will turn bold if something was removed.

unit RemoveRefsByObjectEditorID;

function Process(e: IInterface): Integer;
begin
  if EditorID(BaseRecord(e)) = 'Ivy' then
    RemoveNode(e);
end;

end.

Link to comment
Share on other sites

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
×
×
  • Create New...

Important Information

By using this site, you agree to our Guidelines, Privacy Policy, and Terms of Use.