Possible to damage chinook heli?
Does the chinook have health like normal Patrol Helicopter?

I would like to further my plugin to shoot at them as well.

Any info would help on how to apply damage to them if they don't have health
yes they can be destroyed and drop the crate
Every entity in Rust has health. Some of them just do not accept any damage, which behaviour can be altered.
5ba0b9633e817.png?uid=5ba0b9716c220 2CHEVSKII
Every entity in Rust has health. Some of them just do not accept any damage, which behaviour can be altered.

Yeah I understand that. Any example of how to alter this?

Merged post

Figured it out thanks

Merged post

Another one please. I added colliders to the cargo plane, I can detect the serverprojectile, it passes through the plane, and the plane is destroyed.

How do I make the rocket explode when it hits the collider?
XavierB

Yeah I understand that. Any example of how to alter this?

Merged post

Figured it out thanks

Merged post

Another one please. I added colliders to the cargo plane, I can detect the serverprojectile, it passes through the plane, and the plane is destroyed.

How do I make the rocket explode when it hits the collider?
Set the property IsTrigger of collider to true, and use OnTriggerEnter Unity hook (message)
XavierB

Yeah I understand that. Any example of how to alter this?

Merged post

Figured it out thanks

Merged post

Another one please. I added colliders to the cargo plane, I can detect the serverprojectile, it passes through the plane, and the plane is destroyed.

How do I make the rocket explode when it hits the collider?
rocket.GetComponent<TimedExplosive>().Explode();
I know I am asking alot, but how would I detect if the Plane is taking damage from bullets. 
5c18c7da631b5.jpg Arainrr
rocket.GetComponent<TimedExplosive>().Explode();

Works Perfectly!!! Thanx