No helicopter statisticsFixed
after the helicopter shot down, there are no statistics. the fire on the boxes also does not disappear. with Bradley everything is fine
it is well tested, and works, check conflicts with other plugins
I have no other conflicting plugins
I join the person who wrote you for this plugin, there is one problem: there is no control over the patrol helicopter, there is no statistics, there is no protection against production, it does not remove fire from the boxes, I ask you to fix it, thanks for your work.
Again? In english this time?
Google is to blame and my carelessness
I suspect the problem is in the condition:

if (entity is BaseHelicopter && PersonalHeli != null && !PersonalHeli.Call<bool>("IsPersonal", entity as BaseHelicopter))  {​

1. Damage to the helicopter
2. The list of plugins contains PersonalHeli
3. Contacting API PersonalHeli to check if it is a personal helicopter.

But if a person does not have PersonalHeli, then the condition will "fall apart" on the second test (because PersonalHeli == null).

As an option to solve the problem, replace the condition on line 365 with:

            if (entity is BaseHelicopter)  {
                if (PersonalHeli != null && PersonalHeli.Call<bool>("IsPersonal", entity as BaseHelicopter))
                    return;

thank. with this condition, everything works. I have no plugins for the helicopter

There are no statistics on helicopters, made changes as described here
Nothing changed
still dont woking but no errors in console protect everithing .. but the heli is still unprotected
Locked automatically