Support for Bot Spawn pluginSolved
Hello,

i've granted permission to default & admin group but we can't kill npc (botspawn).

scientist at military can be killed, no worrie for that
You will have to get the owner of botspawn to add support for vanish.
I've try to request to him for other plugins but:
Hey Tanki 
Not likely to write in support for other plugs, but I did add methods that other plugins can use.

so, it's possible to add support please?

This code in bot spawn is the issue
object OnEntityTakeDamage(BaseCombatEntity entity, HitInfo info)
        {
 var canNetwork = Vanish?.Call("IsInvisible", info.Initiator);
                    if ((canNetwork is bool) && (bool)canNetwork)
                    {
                        info.Initiator = null;
                        return true;
                    }
}​

You can just delete it. I have also messaged the owner and he will update his plugin when he can.

yes, I saw on discord, it will release a correction soon.

Thanks
Locked automatically