Search results

  1. NovaRain

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    I tried adding the perks with save editor or doing the surgeries in-game in RPU, each of the "enhancement" combat implant reduces CH by 1 as they should.
  2. NovaRain

    SFall source code.

    https://github.com/mattwells77/Fallout-High-Resolution-Patches
  3. NovaRain

    Fallout 1.5: Resurrection

    I already made the INI files, just haven't found the time to test them.
  4. NovaRain

    Fallout 1.5: Resurrection

    It's possible to ditch the launcher, but you need at least one global script to do the memory patching, or elevators.ini, perks.ini, and a global script for proper replacement.
  5. NovaRain

    RPU mod korean translation problem

    The binary file set that support Korean seems based on an older Chinese version of RP (with fallout2font.dll and fallout_font.ini, I found a Korean pack for Megamod). Supposedly it should work with newer RPU as well, at least there's a Chinese translation of RPU v26.
  6. NovaRain

    Restoration Project and SFall script problems.

    https://sfall-team.github.io/sfall/sfall-funcx-macros/#get_text_width Try actually read the documents instead of keep making threads.
  7. NovaRain

    Fallout 2 mod Change skill books to give a fixed amount of bonus

    A simple mod that changes all skill books to increase skills by a fixed amount, and they can still increase skills when it's over 91%. Basically it recreates the "obj_use_books" engine function with skill increment logic changed. By default reading a book gives +5% to a skill (+6% if it's...
  8. NovaRain

    Fallout 2 Savegame Editor

    F12se can edit Resurrection saves, you just need to set it up correctly.
  9. NovaRain

    Fallout 2 mod New Fallout2MechanicsMiniRework version

    They have no difference other than animations in vanilla.
  10. NovaRain

    Dunno, I never go check a psychiatrist.

    Dunno, I never go check a psychiatrist.
  11. NovaRain

    Fallout 2 Savegame Editor

    https://github.com/nousrnam/F12se/releases The 2020-05-10 version shouldn't trigger the heuristic detection from antivirus, at least I didn't hear people complaining about it.
  12. NovaRain

    Fallout 2 mod Olympus 2207 problems

    If it's Win7, it's probably due to Windows Game Explorer.
  13. NovaRain

    Fallout 2 Highwayman Infinite fuel mod

    Can be done easily with the CARTRAVEL hook, here's a minimalist example: procedure start; procedure cartravel_handler; procedure start begin if game_loaded then begin register_hook_proc(HOOK_CARTRAVEL, cartravel_handler); end end procedure cartravel_handler begin...
  14. NovaRain

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    I have no idea what you tried to do or what your function is. Check SafeWrite.cpp/.h to see how those memory hack functions work.
  15. NovaRain

    Reverse engineering Fallout 2

    No, CE doesn't support enough sfall functions/hooks used in RP yet.
  16. NovaRain

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Some info about "deterministic builds": https://blog.conan.io/2019/09/02/Deterministic-builds-with-C-C++.html https://stackoverflow.com/questions/1180852/deterministic-builds-under-windows
  17. NovaRain

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Yes, you should have a binary with the same functionality.
  18. NovaRain

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    It's normal. You can try to compile the same source twice on your system, and the two DLLs won't even have the same checksum.
  19. NovaRain

    Reverse engineering Fallout 2

    https://github.com/alexbatalov/fallout2-ce/issues/257 Good news: Alex's account is reinstated and all his repos are now back.
Back
Top