0 of 0

File information

Last updated

Original upload

Created by

AndrealphusVIII

Uploaded by

AndrealphusVIII

Virus scan

Safe to use

15 comments

  1. Sky91
    Sky91
    • premium
    • 39 kudos
    Hello there!

    I desperately need a working function to add a given sourcefile as master to a target file. I'm going nuts here! Yes, xEdit can do that. But i really need to code it into my script :(

    Hope you can help.. <3
    1. AndrealphusVIII
      AndrealphusVIII
      • premium
      • 1,735 kudos
      I'd recommend asking in the xEdit Discord in the xedit-scripting channel.
    2. Sky91
      Sky91
      • premium
      • 39 kudos
      Thanks! Hadn't thought they have a channel. I found a workaround for now. Leaves a mud trace in my script, but does what it should for now. Again, thanks for your response :)
  2. BraniyaKz
    BraniyaKz
    • premium
    • 4 kudos
    These are gold. Ty :)
    1. AndrealphusVIII
      AndrealphusVIII
      • premium
      • 1,735 kudos
      I'm glad you found them useful. Cheers!
  3. Katarsi
    Katarsi
    • premium
    • 126 kudos
    Apply filter for PDMs
    Can this script automatically assign PlayerRef, "set enable state to opposite of parent", and Z axis to -30000 to records that only have "Initially Disabled"? There are mods that do this and it's not a good practice, and I literally have to go through every record and patch this manually, which is tedious and time-consuming.
    1. AndrealphusVIII
      AndrealphusVIII
      • premium
      • 1,735 kudos
      I know what you mean. Unfortunately, this script only filters them and doesn't make any changes on its own.
    2. IamTT
      IamTT
      • member
      • 1 kudos
      could you explain how to get rid of PDMs in more detail?  Id like to remove the ones i found in my modlist but am unsure how to.
    3. AndrealphusVIII
      AndrealphusVIII
      • premium
      • 1,735 kudos
      PDMs only need removing if they're single records. If they're overrides, they don't need deleting.
      This is only really of use for mod authors tbh. If you're not sure what you're doing, leave them be.
  4. DeathVelvet
    DeathVelvet
    • member
    • 2 kudos
    Apply filter for modified records.. Thankyou :)
    1. AndrealphusVIII
      AndrealphusVIII
      • premium
      • 1,735 kudos
      You're welcome.
  5. spartan117ce
    spartan117ce
    • premium
    • 12 kudos
    the filter for referenced/unreferenced entries is useful, thanks.
    1. AndrealphusVIII
      AndrealphusVIII
      • premium
      • 1,735 kudos
      I'm glad to hear that.
  6. deleted120922003
    deleted120922003
    • account closed
    • 0 kudos
    Microsoft console is also at your help:
    Spoiler:  
    Show

    Rename a sequence of files:
    XYZfile1.mp3
    XYZfile2.mp3
    XYZfile3.mp3
    ...
    to
    file1.mp3
    file2.mp3
    file3.mp3
    ...
    Use command in Poweshell:

    get-childitem *.mp3 | foreach { rename-item $_ $_.Name.Replace("XYZ", "") }


    The free program "Everything" has also a great ability to mass rename...
    1. AndrealphusVIII
      AndrealphusVIII
      • premium
      • 1,735 kudos
      Thanks for the advice. Although I'm not sure how that's related to this resource.