Search results

  1. phobos2077

    Fallout 2 mod EcCo Gameplay Overhaul (new version for RPU)

    All recipes are in data/text/english/dialogs/test0.msg. As to where to get them, you can ask Vic or here is a spoiler:
  2. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Что значит не исправляли? Что не так с этими функциями?
  3. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Твое сообщение одинаково непонятно что на английском что на русском)) Не мог бы ты перефразировать вопрос? Какой FID игрока, как ты его получаешь, при каких условиях и что за число?
  4. phobos2077

    Fallout 2 mod EcCo Gameplay Overhaul (new version for RPU)

    No, that's a bug with installer. Thanks for reporting. Regarding using in other mods, if you don't know how to modify scripts, you can just use: 1) hs_barterprice.int script along with barter.ini for barter mod (remember to modify properly as mentioned in my previous post). 2) hs_ondeath.int...
  5. phobos2077

    Fallout 2 mod EcCo Gameplay Overhaul (new version for RPU)

    Which parts to you want to apply? I think barter mod can be installed just about anywhere (where sfall version is not too old) and customized via barter.ini (TOWNDEMAND and NPC sections are game-specific). Basically you can apply any parts of the mod that is script based using the provided SSL...
  6. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Конечно будем :D Ну кроме тех мест где без ASM совсем не обойтись. Let's wait for Falltergeist for this :D I think lighting is already implemented there.
  7. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Ого, когда это он все это успел? :) Некоторые пункты звучат очень полезными, а другие сомнительны. В любом случае на данном этапе каждую фичу придется реализовывать заново, используя код Crafty как пример. Так что на это потребуется время. Если есть примеры реального применения изменений...
  8. phobos2077

    Random Questions

    If you really want some engine feature or information on how stuff works, the best way is to set up IDA Pro and start digging code for yourself. Some stuff may already be possible, but that research takes time... Yeah, I feel your pain about this game not being popular these days.
  9. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Reproduced on 3.8. Created an issue.
  10. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Did you check sfall modderspack documentation? It has full description for all hook scripts and how to use them. Just use it like any other hook script. Theoretically it should work because it is called on DirectInput level.
  11. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    How do you currently catch key presses? Did you tried register_hook_proc(HOOK_KEYPRESS, keypress_handler); ?
  12. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Теоретически они должны работать (NovaRain вроде бы тестировал, но результаты неточные). Советую забить и использовать hs_steal: hs_steal.int Runs when checking an attempt to steal or plant an item in other inventory using Steal skill. This is fired before the default handlers are called...
  13. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Which versions of sfall did you test this on? What is your test script?
  14. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    This is configured by vanilla map configs. can_rest_here=No,No,No ; All 3 elevations Feel free to create issues on github for new requests. Link in my signature.
  15. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Guys maybe we should create dedicated thread for discussing sfall itself? I know this thread was created originally for engine tweaks discussion, and sfall project emerged afterwards. But now it became something more. Basically now it consists of several related projects: original sfall...
  16. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Can you enable debug.log in your game and check if you see this message "Friendly was in the way!" written to the log when your friendly kills you by burst fire? The code is there, but I bet there is some mistake in logic (as it often the case with this piece of... code ;) ).
  17. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Actually AI is already capable of doing what you're trying to do. It checks if it might hit friendlies and switches to single fire otherwise.. Does it not work in some cases? If the feature is already there but doesn't work due to some bug, probably we can make fix for it. But otherwise complex...
  18. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    You can use obj_blocking_line to duplicate engine behavior for calculating trajectories of bullets... If there is any friendly NPC on those lines of fire, then use set_critter_burst_disable. I didn't tried that myself, so that's just theory.
  19. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Need some feedback from any scripters out there. I have added several new opcodes that will hopefully allow to forget about ever updating compiler/decompiler in order to add new engine functions. They look like this: sfall_func0("func_name"); sfall_func1("func_name", "first argument"); // ...
  20. phobos2077

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    It is possible (by changing all offsets.. huge amount of work), but scripts like Mr.Stalin posted above will definitely not work :) Of course, use barterprice hook script. But you will need to calculate total price, you can't only modify price for one item without reinventing the formula (it's...
Back
Top