Hey, I can't get this simple hook to work. No error messages, just nothing seems to happen when I attack entities.
Here is my test code
#region Oxide Hooks
public void OnEntityTakeDamage(EntityAlive entity, DamageSource source)
{
Puts("Entity " + entity.DebugName + " Took Damage");
}
#endregion