Skyrim Special Edition

File information

Last updated

Original upload

Created by

Carlos Leyva

Uploaded by

Papitas

Virus scan

Safe to use

Tags for this mod

42 comments

  1. Papitas
    Papitas
    • premium
    • 121 kudos
    Locked
    Sticky
    Changelog:

    V 1.1
    =======
    I addded some functions to import/export names to external files. This was done for batch renaming items you've already renamed.
    It exports the FormID along with its associated (FULL) name.
    When importing, it applies the associated name to a FormID, so it won't rename things that aren't there in your importing file.
    Files are saved in your xEdit folder as *.csv, if you want to manually inspect them.

    Example usage:
    Let's say you painstakingly renamed thousands of items and then your mod's author suddenly made changes that rendered your renamed records incompatible with the new ones.
    Instead of trying to solve conflicts, simply use this script to export your renamed items, create a new patch for the new mod's version and import your saved file to that patch.
    Voila! Now you have restored your hard work to the new version of the mod.

    Another thing it can be used for is for advanced search and replace this script can't do.
    Export the records you want to rename, open your exported *.csv file in Notepad++ or something, rename items there and then import that file with this script.

    Have fun!
  2. adjustedfocus
    adjustedfocus
    • premium
    • 2 kudos
    For anyone having mteFunctions.pas error, go to Edit Scripts folder then create a folder called "lib". Then download mteFunctions.pas from here and put it in that folder.

    Thank you for the great mod!
  3. supersurferdave
    supersurferdave
    • premium
    • 9 kudos
    I can't even describe how much of a time saver this is. You're amazing!
  4. Zireael1251
    Zireael1251
    • premium
    • 157 kudos
    Thank you so much! So much of my time has been saved now thanks to this, and time is immeasurably valuable!! T-T
  5. xazex101
    xazex101
    • member
    • 1 kudos
    Hi! Is there a script for copying the Editor Id and pasting it on the Full - Name? 
    1. Papitas
      Papitas
      • premium
      • 121 kudos
      You can use your Windows Notepad to create a new file named "Whatever.pas" inside your Edit Scripts folder and paste this in it:

      unit Whatever;

      interface
      uses xEditApi;

      implementation

      function Process(e: IInterface): Integer;
      begin
          SetElementEditValues(e, 'FULL', EditorId(e));
      end;

      end.


      Too much of a hassle to create a full mod page for this
    2. xazex101
      xazex101
      • member
      • 1 kudos
      Thanks for the quick reply! The script works like a charm! 😍😍
  6. Vyxri
    Vyxri
    • premium
    • 4 kudos
    Thank you for this. 
    I heart you so much right now.
  7. WhiteZhark
    WhiteZhark
    • member
    • 2 kudos
    There's an error of a missing ' on line 714 that causes the script to fail. Seems to run fine otherwise!
    1. Papitas
      Papitas
      • premium
      • 121 kudos
      Fuuuuu...

      Does it always fail or under some specific circumstances?
      When doing what?

      The problem here is that I've updated this script quite a lot and that error may be gone, but the new version is not releaseable because many features are missing.
    2. kape001
      kape001
      • premium
      • 18 kudos
      I'm renaming some armor pieces, and the same error pop up. See screenshot here. Currently it doesn't work for me.
    3. Papitas
      Papitas
      • premium
      • 121 kudos
      Well, now I have more info, but it's still not enough to get by.

      It seems to happen when using Prepend If...:

      • Does it happen when using other functions?
      • What are you writing in the text boxes?
      • What is the name of the item to be renamed? (it seems to me it's the Shino Virgin Destroyer Body)
      • Does this happen when renaming any other piece?
      • Does this happen if you change what you are writing in the text boxes?

      I have an idea.

      Maybe you are trying to use an apostrophe ' or % in any of your inputs. For example:

      • Prepend this: 100% real, no fake's
      • If this word exists: Body

      If that's the case, try to double the symbol, like this:

      • Prepend this: 100%% real, no fake''s
    4. kape001
      kape001
      • premium
      • 18 kudos
      The error pop up right after I hit "OK" on the apply script window, I've never had chances to do anything. As for other scripts, I've used AT-QuickChange a lot and it worked smoothly. 
    5. Papitas
      Papitas
      • premium
      • 121 kudos
      Oh, OK.
      I'll check that later.
    6. Papitas
      Papitas
      • premium
      • 121 kudos
      I've updated it.

      This version still worked for me, so I think it was an operating system language related issue.

      Please check it.
      The problem should have gone now.
  8. jtull1127
    jtull1127
    • premium
    • 9 kudos
    Hey great script, just wanted to know it it possible to use this to rename Ids as well as names ?
    1. Papitas
      Papitas
      • premium
      • 121 kudos
      Not right now.

      Right now I have a more developed (non stable) version on my PC, so I can't check this and I may be a bit wrong, but you can rename ids by searching for 'FULL' (apostrophes included) and replace it for 'EDID'
      That should do the trick.

      For changing names again, revert those changes.
  9. mingtow
    mingtow
    • member
    • 4 kudos
    How do I use this script?
    1. Papitas
      Papitas
      • premium
      • 121 kudos
      Right click on whatever you want to rename (you can even select many things at once) > run script > DM_RenameUtils
  10. Rodocastiza
    Rodocastiza
    • supporter
    • 18 kudos
    I love you.

    I used this to remove tags (I'm weird I know) to a mod that add hundreds of tagged items.
  11. foreverphoenix
    foreverphoenix
    • premium
    • 370 kudos
    This is such a godsend, thank you so much. <3