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?
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...
@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))
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...
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...
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...
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.
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...
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)...
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...
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...
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...
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...
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...
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...
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.