Jump to content

lynx

Modders
  • Posts

    3,916
  • Joined

  • Last visited

Posts posted by lynx

  1. Sorry, it uses a regex, not a glob, so the command is:

    weidu --biff-get ".*bcs" 

    Then you can try to decompile them all:

    weidu *
    rm *bcs

    Then you either work with all the files or exclude those not mentioning Player6. That's why I was asking about WSL — I can tell you what to run, otherwise it's up to you:

    # this will remove every file not referencing Player6
    grep -L Player6 * | xargs rm
    
    # if you get errors about xargs, just get the list of files and delete them manually:
    grep -L Player6 *

    Let me know if this phase went well.

  2. Do you perchance have access to that linux-shell-on-windows thing (I think it's called WSL)? Either way, you'll need a console open to run weidu.

    Anyway, the mod does these things:

    1. Looks for all scripts that reference Player6 and decompiles them to BAF.

    2. Runs the perl scripts to upgrade each script.

    3. Recompiles them and puts them into override.

    (and almost the same thing for dialogs)

     

    Judging from some of your log output, it seems like it failed already at step 1. So I suggest you move to 10pp/temp/baf (create it if it doesn't exist), run weidu --biff-get "*.bcs" and see if that manages to extract them all.

     

  3. That's an error from windows, so I can't be of much more use. I know other people hit it with other mods as well, but I think in general it can be ignored?

    As a last resort, you could install the mod semi-manually, in steps, but then it won't be uninstallable. Let me know if you want to try this.

  4. PST is a hardcoded mess, but some of this resurrection stuff is nicely specified with ini files. But you're not modding for pst, so that's useless.

    Copying piles is a safer alternative, since they might get destroyed with time otherwise. Teleporting the pc to the temple alone can lock you into areas that require the full party to travel from.

  5. That's odd indeed. It's certainly not a deliberate design choice. I suspect something is insufficient in its forking implementation or something went wrong when adding the capture of return status support to AT_NOW. Or it's just AV sabotage ...

    I've pushed an updated mod, so now amilowhatever shouldn't be a problem any more.

  6. There's no powershell involved here, but maybe you're mistaking perl for it.

    Looking at the code, I invoke perl for each file separately, so any leaks would be cleaned up immediately afterwards. I then suspect the leak to be in weidu.

  7. you need to change the path to point to the actual file ... but since you know it's RoT, there's no point.

    We were trying to figure out if it's intentionally empty or not. You're saying it's empty from the get go. So just delete the file and 10pp won't barf on it.

  8. Ok, let's find out where that file is from, so we can check if it's supposed to be empty or not. I don't get any hits on g3 or shs github nor the original games, so you'll have to do the searching.

    You can try to do a regular file search in your game install for aminota.baf (not bcs).

×
×
  • Create New...