SGFGoodVaporizedInfo and SSPUseItem
Locked
FLHook Plugin Version
-
looking for info on those 2 struct in the topic title, but i cant find their definitions in any of the files. If anyone could shed some light on them it would be much appreciated
-
struct SSPUseItem { UINT object; // ship id, I think short hpid; // hardpoint identifier short quantity; // seems to be number you have, not to use }; ```That matches what I discovered in Packets (where I got the names from). I tested it using a shield battery, where it gave 10 for the object; 0x32 for the hpid; and 3 for the quantity, hence the comment (I only used one). How do I use [c]GFGoodVaporized[/c]? Jettisoning a battery and destroying it didn't work, nor did waiting for MOX to perish. (I don't have anything for this in Packets.)
-
Ah thanks for that one, the other one I haven’t gotten to trigger yet either, but its in FLHook:
void __stdcall GFGoodVaporized(struct SGFGoodVaporizedInfo const &gvi, unsigned int iClientID)
I’m mostly curious because I’m writing a embedded python hook plugin and converting all the structs and classes into python objects
-
awesome thanks the 3 uints are enough to go on for the conversion even if the actual content of the values arent known