Search results

  1. Mr.Stalin

    Improved Scripting Tools (SSL+ and Script Editor)

    I meant descriptions for new functions, the compiler and parser have been updated to the latest versions. what error do you have?
  2. Mr.Stalin

    NPC cought red handed. Punching with a tommy gun.

    first need to look at script your mod.
  3. Mr.Stalin

    Looking for F1UNDAT.exe

    Fresh manager for Fallout 1/2: https://github.com/FakelsHub/DatExplorer-II/releases
  4. Mr.Stalin

    Improved Scripting Tools (SSL+ and Script Editor)

    The latest functions from 4.2.8/4.2.6 haven't been added yet, everything else is supported. If anyone has a desire, please add all the missing descriptions to the functions in the file descriptions/opcodes.txt, to include it in the editor. Because I don't pay much attention to descriptions in...
  5. Mr.Stalin

    Various modding questions

    Obviously, NovaRain forgot to specify exactly where this hook works. In the next versions, we will add support for barter and other places. (i.e. this is in the plans).
  6. Mr.Stalin

    Various modding questions

    if you can't figure out how to program game scripts correctly, then you have nothing to do in the sfall code, and you need knowledge of C++ and Assembler language. To make the use for weapons option, you'll have to rewrite a hell of a lot of code in the engine.
  7. Mr.Stalin

    Various modding questions

    Obviously, this can't be done for weapons. Read the description of the hook carefully.
  8. Mr.Stalin

    Fallout 2 utility sfall script editor - dialog functions config?

    The editor does not work on Win10. :) solution to disable the parser. or try 4.1.7 version.
  9. Mr.Stalin

    Various modding questions

    you can't export procedures with arguments.
  10. Mr.Stalin

    Fallout 2 mod Inventory Filter [Deleted]

    OK. you can see the text that is displayed in the upper right corner when you press F11??
  11. Mr.Stalin

    Various modding questions

    use_obj_on_obj https://fakelshub.github.io/sfall-documentation/funcx-macros/#set_unique_id Use the "Use On" interface (as well as charge the car).
  12. Mr.Stalin

    Any way to stop the incessant SMG reload idle animation?

    Control in the script what time interval the idle animation will be executed. variable nexttime; procedure start begin if game_loaded then begin set_global_script_type(0); set_global_script_repeat(1000); end else begin variable time = read_int(0x510734); if...
  13. Mr.Stalin

    Fallout 2 mod Inventory Filter [Deleted]

    Mr.Stalin updated Inventory Filter with a new update entry: Inventory Filter v2.0 Read the rest of this update entry...
  14. Mr.Stalin

    A mod for testing purposes?

    small debugger tool - viewer
  15. Mr.Stalin

    Problems in critical table

    Waiting for the video report. :)
  16. Mr.Stalin

    Fallout 2 mod Status on Mutant Rising?

    > only basic knowledge. That's enough
  17. Mr.Stalin

    Fallout 2 mod New Critter Animation getting cropped

    technically, this can be a rectangle constraint for redrawing the screen. during the animation, not the entire game screen is redrawn, but only a certain part of the rectangle, which depends on the size of the sprite.
  18. Mr.Stalin

    Fallout 2 mod New Critter Animation getting cropped

    This always is cropped fixed regardless of the sprite size? or always is the small edge part clipped?
Back
Top