Search results

  1. J

    Stuff for define_extra.h

    Some stuff for when you need to get/remove a value from a list (doesn't work with maps). I'm pretty sure none of these were possible with arrays so far, but maybe @phobos2077 can correct me. #define remove_list_unsorted(location, array) \...
  2. J

    SFall party member control no longer working?

    Haha, crap, knew I forgot to do something self-explanatory. Sure, I'll put something like that together in a single script. Which mod sources do you mean exactly? edit: Couple of changes I'm doing: one key for establishing the new party member control options, this simply stops everyone from...
  3. J

    SFall party member control no longer working?

    Hey @phobos2077, I put together something very simple that lets you control party member movement outside of combat (in case nobody else had done this yet). The way it works is you press ctrl+1-5 for the party member you wish to control, then ctrl+0 to switch back. The PC stands in place and you...
  4. J

    Tutorial for Adding Party Members in Fallout 2 (Attempt)

    Hey @damonicos, sorry for the way too late response! #define lucas_joins_party party_add_self; \ critter_add_trait(self_obj,TRAIT_OBJECT,OBJECT_TEAM_NUM,TEAM_PLAYER) just put this at the top of the script, where you find procedures and variables "declared" that get used further down (e.g...
  5. J

    What do we know about the combat AI?

    Tho I've only tested with enemy AI, not party member AI, I'd guess that also has to do with max/min damage; I didn't notice caliber having any impact on the decision making. Also, it's actually much easier to change the AI's weapon, namely through simply forcing a wield in hs_apcost. But this...
  6. J

    What do we know about the combat AI?

    I've been doing some testing with the AI's weapon selection and came up with these results: AI does check for weapon: - when he's out of ammo for his current weapon. AI doesn't check for weapon: - at the start of combat or with a new turn (e.g. even if he's unarmed and has a bazooka in his...
  7. J

    Stuff for define_extra.h

    Yeah, you're right, I decided to just use this thread to post random scripting stuff/shortcuts I think of. ;)
  8. J

    Stuff for define_extra.h

    Just a small addition to the excellent new tile_light function, because it (counter-intuitively) doesn't give you the light level of a tile, but the light level that the tile adds to the general lighting level. So, a piece of dirt in the full light of day doesn't return a high light level, but a...
  9. J

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    clubs:=tile_get_objs(tile_under_cursor, dude_elevation); foreach value in clubs begin if (obj_type(value) == OBJ_TYPE_CRITTER) then begin reg_anim_clear(value); reg_anim_begin(); reg_anim_obj_run_to_tile(value...
  10. J

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Really great that you can now force animations from global/hook scripts, but I was wondering why the following still won't work for me. If I put this in Klint's script under description_p_proc: reg_anim_clear(self_obj); reg_anim_begin()...
  11. J

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    @phobos2077, I was wondering: could it be possible, now that combatdamage can tell how many bullets entered the target and gets called for all extra targets, if afterhitroll (or a new hookscript) could be used to override what these extra targets are and how many bullets hit? You can already...
Back
Top