Hi, in IQSphereEvent using:
ChinoockHelicopter.OwnerID = 92929294944;
ChinoockHelicopter.skinID = 92929294944;
can u ignore it?
I'm not sure if it directly affects them, but I'd like to be sure, thanks..
Hi, in IQSphereEvent using:
ChinoockHelicopter.OwnerID = 92929294944;
ChinoockHelicopter.skinID = 92929294944;
can u ignore it?
I'm not sure if it directly affects them, but I'd like to be sure, thanks..
The developer of the event plugin can use the OnBetterChinookPatrol hook to block this plugin from affecting specific chinooks.
Alternatively, you can just make an addon plugin that uses the hook and checks for the owner/skin, like the following. This way, you are not dependent on either plugin being changed.
object OnBetterChinookPatrol(CH47HelicopterAIController chinook)
{
return chinook.OwnerID == 92929294944 || chinook.skinID == 92929294944 ? false : null;
} thanks a lot <3