Search results

  1. J

    How to check if a critter object has a particular animation?

    After some more testing, it does indeed seem that all the "regular" animations (anim code 0-19) work fine with the above code, but that all the death (and hit) animations simply return 0 all the time... We need some separate address for them I guess, any idea @phobos2077?
  2. J

    How to check if a critter object has a particular animation?

    Hmm, it's just the way phobos showed it to me (you probably know more about it than I do tbh). Funny thing is, when I tried it out with ANIM_sliced_in_half, it didn't work for me either, so I told him it didn't work... whereas I tested it later with ANIM_kick_leg, and that seems to work...
  3. J

    How to check if a critter object has a particular animation?

    @Magnus, try this code instead of the one you're using (0xfff0ffff works just for weapon anims I think): #define anim_art_exists(anim_type, critter) art_exists((obj_art_fid(critter) bwand 0xff000fff) bwor (anim_type * 0x10000))
  4. J

    Can we (sort of) make Fallout object oriented?

    I'm flattered man, but like I said, I ain't no programmer, I've just managed squirm around with my limited SSL knowledge through sheer trial and error. Also, I sort of feel pot commited at this point to just release this fucking insane mod I'm working on at some point. Getting another engine...
  5. J

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Unless I'm misreading you I had the exact same issue a while ago, upon which phobos asked to which I replied Might be something else tho ;)
  6. J

    Can we (sort of) make Fallout object oriented?

    Just a post to quickly run through what gets stored on the individual critter level other than self-explanatory stuff like location and rotation (also see http://falloutmods.wikia.com/wiki/MAP_File_Format): - FRMID: This seems very counterintuitive, but the type of sprite isn't determined by...
  7. J

    Can we (sort of) make Fallout object oriented?

    Oh right, yeah I was just using drugs as an example really, but it's mostly a function of how much of the vanilla mechanics you're willing to override (in my case, it's pretty much everything). An example how a modder could handle, e.g., Buffout's ST bonus is that you store that "Hank" just took...
  8. J

    Can we (sort of) make Fallout object oriented?

    Oh, don't you worry about the immensity of my insane plans ;) Eh, not sure how this'd be easier: (A) shipping your mod with 100k protos is more of a hassle than giving each critter 1-100,000 bottlecaps, and (B) having to manually edit each map renders it incompatible with every mod out there.
  9. J

    Can we (sort of) make Fallout object oriented?

    Initial note: I'm no programmer, so forgive me if I'm misusing terminology concerning OOP. The single biggest limitation of modding FO is that almost everything of note is done through the use of prototypes. That is to say, any critter, piece of scenery, or pistol mainly exists not as a...
  10. J

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    In case anybody's interested in what is and what isn't registered by the game, check http://falloutmods.wikia.com/wiki/SAVE.DAT_File_Format and http://falloutmods.wikia.com/wiki/MAP_File_Format for a (partial) list. The former file saves pretty much everything (so including SPECIAL stats)...
  11. J

    Fallout 2 mod FO2 Engine Tweaks (Sfall)

    Just to be clear what he of course doesn't mean is FRMID, but PID. Everytime one "loser" in the Den takes Jet, all of them get affected (and get unaffected the moment you save/load or leave the area). The reason for this is that individual objects exist only in a relatively limited capacity in...
  12. J

    Jim's In-Game Item Generator and Map Teleporter

    Apparently there's some weird issue with the hexmoveblock hook (which I need to block movement when pressing UI elements)... easy to work around tho.
  13. J

    Jim's In-Game Item Generator and Map Teleporter

    No harm done chief. I have no intention to port anything atm. New version up in the OP! The most important new feature is that it now checks for other places in a string. E.g. if you type DUDE in the script box, it doesn't find any script starting with DUDE, but what it does find is OBJ_DUDE...
  14. J

    Jim's In-Game Item Generator and Map Teleporter

    A new version to placate @Magnus and my returned passive-aggressive amigo @BreakinBenny! (Link is the one in the OP) Fixes: - You can now, um, move again. Features: - It's now one single happy menu you load with left ctrl + C, where you click on what you want to generate: - Items: generates...
  15. J

    Jim's In-Game Item Generator and Map Teleporter

    @Magnus I'll put together critter generation for you in a bit ;).
  16. J

    Jim's Improved UI Tools for Modders

    Oh yes, that's "easy" enough. For an example of keyboard hooking you can check the sources I've just now posted here. The problems as I see them have to do with presentation only. IIRC the days left counter thingy is assymetrical, and given that PCX doesn't allow for transparency, the old...
  17. J

    Jim's Improved UI Tools for Modders

    I have this weird deja vu feeling for some reason :P. It doesn't really change anything in that regard. It's still theoretically possible but requires constantly rebuilding it whenever the player clicks somewhere else on the pipboy screen, causing it to once again be placed over the image...
  18. J

    Jim's Improved UI Tools for Modders

    New version! Improvements: - smoother: the system no longer deletes buttons before replacing them, which was jarring. Instead, every change results in the entire menu being rebuilt underneath the existing menu, after which the old one is deleted, making the transition nice and smooth...
  19. J

    Jim's In-Game Item Generator and Map Teleporter

    Updated the version with the proper method for retrieving item names. I set the range for possible items p. high (780, guessing no mod goes high as that, it breaks when it reaches the ceiling). Also has the sources in it.
  20. J

    Jim's In-Game Item Generator and Map Teleporter

    Long story short: #define sfall_key_dx_strings_lc \ ["" \ ,"" \ ,"1" \ ,"2" \ ,"3" \ ,"4" \ ,"5" \ ,"6" \ ,"7" \ ,"8" \ ,"9" \ ,"0" \ ,"-" \ ,"=" \ ,"" \ ,"" \ ,"q" \ ,"w" \ ,"e" \ ,"r" \ ,"t" \ ,"y" \ ,"u" \ ,"i" \ ,"o"...
Back
Top