Recent content by Cyrus

  1. C

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    well yes I had examples of where I did use it in simple arithmetic, but I've been having some unexpected errors lately, and its been casting doubt over what I thought I knew. Its not just the return statement, its also inside if conditions and elsewhere. you know, when you become unsure of...
  2. C

    NPC cought red handed. Punching with a tommy gun.

    Yes. No..... ....What I said. .....ok fine, what you said. .
  3. C

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    In ssl can return values be functions? Example: return get_proto_data(PID, offset);
  4. C

    NPC cought red handed. Punching with a tommy gun.

    After more thought, indeed I concur. I think I understand what the problem was. The way my code was acquiring the weapon was by checking the critter's right hand. However the critter is NOT using the right hand. It seems like the game simply uses left hand to assess unarmed attack potential...
  5. C

    FO2 Poison Glitch?

    How do you know it wasn't radiation? EPA has a lot of radiation. Had you tried giving them radaways?
  6. C

    NPC cought red handed. Punching with a tommy gun.

    I must add, not all critters did it. And I "THINK" the reason for it is, the critter is assessing if doing an unarmed attack is feasible. And its doing it without switching item/hand. I think this might be AI scripted for specific critters, like mobster.
  7. C

    Engine reversing/exploration

    Thanks for the link. And I suppose I need assembly knowledge to use?
  8. C

    NPC cought red handed. Punching with a tommy gun.

    Yes unfortunately I changed it and didn't keep a copy of the bad file. If you wrote a test script please send me your copy so I test using your copy in the same situation. This was happening with mobsters around new reno using RPU v16. When I fond time I'll do extra testing and share with you.
  9. C

    Engine reversing/exploration

    Right. I figured anything I say is probably not new, but you never know until you say it. :smile: The wording of your sentence I didn't quite fully understand (I know english is second language for you :) , A for effort!). Are you refering to the drobovik database? Are you saying all game...
  10. C

    Engine reversing/exploration

    9. The in-game display has a width of 54 chars. 53 or 54.
  11. C

    Engine reversing/exploration

    I'm gonna post this here because I think it fits here best. As I've been meddling with modding and testing I've ran into a few things which if not mentioned before I think are useful to mention. My list of discoveries if you will. 1. The debug_msg command has a character limit of somewhere...
  12. C

    NPC cought red handed. Punching with a tommy gun.

    My mod script is very long and not all of it is gonna be related, but if you want ok. You might wanna stick only to relevant areas. The parts that relate to this issue are: procedure cr_tohit_hook; procedure get_active_weapon; procedure get_weapon_mode; and maybe procedure start; Also, you...
  13. C

    Improved Scripting Tools (SSL+ and Script Editor)

    I'm using 4.1.6 currently and compiler gives me syntax error if I try to declare variables mid-procedure, also doesn't have the new functions (ex: combat data). I was wondering if by updating to 4.1.7 it would bring the features. From what you explained seems like answer is yes. Well put...
  14. C

    NPC cought red handed. Punching with a tommy gun.

    I knew it! Those pesky NPCs; secretly pulling all kinds of shenanigans. So... I have been writing the hit chance portion of my mod, and ran into a very peculiar crash, where my script worked for a few minutes, then stopped posting any messages. The script kept throwing warnings about attack...
  15. C

    Improved Scripting Tools (SSL+ and Script Editor)

    Thanks again. Are there any downsides to always using short-circuit operations? I tried to look it up on the internet, didn't find a definitive answer. I'm thinking why even use AND and OR when you can just use AndAlso and OrElse? Are the latter always better? So how can I compile using those...
Back
Top