Jump to content
  • 0

Report Masters question


dunc001

Question

Is there a way of automatically removing the records found using the Report Masters script?  So for instance I want to remove a mod which has an awful lot of entries in my CR patch, is there a way to report them all and remove them rather than having to go through the report results and manually remove them one by one?

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Update script a bit, find this part

    if HasCheckMasters(sl) then
      AddMessage(Name(e) + ' \ ' + Name(el));

and replace with

    if HasCheckMasters(sl) then begin
      AddMessage(Name(e) + ' \ ' + Name(el));
      MarkModifiedRecursive(e);
    end;

It will mark found records as modified aka bold font in the left records tree.

  • Thanks 1
Link to comment
Share on other sites

  • 0

OK, so how easy would it be to add to the script so the records in question are highlighted or flagged in some way in the left pane (in the same way that conflicts are highlighted, only in a different color) so it's easier to locate them than currently having to copy and paste the IDs and search one at a time? I have several hundred records I need to locate/amend/remove so being able to easily identity them would make life a lot easier.

Edited by dunc001
Link to comment
Share on other sites

  • 0

Update script a bit, find this part

    if HasCheckMasters(sl) then
      AddMessage(Name(e) + ' \ ' + Name(el));

and replace with

    if HasCheckMasters(sl) then begin
      AddMessage(Name(e) + ' \ ' + Name(el));
      MarkModifiedRecursive(e);
    end;

It will mark found records as modified aka bold font in the left records tree.

Fantastic, thanks for that.  Will make life a LOT easier ::D:

Link to comment
Share on other sites

  • 0

This is brilliant! It still works.

The only strangeness I noticed: After running the script once, I delete all marked entries, but STILL there is something left.

This "modified" script should be part of the main distribution of xEdit.

On 7/19/2016 at 4:47 PM, zilav said:

Update script a bit, find this part

    if HasCheckMasters(sl) then
      AddMessage(Name(e) + ' \ ' + Name(el));

and replace with

    if HasCheckMasters(sl) then begin
      AddMessage(Name(e) + ' \ ' + Name(el));
      MarkModifiedRecursive(e);
    end;

It will mark found records as modified aka bold font in the left records tree.

 

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.