Plugin where targets never go down. Would be cool for aim maps!
Targets that never go down (Rust)
You mean the Reactive Targets? If so I have coded something like this when I created a Shooting Gallery.
Just a simple plugin that targets don't go down after shooting them a bunch
Targets will bounce when shot, but never go down.
void OnEntityTakeDamage(BaseCombatEntity entity, HitInfo info)
{
if (entity is ReactiveTarget)
entity.SetFlag(BaseEntity.Flags.On, true, false);
}