Daemonjax

Members
  • Content Count

    24
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Daemonjax


  1. For Kotor2 when  converting .wav files in StreamSounds, I needed to use skip=470 in the batch file. 

    I used a hexeditor to ensure it was removing the correct number of bytes, and a value of 470 produced the correct result.  Which makes sense, because the header is 470 bytes long (for the files I needed to modify anyways). :D 

    I created my own batch file that simply outputs the header-less .wav into a folder named "output" without changing its name:

    for %%F in (*.wav) do ddrelease64 if=%%~nF.wav of=output\%%~nF.wav bs=1 skip=470
    pause

    And I (of course) had to create my own header file for the conversion back (again by using a hexeditor to copy paste the 470 byte header):

    FF F3 60 C4 00 00 00 03 48 00 00 00 00 4C 41 4D 45 33 2E 39 33 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 4C 41 4D 45 33 2E 39 33 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 FF F3 62 C4 8F 00 00 03 48 00 00 00 00 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 4C 41 4D 45 33 2E 39 33 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 FF F3 62 C4 FF 00 00 03 48 00 00 00 00 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55

    I created and used the following batch file to add the header back (it simply outputs the re-headered file into a folder named "with-header" without changing the filename):

    for %%F in (*.wav) do copy /b "header.bin" + "%%~nF.wav" "with_header\%%~nF.wav"
    pause

     

    I did the above because I found myself needing to replace THE MOST ANNOYING SOUND EFFECTS EVER IN A VIDEO GAME: amb_elecwire_A and amb_elecwire_B

    Holy crap those sounds sucked so bad I thought it was a bug because it sounds like corrupted white noise. Those files both had a header 470 bytes long.  I don't know if every .wav file's header is 470 bytes long, but it's easy enough to confirm using a hexeditor. 

    These weren't raw wav files or mp3 files disguised as wav files... they were just straight up normal wav files with a normal wav file header that starts with RIFF -- they just originally had an additional bullshit 470 byte header.

    If I was going to write a tool to do all this for me, I'd do it in java...  If the file starts with the magic bytes FF F3, then it has a header that needs to be removed.  Then, I'd find the first instance of the magic bytes 52 49 46 46 to indicate the start of the sound wav, while storing the header in another file named original_filename.header.  But maybe all the headers in StreamSounds ARE the same, which would simplify things a little bit by hardcoding the header -- but I'd still code want the code it to double check that assumption. 

    On second thought, I'd still code it without baking in the assumption that it knows what the header bytes/length are and just figure it out programmatically on a per file basis and store the header info as header_length.extension (instead of file_name.header) to greatly reduce the number of extra files created -- best of both worlds.

     

    Tangential thought: Some sounds effects "pop" ingame when they start playing or when panning the camera near the output source (not the files I made to replace the above two, those work perfectly!), and I have wonder if it's related to their headers.


  2. On 4/8/2021 at 6:57 AM, M'aiqTheLiar said:

    ...  "TSL Modern Camera Overhaul" over at NexusMods (I'm using the 90 degree FOV). I don't know if there is anything that can be done about this.

     

    You can extract the vanilla camerastyle.2da using Kotor Tool, and edit it yourself to make your own camera mod that only affects what you want. 

    Going purely from memory... You should only need to increase the fov (the "viewangle" column) on the "Default", "Ebon Hawk", "Outdoors", and "Combat" rows.

    I don't use that mod because reasons, but it's easy enough to make your own camera style that does the minimum amount of edits needed.  And anything past ~70 viewangle  (remember this is vertical FOV, not horizontal) causes fishbowling, but I guess some people like that?  Weird.


  3. Here's the best link on the topic:

    https://www.pcgamingwiki.com/wiki/Star_Wars:_Knights_of_the_Old_Republic_II_-_The_Sith_Lords#Full_Screen_Movies

     

    When you hexedit the .exe file, be sure to match your screen resolution exactly -- otherwise, it won't work.  For example, you can't use the hexedit code for 1920x1080 res when your screen is actually 1920x1200 -- close enough won't work in this instance and it'll have no effect whatsoever --  this happened to me and it left me scratching my head for a bit.

    Note: It'll make the videos stretch to fit your screen no matter what res the bink videos are so you can do this even without downloading the AI upscaled widescreen  bink videos and it'll still work and look OKish.


  4. Better Stealth Toggle


    An autohotkey script that makes stealth much less of a chore to use.

     

     

    I always hated having to manually dismiss the popup when entering stealth mode and AGAIN when disabling solo mode.

     

    This fixes that.

     

     

    How it works:

     

    You define a single key that when pressed will either:

     

    1. put the currently controlled character into stealth mode; or

    2. disables solo mode (which also takes you out of stealth mode).

     

    In both cases the popup is dismissed when you release the key.

     

    So... You just need to set up the script to use your preferred key and also tell it what keys are bound ingame to your solo mode and stealth mode... and have the script running while running the game, of course.

     

    You can edit the script using notepad or whatever. I made notes next to the parts that need to be changed

     

    NOTES:

     

    1) I made three notes within the script where you'll need to make changes to make this work for you (keybinds).

    2) The script may need some customized tweaking because it taps a pixel at screen location X=53, Y=1000 in order to detect if the currently controlled character is in stealth mode or not. I'm running the game at 1920x1080, so if your resolution is different, this won't work "out of the box".

    3) Let me know if it doesn't work and I'll work with you to fix it.

    4) Also, I can only play the game in windowed mode and I don't think it'll work in fullscreen... so I won't be able to help if it doesn't work in fullscreen mode for you.

     

    You can download autohotkey here: http://www.autohotkey.com/


     


  5. Will you guys allow KOTOR 1 Bug Fix v1.0 be compatible, or did you guys at least fix the most notorious bug in KOTOR called "Bastila Romance Bug"?

     

    Random Hater: I'm going to kill you! You just turned this website into a M+ Video Game!

     

    Me: Oh, please. Is that an actual sin?

     

    Random Hater: YES!

     

    I'm using the KOTOR Bug Fix Attempt 1.0 mod you're referring to, and the only conflicting file was bp_calo_ambush_2.utc.

     

     

     K1BugfixAtt 1.0 -- I imagine these mods do the same thing, so conflict is expected.  Update: Verified that they're not identical at the hex level, but I could not see any differences when compared using kotor tool.  I'd just use the newer one (K1R's version).
     • Warning: A file named bp_calo_ambush_2.utc already exists in the Override folder. Skipping file...

     

    I don't know for sure if everything is working as intended, but so far it seems to and I haven't seen anything that would make me suspect otherwise. That bugfix mod just replaces a few scripts and dialog files (and that one utc file)... those other files aren't touched by K1R.


  6. This is for informational purposes:

     

    Running the installer (while sandboxed using sandboxieonto my heavilly modded (over 60 mods) kotor game folder produced the following warnings, along with the names of the mods which contain the conflicting file(s):

     

     

     K1BugfixAtt 1.0 -- I imagine these mods do the same thing, so conflict is expected.  Update: Verified that they're not identical at the hex level, but I could not see any differences when compared using kotor tool.  I'd just use the newer one (K1R's version).
     • Warning: A file named bp_calo_ambush_2.utc already exists in the Override folder. Skipping file...
     
     Juhani cat-like-head mod (items in locker folder section of mod -- which I could live without or easilly merge since it probably just uses the dialogue to create the backpack; Update: verified it's 3 added calls to  fire the script k_hjuh_GiveLugg.ncs -- download merged dlg file: https://dl.dropboxusercontent.com/u/32777109/kotor/k_hjuh_dialog.dlg
     • Warning: A file named k_hjuh_dialog.dlg already exists in the Override folder. Skipping file...
     
     Restored Movies -- I imagine these mods do the same thing, so conflict is expected.  Update: Verified they're identical:
     • Warning: A file named k_ren_taris03.ncs already exists in the Override folder. Skipping file...
     
     Restored Movies -- I imagine these mods do the same thing, so conflict is expected.  Update: Verified they're identical:
     • Warning: A file named k_ren_unkturret.ncs already exists in the Override folder. Skipping file...
     
     LordDeathRay's KOTOR Improvement Mod (LKIM) -- I can merge the differences manually if need be:  Update: Minor differences in appearance and inventory.  I'll just go with K1R's version for safety. Note: I had already removed a lot of files from the LKIM mod because I didn't agree with his changes.
     • Warning: A file named kas25_mandcomm.utc already exists in the Override folder. Skipping file...
     
     Lightsabre forms (the 14 form version): Update: Verified I just needed to add the firing of a script.  Merged download: https://dl.dropboxusercontent.com/u/32777109/kotor/kor39_utharwynn.dlg
     • Warning: A file named kor39_utharwynn.dlg already exists in the Override folder. Skipping file...
     
     Sharina Fizark Restoration 1.1 -- I imagine these mods do the same thing, so conflict is expected.  Update: Verified the dialogue files are not identical.  Since K1R advertises it has "Restored Sharina Fizzark on Dantooine", I would use K1R's version and uninstall the restoration files made by previously by Sekan.
     • Warning: A file named tat17_03shari_01.dlg already exists in the Override folder. Skipping file...
     
     Whatever... We can safely ignore these two:
     • Warning: A file named PFBBS01.tga already exists in the Override folder. Skipping file...
     • Warning: A file named PMBBS01.tga already exists in the Override folder. Skipping file...
     
     
     Brotherhood of Shadow: Solomon's Revenge (BOS SR):  Hopefully can resolve using JRL merger tool: Update: Merged BOS SR + K1R global.jrl (untested): https://dl.dropboxusercontent.com/u/32777109/kotor/global.jrl
     • Warning: Unable to find a field label matching "Categories\37\EntryList\5\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\6\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\7\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\8\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\9\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\10\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\11\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\12\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\40\EntryList\1\Text(strref)" in global.jrl, skipping...
     
    File listing of K1R tslpatcher backup folder: 

     Volume in drive R has no label.
     Volume Serial Number is 1DE2-1F24
     
     Directory of R:\K1R 1.0\K1R 1.0\backup
     
    06/16/2015  05:17 AM    <DIR>          .
    06/16/2015  05:17 AM    <DIR>          ..
    06/16/2015  05:17 AM         5,389,946 dialog.tlk
    06/16/2015  05:17 AM             5,890 _m40acdart03999_.wav
    06/16/2015  05:17 AM            10,642 ba02cs001.wav
    06/16/2015  05:17 AM            15,610 ba16cs005.wav
    06/16/2015  05:17 AM             8,266 ba18cs005a.wav
    06/16/2015  05:17 AM            19,714 ba18cs005b.wav
    06/16/2015  05:17 AM            65,938 ba55cs005.wav
    06/16/2015  05:17 AM            43,906 N_M1ANLEVE98003_.wav
    06/16/2015  05:17 AM            59,026 N_M1ANPOP094000_.wav
    06/16/2015  05:17 AM            43,690 N_M1ANPOP094001_.wav
    06/16/2015  05:17 AM            48,874 N_M1ANPOP095005_.wav
    06/16/2015  05:17 AM            13,018 N_M1ANPOP096000_.wav
    06/16/2015  05:17 AM            47,362 N_M1ANPOP096004_.wav
    06/16/2015  05:17 AM            70,258 n_m1anpop096005_.wav
    06/16/2015  05:17 AM            35,050 N_M1ANPOP096006_.wav
    06/16/2015  05:17 AM            53,194 N_M1ANPOP097000_.wav
    06/16/2015  05:17 AM            52,978 N_M1ANPOP097001_.wav
    06/16/2015  05:17 AM            54,058 N_M1ANTRAS98027_.wav
    06/16/2015  05:17 AM            57,730 n_m1antras98028_.wav
    06/16/2015  05:17 AM            48,226 N_M1ANTRAS98029_.wav
    06/16/2015  05:17 AM            57,946 N_M1ANTRAS98036_.wav
    06/16/2015  05:17 AM            38,290 N_M1ANTRAS98037_.wav
    06/16/2015  05:17 AM            44,338 N_M1ANTRAS98038_.wav
    06/16/2015  05:17 AM            47,146 N_M1ANTRAS98046_.wav
    06/16/2015  05:17 AM            27,922 N_M1ANTRAS98047_.wav
    06/16/2015  05:17 AM            28,570 N_M1ANTRAS98048_.wav
    06/16/2015  05:17 AM            40,234 N_M1ANTRAS98057_.wav
    06/16/2015  05:17 AM            28,138 N_M1ANTRAS98058_.wav
    06/16/2015  05:17 AM            59,674 N_M1ANTRAS98068_.wav
    06/16/2015  05:17 AM            54,706 N_M1ANTRAS98069_.wav
    06/16/2015  05:17 AM            28,786 N_M1ANTRAS98070_.wav
    06/16/2015  05:17 AM           101,794 n_m1antras98078_.wav
    06/16/2015  05:17 AM            57,514 n_m1antras98079_.wav
    06/16/2015  05:17 AM            32,890 n_m1antras98082_.wav
    06/16/2015  05:17 AM            47,578 N_M1ANTRAS98088_.wav
    06/16/2015  05:17 AM            39,154 N_M1ANTRAS98092_.wav
    06/16/2015  05:17 AM            48,658 n_m1antras98094_.wav
    06/16/2015  05:17 AM            61,402 n_m1antras98095_.wav
    06/16/2015  05:17 AM            49,522 n_m1antras98096_.wav
    06/16/2015  05:17 AM            67,450 n_m1antras98097_.wav
    06/16/2015  05:17 AM            60,538 N_M1ANTRAS98102_.wav
    06/16/2015  05:17 AM            62,698 N_M1ANTRAS98103_.wav
    06/16/2015  05:17 AM            61,834 N_M1ANTRAS98104_.wav
    06/16/2015  05:17 AM            35,266 n_m1antras98105_.wav
    06/16/2015  05:17 AM            27,274 N_M1ANTRAS98109_.wav
    06/16/2015  05:17 AM            40,018 N_M1ANTRAS98116_.wav
    06/16/2015  05:17 AM            27,706 N_M1AOPOP097001_.wav
    06/16/2015  05:17 AM            71,986 N_M1AOPOP097008_.wav
    06/16/2015  05:17 AM            67,234 N_M1AOPOP099005_.wav
    06/16/2015  05:17 AM            79,114 N_M1AOPOP099010_.wav
    06/16/2015  05:17 AM           124,690 N_M1AOPOP099012_.wav
    06/16/2015  05:17 AM            30,082 N_M1AOPOP099017_.wav
    06/16/2015  05:17 AM            45,634 N_M1AOTRAS99027_.wav
    06/16/2015  05:17 AM            55,570 N_M1AOTRAS99068_.wav
    06/16/2015  05:17 AM            57,298 N_M1AOTRAS99069_.wav
    06/16/2015  05:17 AM            24,682 N_M1AOTRAS99070_.wav
    06/16/2015  05:17 AM            46,066 N_M1AOTRAS99073_.wav
    06/16/2015  05:17 AM            63,562 N_M1AOTRAS99074_.wav
    06/16/2015  05:17 AM            61,834 N_M1AOTRAS99075_.wav
    06/16/2015  05:17 AM            74,362 N_M1AOTRAS99077_.wav
    06/16/2015  05:17 AM            48,442 N_M1AOTRAS99078_.wav
    06/16/2015  05:17 AM            47,362 N_M1AOTRAS99079_.wav
    06/16/2015  05:17 AM            49,090 N_M1AOTRAS99086_.wav
    06/16/2015  05:17 AM            43,258 N_M1AOTRAS99090_.wav
    06/16/2015  05:17 AM            60,106 N_M1AOTRAS99104_.wav
    06/16/2015  05:17 AM            16,258 n_m1bncart01030_.wav
    06/16/2015  05:17 AM           161,200 manm26aa_loc.mod
    06/16/2015  05:17 AM            13,615 tar_m10aa_loc.mod
    06/16/2015  05:17 AM         1,623,396 danm13.mod
    06/16/2015  05:17 AM           649,173 danm14aa.mod
    06/16/2015  05:17 AM           604,625 danm14ab.mod
    06/16/2015  05:17 AM         1,132,031 danm14ac.mod
    06/16/2015  05:17 AM           168,922 danm14ae.mod
    06/16/2015  05:17 AM         1,799,806 kas_m24aa.mod
    06/16/2015  05:17 AM           619,390 korr_m37aa.mod
    06/16/2015  05:17 AM         1,326,246 lev_m40aa.mod
    06/16/2015  05:17 AM           306,339 lev_m40ad.mod
    06/16/2015  05:17 AM         1,625,657 manm26aa.mod
    06/16/2015  05:17 AM           959,647 manm26ab.mod
    06/16/2015  05:17 AM           895,570 manm26ad.mod
    06/16/2015  05:17 AM         1,112,391 manm26ae.mod
    06/16/2015  05:17 AM         1,060,572 manm28aa.mod
    06/16/2015  05:17 AM            44,405 STUNT_42.mod
    06/16/2015  05:17 AM           737,897 tar_m02ad.mod
    06/16/2015  05:17 AM         1,258,930 tar_m02ae.mod
    06/16/2015  05:17 AM           813,754 tar_m03aa.mod
    06/16/2015  05:17 AM           367,123 tar_m03ab.mod
    06/16/2015  05:17 AM           406,004 tar_m03ad.mod
    06/16/2015  05:17 AM           865,544 tar_m03ae.mod
    06/16/2015  05:17 AM           367,934 tar_m03af.MOD
    06/16/2015  05:17 AM         1,663,474 tar_m04aa.mod
    06/16/2015  05:17 AM           906,845 tar_m08aa.mod
    06/16/2015  05:17 AM           590,527 tar_m09aa.mod
    06/16/2015  05:17 AM           638,729 tar_m10aa.mod
    06/16/2015  05:17 AM           973,999 tat_m17aa.mod
    06/16/2015  05:17 AM         2,394,030 tat_m18aa.mod
    06/16/2015  05:17 AM           746,927 tar_m02aa.mod
    06/16/2015  05:17 AM             4,653 heads.2da
    06/16/2015  05:17 AM           106,954 appearance.2da
    06/16/2015  05:17 AM            23,753 spells.2da
    06/16/2015  05:17 AM             1,662 forceshields.2da
    06/16/2015  05:17 AM            27,332 globalcat.2da
    06/16/2015  05:17 AM            17,173 placeables.2da
    06/16/2015  05:17 AM            15,107 visualeffects.2da
    06/16/2015  05:17 AM           132,865 global.jrl
    06/16/2015  05:17 AM         1,464,291 k1r_paztourney.mod
    06/16/2015  05:17 AM             2,101 k1r_oilslick.utp
    06/16/2015  05:17 AM         1,126,953 unk_m44aa.mod
    06/16/2015  05:17 AM           666,886 tar_m05aa.mod
    06/16/2015  05:17 AM           102,872 tar_m03ac.mod
    06/16/2015  05:17 AM           663,549 tar_m10ab.mod
    06/16/2015  05:18 AM           907,195 lev_m40ab.mod
    06/16/2015  05:18 AM            67,196 kor33_bartender.dlg
    06/16/2015  05:18 AM            97,537 tat17_08yuka_01.dlg
    06/16/2015  06:13 AM                 0 listing.txt
                 115 File(s)     40,749,833 bytes
                   2 Dir(s)   3,839,922,176 bytes free

     
    It's easy for me to trace back which previous mod I installed caused the conflict due to how I have my folders structured.  And since I ran the installer sandboxed, no actual changes were made to my game folder.
     
    There's no very easy way to merge dlg files (unless all the changes are documented).  I have two mods which touch dialog.tlk (PC Response Moderation and, once again, Lightsabre Forms) so there's another potential issue.  Then there's also keeping your finger's crossed for the success of JRL merger tool and the robustness of the K1R changes.ini file.
     
     
     
    Update1:
     
    I get even more global.jrl warnings while running K1R's installer on a fresh copy of global.jrl that I extracted myself from _newbif.bif.  What's up with that?  Dunno, but my merging experiment ends here for now.

     • Warning: Unable to find a field label matching "Categories\37\EntryList\5\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\6\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\7\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\8\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\9\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\10\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\11\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\37\EntryList\12\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\40\EntryList\1\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\101\EntryList\0\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\101\EntryList\1\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\101\EntryList\2\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\101\Name(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\102\EntryList\0\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\102\EntryList\1\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\102\EntryList\2\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\102\EntryList\3\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\102\EntryList\4\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\102\EntryList\5\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\102\EntryList\6\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\102\EntryList\7\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\102\EntryList\8\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\102\EntryList\9\Text(strref)" in global.jrl, skipping...
     • Warning: Unable to find a field label matching "Categories\102\Name(strref)" in global.jrl, skipping...

     
     
    Update2:
     
    Ahh... figured it out:  It seems that the global.jrl included in the tslpatcher folder has already been modified, and so tslpatcher needs that one to be present to perform its diff on.  Heh, kinda defeats the purpose of using tslpatcher at all for that file.  Anyways, the merge appears to be successful:
     

    The "ID" value for entrylist 3 at index 0 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 0 with new value in second file!
    The "End" value for entrylist 4 at index 0 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 0 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 4 at index 0 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 0 with new value in second file!
    The "ID" value for entrylist 5 at index 0 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 5 at index 0 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 0 with new value in second file!
    The "End" value for entrylist 6 at index 0 in the second file is modified, using it.
    The "ID" value for entrylist 6 at index 0 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 6 at index 0 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 0 with new value in second file!
    Adding new ExoLocSubstring "0" to field "Name" from the second file for entry at index 4.
    The "ID" value for entrylist 0 at index 4 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 4 with new value in second file!
    The "ID" value for entrylist 1 at index 4 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 1 at index 4 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 4 with new value in second file!
    The "ID" value for entrylist 2 at index 4 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 4 with new value in second file!
    The "ID" value for entrylist 3 at index 4 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 4 with new value in second file!
    The "ID" value for entrylist 4 at index 4 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 4 with new value in second file!
    The "End" value for entrylist 5 at index 4 in the second file is modified, using it.
    The "ID" value for entrylist 5 at index 4 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 5 at index 4 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 4 with new value in second file!
    The "ID" value for entrylist 6 at index 4 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 4 with new value in second file!
    The "End" value for entrylist 7 at index 4 in the second file is modified, using it.
    The "ID" value for entrylist 7 at index 4 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 7 at index 4 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 4 with new value in second file!
    The "End" value for entrylist 1 at index 6 in the second file is modified, using it.
    The "ID" value for entrylist 1 at index 6 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 6 with new value in second file!
    The "ID" value for entrylist 2 at index 6 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 6 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 6 with new value in second file!
    The "ID" value for entrylist 4 at index 6 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 6 with new value in second file!
    The "ID" value for entrylist 5 at index 6 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 6 with new value in second file!
    The "End" value for entrylist 6 at index 6 in the second file is modified, using it.
    The "ID" value for entrylist 6 at index 6 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 6 with new value in second file!
    The "ID" value for entrylist 0 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "ID" value for entrylist 1 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "End" value for entrylist 2 at index 7 in the second file is modified, using it.
    The "ID" value for entrylist 2 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "End" value for entrylist 3 at index 7 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "ID" value for entrylist 4 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "ID" value for entrylist 5 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "ID" value for entrylist 6 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "ID" value for entrylist 7 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "ID" value for entrylist 8 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "ID" value for entrylist 9 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "ID" value for entrylist 10 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "ID" value for entrylist 11 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "End" value for entrylist 12 at index 7 in the second file is modified, using it.
    The "ID" value for entrylist 12 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "End" value for entrylist 13 at index 7 in the second file is modified, using it.
    The "ID" value for entrylist 13 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "ID" value for entrylist 14 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "End" value for entrylist 15 at index 7 in the second file is modified, using it.
    The "ID" value for entrylist 15 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "ID" value for entrylist 16 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "End" value for entrylist 17 at index 7 in the second file is modified, using it.
    The "ID" value for entrylist 17 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "ID" value for entrylist 18 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "ID" value for entrylist 19 at index 7 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 7 with new value in second file!
    The "End" value for entrylist 2 at index 9 in the second file is modified, using it.
    The "ID" value for entrylist 2 at index 9 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 9 with new value in second file!
    The "End" value for entrylist 3 at index 9 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 9 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 9 with new value in second file!
    The "End" value for entrylist 7 at index 11 in the second file is modified, using it.
    The "ID" value for entrylist 7 at index 11 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 11 with new value in second file!
    The "End" value for entrylist 8 at index 11 in the second file is modified, using it.
    The "ID" value for entrylist 8 at index 11 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 11 with new value in second file!
    The "ID" value for entrylist 0 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "ID" value for entrylist 1 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "ID" value for entrylist 2 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "ID" value for entrylist 3 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "ID" value for entrylist 4 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "ID" value for entrylist 5 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "ID" value for entrylist 6 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "End" value for entrylist 7 at index 12 in the second file is modified, using it.
    The "ID" value for entrylist 7 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "ID" value for entrylist 8 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "End" value for entrylist 9 at index 12 in the second file is modified, using it.
    The "ID" value for entrylist 9 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "ID" value for entrylist 10 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "ID" value for entrylist 11 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "ID" value for entrylist 12 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "End" value for entrylist 13 at index 12 in the second file is modified, using it.
    The "ID" value for entrylist 13 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "End" value for entrylist 14 at index 12 in the second file is modified, using it.
    The "ID" value for entrylist 14 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "End" value for entrylist 15 at index 12 in the second file is modified, using it.
    The "ID" value for entrylist 15 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "End" value for entrylist 16 at index 12 in the second file is modified, using it.
    The "ID" value for entrylist 16 at index 12 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 12 with new value in second file!
    The "ID" value for entrylist 2 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 3 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 4 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 5 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 6 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 7 at index 13 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 7 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 8 at index 13 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 8 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 9 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 10 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "End" value for entrylist 11 at index 13 in the second file is modified, using it.
    The "ID" value for entrylist 11 at index 13 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 11 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "End" value for entrylist 12 at index 13 in the second file is modified, using it.
    The "ID" value for entrylist 12 at index 13 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 12 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "End" value for entrylist 13 at index 13 in the second file is modified, using it.
    The "ID" value for entrylist 13 at index 13 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 13 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 14 at index 13 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 14 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 15 at index 13 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 15 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 16 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 17 at index 13 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 17 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 18 at index 13 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 18 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 19 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 20 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "End" value for entrylist 21 at index 13 in the second file is modified, using it.
    The "ID" value for entrylist 21 at index 13 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 21 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "End" value for entrylist 22 at index 13 in the second file is modified, using it.
    The "ID" value for entrylist 22 at index 13 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 22 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "End" value for entrylist 23 at index 13 in the second file is modified, using it.
    The "ID" value for entrylist 23 at index 13 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 23 at index 13 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 13 with new value in second file!
    The "ID" value for entrylist 0 at index 16 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 16 with new value in second file!
    The "ID" value for entrylist 1 at index 16 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 16 with new value in second file!
    The "End" value for entrylist 2 at index 16 in the second file is modified, using it.
    The "ID" value for entrylist 2 at index 16 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 16 with new value in second file!
    The "ID" value for entrylist 3 at index 16 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 16 with new value in second file!
    The "ID" value for entrylist 4 at index 16 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 16 with new value in second file!
    The "End" value for entrylist 6 at index 16 in the second file is modified, using it.
    The "ID" value for entrylist 6 at index 16 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 16 with new value in second file!
    The "ID" value for entrylist 1 at index 19 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 1 at index 19 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 19 with new value in second file!
    The "ID" value for entrylist 2 at index 19 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 2 at index 19 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 19 with new value in second file!
    The "ID" value for entrylist 2 at index 20 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 20 with new value in second file!
    The "End" value for entrylist 3 at index 20 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 20 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 20 with new value in second file!
    The "ID" value for entrylist 5 at index 20 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 20 with new value in second file!
    The "End" value for entrylist 6 at index 20 in the second file is modified, using it.
    The "ID" value for entrylist 6 at index 20 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 20 with new value in second file!
    The "ID" value for entrylist 1 at index 21 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 21 with new value in second file!
    The "ID" value for entrylist 2 at index 21 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 21 with new value in second file!
    The "ID" value for entrylist 3 at index 21 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 21 with new value in second file!
    The "End" value for entrylist 4 at index 21 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 21 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 21 with new value in second file!
    The "ID" value for entrylist 5 at index 21 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 21 with new value in second file!
    The "ID" value for entrylist 6 at index 21 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 21 with new value in second file!
    The "End" value for entrylist 8 at index 21 in the second file is modified, using it.
    The "ID" value for entrylist 8 at index 21 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 21 with new value in second file!
    The "ID" value for entrylist 3 at index 22 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 3 at index 22 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 22 with new value in second file!
    The "ID" value for entrylist 4 at index 22 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 22 with new value in second file!
    The "ID" value for entrylist 5 at index 22 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 5 at index 22 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 22 with new value in second file!
    The "End" value for entrylist 3 at index 25 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 25 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 25 with new value in second file!
    The "End" value for entrylist 4 at index 25 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 25 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 25 with new value in second file!
    The "ID" value for entrylist 1 at index 26 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 26 with new value in second file!
    The "End" value for entrylist 2 at index 26 in the second file is modified, using it.
    The "ID" value for entrylist 2 at index 26 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 26 with new value in second file!
    The "ID" value for entrylist 3 at index 26 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 26 with new value in second file!
    The "End" value for entrylist 4 at index 26 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 26 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 26 with new value in second file!
    The "ID" value for entrylist 2 at index 27 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 27 with new value in second file!
    The "ID" value for entrylist 3 at index 27 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 27 with new value in second file!
    The "ID" value for entrylist 1 at index 28 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 28 with new value in second file!
    The "ID" value for entrylist 2 at index 28 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 28 with new value in second file!
    The "ID" value for entrylist 3 at index 28 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 28 with new value in second file!
    The "End" value for entrylist 3 at index 30 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 30 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 30 with new value in second file!
    The "ID" value for entrylist 4 at index 30 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 30 with new value in second file!
    The "End" value for entrylist 5 at index 30 in the second file is modified, using it.
    The "ID" value for entrylist 5 at index 30 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 30 with new value in second file!
    The "End" value for entrylist 3 at index 32 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 32 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 3 at index 32 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 32 with new value in second file!
    The "End" value for entrylist 4 at index 32 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 32 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 32 with new value in second file!
    The "End" value for entrylist 5 at index 32 in the second file is modified, using it.
    The "ID" value for entrylist 5 at index 32 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 5 at index 32 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 32 with new value in second file!
    The "End" value for entrylist 6 at index 32 in the second file is modified, using it.
    The "ID" value for entrylist 6 at index 32 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 6 at index 32 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 32 with new value in second file!
    The "ID" value for entrylist 3 at index 34 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 34 with new value in second file!
    The "End" value for entrylist 4 at index 34 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 34 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 4 at index 34 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 34 with new value in second file!
    The "End" value for entrylist 5 at index 34 in the second file is modified, using it.
    The "ID" value for entrylist 5 at index 34 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 34 with new value in second file!
    The "ID" value for entrylist 6 at index 34 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 6 at index 34 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 34 with new value in second file!
    The "ID" value for entrylist 7 at index 34 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 34 with new value in second file!
    The "End" value for entrylist 8 at index 34 in the second file is modified, using it.
    The "ID" value for entrylist 8 at index 34 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 34 with new value in second file!
    The "End" value for entrylist 9 at index 34 in the second file is modified, using it.
    The "ID" value for entrylist 9 at index 34 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 34 with new value in second file!
    The "ID" value for entrylist 2 at index 36 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 36 with new value in second file!
    The "ID" value for entrylist 3 at index 36 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 36 with new value in second file!
    The "ID" value for entrylist 2 at index 37 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 37 with new value in second file!
    Adding new ExoLocSubstring "0" to field "Text" from the second file for entry at index 37.
    The "End" value for entrylist 3 at index 37 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 37 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 37 with new value in second file!
    Adding new ExoLocSubstring "0" to field "Text" from the second file for entry at index 37.
    The "ID" value for entrylist 4 at index 37 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 37 with new value in second file!
    Adding new ExoLocSubstring "0" to field "Text" from the second file for entry at index 37.
    Copying new entry Categories\37\EntryList\5\ found in second file.
    Copying new entry Categories\37\EntryList\6\ found in second file.
    Copying new entry Categories\37\EntryList\7\ found in second file.
    Copying new entry Categories\37\EntryList\8\ found in second file.
    Copying new entry Categories\37\EntryList\9\ found in second file.
    Copying new entry Categories\37\EntryList\10\ found in second file.
    Copying new entry Categories\37\EntryList\11\ found in second file.
    Copying new entry Categories\37\EntryList\12\ found in second file.
    Copying new entry Categories\37\EntryList\13\ found in second file.
    Copying new entry Categories\37\EntryList\14\ found in second file.
    Copying new entry Categories\37\EntryList\15\ found in second file.
    The "ID" value for entrylist 1 at index 39 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 39 with new value in second file!
    The "End" value for entrylist 2 at index 39 in the second file is modified, using it.
    The "ID" value for entrylist 2 at index 39 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 2 at index 39 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 39 with new value in second file!
    The "End" value for entrylist 3 at index 39 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 39 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 3 at index 39 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 39 with new value in second file!
    Copying new entry Categories\40\EntryList\1\ found in second file.
    The "ID" value for entrylist 1 at index 42 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 1 at index 42 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 42 with new value in second file!
    The "ID" value for entrylist 2 at index 42 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 2 at index 42 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 42 with new value in second file!
    The "ID" value for entrylist 3 at index 42 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 42 with new value in second file!
    The "ID" value for entrylist 4 at index 42 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 42 with new value in second file!
    The "ID" value for entrylist 5 at index 42 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 5 at index 42 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 42 with new value in second file!
    The "ID" value for entrylist 6 at index 42 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 6 at index 42 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 42 with new value in second file!
    The "ID" value for entrylist 7 at index 42 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 7 at index 42 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 42 with new value in second file!
    The "ID" value for entrylist 8 at index 42 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 8 at index 42 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 42 with new value in second file!
    The "ID" value for entrylist 9 at index 42 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 9 at index 42 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 42 with new value in second file!
    The "End" value for entrylist 10 at index 42 in the second file is modified, using it.
    The "ID" value for entrylist 10 at index 42 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 10 at index 42 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 42 with new value in second file!
    The "End" value for entrylist 11 at index 42 in the second file is modified, using it.
    The "ID" value for entrylist 11 at index 42 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 11 at index 42 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 42 with new value in second file!
    The "End" value for entrylist 3 at index 44 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 44 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 3 at index 44 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 44 with new value in second file!
    The "ID" value for entrylist 4 at index 44 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 44 with new value in second file!
    The "End" value for entrylist 5 at index 44 in the second file is modified, using it.
    The "ID" value for entrylist 5 at index 44 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 5 at index 44 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 44 with new value in second file!
    The "ID" value for entrylist 9 at index 45 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 45 with new value in second file!
    The "ID" value for entrylist 10 at index 45 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 45 with new value in second file!
    The "End" value for entrylist 11 at index 45 in the second file is modified, using it.
    The "ID" value for entrylist 11 at index 45 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 45 with new value in second file!
    The "ID" value for entrylist 12 at index 45 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 45 with new value in second file!
    The "ID" value for entrylist 13 at index 45 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 45 with new value in second file!
    The "End" value for entrylist 14 at index 45 in the second file is modified, using it.
    The "ID" value for entrylist 14 at index 45 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 45 with new value in second file!
    The "End" value for entrylist 2 at index 46 in the second file is modified, using it.
    The "ID" value for entrylist 2 at index 46 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 46 with new value in second file!
    The "End" value for entrylist 3 at index 46 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 46 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 46 with new value in second file!
    The "End" value for entrylist 4 at index 46 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 46 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 46 with new value in second file!
    The "End" value for entrylist 5 at index 46 in the second file is modified, using it.
    The "ID" value for entrylist 5 at index 46 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 46 with new value in second file!
    The "ID" value for entrylist 5 at index 47 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 5 at index 47 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 47 with new value in second file!
    The "ID" value for entrylist 6 at index 47 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 6 at index 47 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 47 with new value in second file!
    The "End" value for entrylist 7 at index 47 in the second file is modified, using it.
    The "ID" value for entrylist 7 at index 47 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 7 at index 47 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 47 with new value in second file!
    The "ID" value for entrylist 8 at index 47 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 47 with new value in second file!
    The "End" value for entrylist 9 at index 47 in the second file is modified, using it.
    The "ID" value for entrylist 9 at index 47 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 9 at index 47 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 47 with new value in second file!
    The "End" value for entrylist 4 at index 49 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 49 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 49 with new value in second file!
    The "End" value for entrylist 5 at index 49 in the second file is modified, using it.
    The "ID" value for entrylist 5 at index 49 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 49 with new value in second file!
    The "End" value for entrylist 1 at index 51 in the second file is modified, using it.
    The "ID" value for entrylist 1 at index 51 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 1 at index 51 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 51 with new value in second file!
    The "ID" value for entrylist 2 at index 51 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 2 at index 51 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 51 with new value in second file!
    The "ID" value for entrylist 3 at index 51 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 3 at index 51 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 51 with new value in second file!
    The "End" value for entrylist 4 at index 51 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 51 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 4 at index 51 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 51 with new value in second file!
    The "ID" value for entrylist 5 at index 52 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 5 at index 52 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 52 with new value in second file!
    The "ID" value for entrylist 6 at index 52 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 6 at index 52 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 52 with new value in second file!
    The "ID" value for entrylist 2 at index 55 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 55 with new value in second file!
    The "ID" value for entrylist 3 at index 55 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 55 with new value in second file!
    The "End" value for entrylist 2 at index 61 in the second file is modified, using it.
    The "ID" value for entrylist 2 at index 61 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 61 with new value in second file!
    The "ID" value for entrylist 3 at index 61 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 61 with new value in second file!
    The "End" value for entrylist 4 at index 61 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 61 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 61 with new value in second file!
    The "End" value for entrylist 1 at index 63 in the second file is modified, using it.
    The "ID" value for entrylist 1 at index 63 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 63 with new value in second file!
    The "End" value for entrylist 2 at index 63 in the second file is modified, using it.
    The "ID" value for entrylist 2 at index 63 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 63 with new value in second file!
    The "End" value for entrylist 3 at index 63 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 63 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 63 with new value in second file!
    The "End" value for entrylist 4 at index 63 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 63 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 63 with new value in second file!
    The "ID" value for entrylist 5 at index 63 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 63 with new value in second file!
    The "End" value for entrylist 1 at index 67 in the second file is modified, using it.
    The "ID" value for entrylist 1 at index 67 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 67 with new value in second file!
    The "End" value for entrylist 2 at index 67 in the second file is modified, using it.
    The "ID" value for entrylist 2 at index 67 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 67 with new value in second file!
    The "ID" value for entrylist 0 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 1 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 2 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 3 at index 68 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 3 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 4 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 5 at index 68 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 5 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 6 at index 68 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 6 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 7 at index 68 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 7 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 8 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 9 at index 68 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 9 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 10 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 11 at index 68 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 11 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 12 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "End" value for entrylist 13 at index 68 in the second file is modified, using it.
    The "ID" value for entrylist 13 at index 68 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 13 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 14 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 15 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 17 at index 68 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 17 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 18 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "End" value for entrylist 19 at index 68 in the second file is modified, using it.
    The "ID" value for entrylist 19 at index 68 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 19 at index 68 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 68 with new value in second file!
    The "ID" value for entrylist 2 at index 69 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 2 at index 69 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 69 with new value in second file!
    The "ID" value for entrylist 3 at index 69 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 3 at index 69 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 69 with new value in second file!
    The "ID" value for entrylist 4 at index 69 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 4 at index 69 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 69 with new value in second file!
    The "End" value for entrylist 5 at index 69 in the second file is modified, using it.
    The "ID" value for entrylist 5 at index 69 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 5 at index 69 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 69 with new value in second file!
    The "End" value for entrylist 6 at index 69 in the second file is modified, using it.
    The "ID" value for entrylist 6 at index 69 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 6 at index 69 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 69 with new value in second file!
    The "End" value for entrylist 1 at index 70 in the second file is modified, using it.
    The "ID" value for entrylist 1 at index 70 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 70 with new value in second file!
    The "End" value for entrylist 2 at index 70 in the second file is modified, using it.
    The "ID" value for entrylist 2 at index 70 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 70 with new value in second file!
    The "ID" value for entrylist 0 at index 71 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 71 with new value in second file!
    The "ID" value for entrylist 1 at index 71 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 71 with new value in second file!
    The "End" value for entrylist 5 at index 71 in the second file is modified, using it.
    The "ID" value for entrylist 5 at index 71 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 5 at index 71 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 71 with new value in second file!
    The "ID" value for entrylist 6 at index 71 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 71 with new value in second file!
    The "End" value for entrylist 7 at index 71 in the second file is modified, using it.
    The "ID" value for entrylist 7 at index 71 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 7 at index 71 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 71 with new value in second file!
    The "ID" value for entrylist 5 at index 72 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 72 with new value in second file!
    The "End" value for entrylist 6 at index 72 in the second file is modified, using it.
    The "ID" value for entrylist 6 at index 72 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 6 at index 72 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 72 with new value in second file!
    The "End" value for entrylist 7 at index 72 in the second file is modified, using it.
    The "ID" value for entrylist 7 at index 72 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 7 at index 72 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 72 with new value in second file!
    The "ID" value for entrylist 0 at index 73 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 73 with new value in second file!
    The "ID" value for entrylist 1 at index 73 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 73 with new value in second file!
    The "ID" value for entrylist 2 at index 73 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 73 with new value in second file!
    The "ID" value for entrylist 2 at index 74 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 74 with new value in second file!
    The "ID" value for entrylist 3 at index 74 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 74 with new value in second file!
    The "End" value for entrylist 4 at index 74 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 74 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 4 at index 74 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 74 with new value in second file!
    The "End" value for entrylist 5 at index 74 in the second file is modified, using it.
    The "ID" value for entrylist 5 at index 74 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 5 at index 74 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 74 with new value in second file!
    The "ID" value for entrylist 2 at index 75 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 75 with new value in second file!
    The "ID" value for entrylist 3 at index 75 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 75 with new value in second file!
    The "ID" value for entrylist 4 at index 75 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 75 with new value in second file!
    The "ID" value for entrylist 5 at index 75 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 75 with new value in second file!
    The "End" value for entrylist 6 at index 75 in the second file is modified, using it.
    The "ID" value for entrylist 6 at index 75 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 6 at index 75 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 75 with new value in second file!
    The "End" value for entrylist 7 at index 75 in the second file is modified, using it.
    The "ID" value for entrylist 7 at index 75 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 7 at index 75 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 75 with new value in second file!
    The "End" value for entrylist 1 at index 76 in the second file is modified, using it.
    The "ID" value for entrylist 1 at index 76 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 76 with new value in second file!
    The "ID" value for entrylist 2 at index 76 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 76 with new value in second file!
    The "End" value for entrylist 3 at index 76 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 76 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 76 with new value in second file!
    The "ID" value for entrylist 4 at index 76 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 76 with new value in second file!
    The "End" value for entrylist 7 at index 80 in the second file is modified, using it.
    The "ID" value for entrylist 7 at index 80 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 7 at index 80 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 80 with new value in second file!
    The "ID" value for entrylist 8 at index 80 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 8 at index 80 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 80 with new value in second file!
    The "End" value for entrylist 9 at index 80 in the second file is modified, using it.
    The "ID" value for entrylist 9 at index 80 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 80 with new value in second file!
    The "ID" value for entrylist 5 at index 88 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 88 with new value in second file!
    The "ID" value for entrylist 6 at index 88 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 88 with new value in second file!
    The "ID" value for entrylist 0 at index 90 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 90 with new value in second file!
    The "ID" value for entrylist 1 at index 90 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 90 with new value in second file!
    The "End" value for entrylist 3 at index 92 in the second file is modified, using it.
    The "ID" value for entrylist 3 at index 92 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 92 with new value in second file!
    The "End" value for entrylist 4 at index 92 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 92 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 92 with new value in second file!
    The "End" value for entrylist 5 at index 92 in the second file is modified, using it.
    The "ID" value for entrylist 5 at index 92 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 92 with new value in second file!
    The "End" value for entrylist 6 at index 92 in the second file is modified, using it.
    The "ID" value for entrylist 6 at index 92 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 92 with new value in second file!
    The "ID" value for entrylist 2 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "ID" value for entrylist 3 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    Adding new ExoLocSubstring "0" to field "Text" from the second file for entry at index 93.
    The "ID" value for entrylist 4 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "ID" value for entrylist 5 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "ID" value for entrylist 6 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "ID" value for entrylist 7 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "ID" value for entrylist 8 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "ID" value for entrylist 9 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "End" value for entrylist 10 at index 93 in the second file is modified, using it.
    The "ID" value for entrylist 10 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "ID" value for entrylist 11 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "ID" value for entrylist 12 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "ID" value for entrylist 13 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "ID" value for entrylist 14 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "ID" value for entrylist 15 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "ID" value for entrylist 16 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    The "ID" value for entrylist 17 at index 93 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 93 with new value in second file!
    Copying new entry Categories\93\EntryList\18\ found in second file.
    The "ID" value for entrylist 0 at index 94 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 94 with new value in second file!
    The "End" value for entrylist 1 at index 94 in the second file is modified, using it.
    The "ID" value for entrylist 1 at index 94 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 94 with new value in second file!
    The "ID" value for entrylist 2 at index 94 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 94 with new value in second file!
    The "ID" value for entrylist 3 at index 94 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 94 with new value in second file!
    The "ID" value for entrylist 4 at index 94 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 94 with new value in second file!
    The "ID" value for entrylist 5 at index 94 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 94 with new value in second file!
    The "End" value for entrylist 6 at index 94 in the second file is modified, using it.
    The "ID" value for entrylist 6 at index 94 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 94 with new value in second file!
    The "ID" value for entrylist 1 at index 98 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 1 at index 98 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 98 with new value in second file!
    The "ID" value for entrylist 2 at index 98 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 2 at index 98 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 98 with new value in second file!
    The "ID" value for entrylist 3 at index 98 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 3 at index 98 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 98 with new value in second file!
    The "ID" value for entrylist 4 at index 98 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 4 at index 98 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 98 with new value in second file!
    The "End" value for entrylist 5 at index 98 in the second file is modified, using it.
    The "ID" value for entrylist 5 at index 98 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 5 at index 98 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 98 with new value in second file!
    The "End" value for entrylist 6 at index 98 in the second file is modified, using it.
    The "ID" value for entrylist 6 at index 98 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 6 at index 98 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 98 with new value in second file!
    The "ID" value for entrylist 7 at index 98 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 7 at index 98 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 98 with new value in second file!
    The "ID" value for entrylist 8 at index 98 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 8 at index 98 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 98 with new value in second file!
    The "ID" value for entrylist 9 at index 98 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 9 at index 98 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 98 with new value in second file!
    The "ID" value for entrylist 10 at index 98 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 98 with new value in second file!
    The "ID" value for entrylist 11 at index 98 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 11 at index 98 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 98 with new value in second file!
    The "End" value for entrylist 12 at index 98 in the second file is modified, using it.
    The "ID" value for entrylist 12 at index 98 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 12 at index 98 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 98 with new value in second file!
    The "End" value for entrylist 13 at index 98 in the second file is modified, using it.
    The "ID" value for entrylist 13 at index 98 in the second file is modified, using it.
    The "XP_Percentage" value for entrylist 13 at index 98 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 98 with new value in second file!
    The "End" value for entrylist 1 at index 99 in the second file is modified, using it.
    The "ID" value for entrylist 1 at index 99 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 99 with new value in second file!
    The "ID" value for entrylist 2 at index 99 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 99 with new value in second file!
    The "ID" value for entrylist 3 at index 99 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 99 with new value in second file!
    The "End" value for entrylist 4 at index 99 in the second file is modified, using it.
    The "ID" value for entrylist 4 at index 99 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 99 with new value in second file!
    The "End" value for entrylist 5 at index 99 in the second file is modified, using it.
    The "ID" value for entrylist 5 at index 99 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 99 with new value in second file!
    The "End" value for entrylist 7 at index 99 in the second file is modified, using it.
    The "ID" value for entrylist 7 at index 99 in the second file is modified, using it.
    Modifying the StrRef of field "Text" for entry at index 99 with new value in second file!
    Copying new entry 101 from second file, adding as TypeID/ListIndex 109.
    Copying new entry 102 from second file, adding as TypeID/ListIndex 110.
     
    Running Tag uniqueness sanity checks...
    Tag uniqueness sanity check completed: No problems found.

     

    Merged BOS SR + K1R global.jrl (untested): https://dl.dropboxusercontent.com/u/32777109/kotor/global.jrl

     

     

    Update3:

     

    Ok, so I think I got everything merged.  Time for a new playthrough!  Wish me luck!  

     

    I hope the above was useful to someone else!