Search results

  1. NovaRain

    Fallout 2 mod Scripting Help Needed - object can't read inventory of another object?

    It's "obj_is_carrying_obj_pid(object obj, int pid)" and you passed a PID as an object pointer. And if you want to see a (debug) message in the message box, just use display_msg(), like display_msg("obj_is_carrying_obj_pid: " + Item_Added);
  2. NovaRain

    UP and RP updates

    UPU and RPU v32 have been released, quoted from BGforge: UPU and RPU v32 With version 32, UPU gets its usual share of bug fixes. RPU, in addition to that, receives a second release branch, 2.4, which finally includes Pixote's updated maps. 2.4 notes RPU 2.3 (aka "stable") is not...
  3. NovaRain

    Fallout 2 utility Fallout - ProtoManager

    Your path in "location of save folder" is wrong.
  4. NovaRain

    Fallout 2 mod Fallout Sonora 1.15 and Sonora Dayglow 1.15 Vanilla Translation

    For strings, it's just from a simple hex comparison of the two binaries. For code changes, I use Microsoft's dumpbin.exe to dump both into disassembly text file, then check diff results and their addresses in IDA Pro database to find out what those changes are. Other than sound decoding hacks...
  5. NovaRain

    Fallout 2 mod Fallout Sonora 1.15 and Sonora Dayglow 1.15 Vanilla Translation

    Yes, I forgot to mention that. If one only uses your .dat instead of DLC zip, they will have no new music.
  6. NovaRain

    Fallout 2 mod Fallout Sonora 1.15 and Sonora Dayglow 1.15 Vanilla Translation

    FSonora.exe (or FSonoraDLC.exe) basically has these sfall settings embedded: WorldMapDelay2=66 VersionString=FALLOUT SONORA 1.14 (FSonora.exe) VersionString=FALLOUT SONORA 1.14+DLC (FSonoraDLC.exe) PatchFile=patchDLC.dat StartYear=2167 StartMonth=3 StartDay=11 And it changes the window title...
  7. NovaRain

    Fallout 2 utility Fallout DAT Explorer II

    If you are translating FO1 msg files, no point in packing them into a DAT, because the game engine doesn't support reading patch DAT files.
  8. NovaRain

    Sfall win98 backport

    You can try Win2k to see if it'd run faster. Newer sfall 3.8.x can run even on Win2k RTM (I tested it on my Pentium II server), and it works at very least for UPU/RPU/Et Tu.
  9. NovaRain

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    sfall 4.4.5 and 3.8.45 are released on SourceForge, along with their respective modders packs. EDIT 2024-12-04: sfall 4.4.5.1 and 3.8.45.1 are released on SourceForge. They are maintenance releases for the previous version.
  10. NovaRain

    Fallout 2 mod Fallout et tu - Release v1.12

    Without the speed loader, .44 revolver costs 3 AP to reload in Et Tu. https://github.com/rotators/Fo1in2/releases/tag/v1.9.3324
  11. NovaRain

    Fallout 1.5: Resurrection

    I'm only a moderator, can't access the backend of the forums.
  12. NovaRain

    Fallout 2 mod Fallout Sonora 1.15 and Sonora Dayglow 1.15 Vanilla Translation

    If you mean FO2 RP, it doesn't need higher resolution AFAIK, but you do need to have the hi-res patch enabled for moving viewport in maps.
  13. NovaRain

    How to uncensor drug referances?

    The original text: {5300}{}{Mentats} {5301}{}{A pillbox of mind-altering chems. Increases memory related functions, and speeds other mental processes. Highly addictive.} {8700}{}{Buffout} {8701}{}{Highly advanced steroids. While in effect, they increase strength and reflexes. Very addictive.}
  14. NovaRain

    How to uncensor drug referances?

    pro_item.msg, you should consider using DAT explorer to extract msg files from master.dat if you didn't find it in patches. https://www.nma-fallout.com/resources/fallout-dat-explorer-ii.140/
  15. NovaRain

    How to uncensor drug referances?

    Not all "chem" in text is the result from censorship, "chem" is used in some lines even in the original US game, the description of Mentats is one of them.
  16. NovaRain

    Condensed Temple of Trials for Unofficial Patch & vanilla game - Version 1.2.1

    Patched up the map borders.
  17. NovaRain

    How to uncensor drug referances?

    The file is "data\text\english\game\intrface.msg", and the msg number you need to check is 102. In the original US release, it's: {102}{}{ADDICT}
  18. NovaRain

    Adding Legacy Perk in FO2

    I tested the withdrawal time with buffout in my game (added with F12se), without the perk it takes 7 days, and with the perk it's 3.5 days. FO2 only changes the level requirement of the perk to 310 so it's impossible to pick it in the game, and all related checks/handling are still in the...
  19. NovaRain

    Adding Legacy Perk in FO2

    The check for Flower Child perk is still in the engine, not sure what you mean by "no effect".
Back
Top