BaseDestroyed() event & BaseID
-
Hello everyone,
I’m currently doing some code for our bases, and I have a little problem :
The BaseDestroyed() function use a iObject var which correspond to the SpaceID of the Base.
I would like to get the iBaseID of a base from the iObject var, but I don’t know how to do this ?
(I didn’t find the correct function to do this)
Thanks
-
Have you taken a look at the code in BaseDestroyed()?
//... uint iID; pub::SpaceObj::GetDockingTarget(iObject, iID); Universe::IBase *base = Universe::get_base(iID); ```pub::SpaceObj::GetDockingTarget is what you're after.
-
Ok, thanks for it !
But I was also looking for a function which did the reverse thing :
How can I get the spaceID (iObject) from iBaseID ?
I would have a look to the function, but can’t find FLCore SDK.
Sorry to bother you, but I would really know it
-
Universe::IBase *base = Universe::get_base(iBaseID); base->lSpaceObjID; ```And no problem. :)
-
This is very very odd, but this function wasn’t working all the time
(maybe my code is wrong), so I used iDamageToSpaceID to do what I need.Thanks a lot for your quick answers, and Bravo for your work, the more I know FLHook, the more I say “Waow !”
-
Yeah, I remember that there was some weirdness with it - I believe that someone actually needed to visit the base for it to work, or something like that.
6/6