Calling hook OnNpcPlayerTarget resulted in a conflict
I'm not sure if the latest Oxide update patched the missing hooks. There was no mention of them being patched or still being missing. But the console is being spammed with this message.

Calling hook OnNpcPlayerTarget resulted in a conflict between the following plugins: BotSpawn - True (Boolean), NpcTarget (False (Boolean))

I figured I was getting the error earlier because of the missing hooks, so I gave it another go today. I'm a new user to this plugin so I have no reference to this being an old issue or not.

That is a hook warning, which only tiggers when a hook is enabled, not disabled. That warning means there's a potential conflict, all hooks have the potential to conflict. In this case, both are essenetially doing the same thing, but NPC Target isn't sticking to the standard of returning true instead of false for an "On" hook. This will trigger the above warning.

The solution would be for the NPC Target developer to switch that false to true and the warning will go away. It's not a conflict in this case. @misticos
@Wulf Thank you for the clarification on that. One step closer to understanding things :)