I thought the OnHit event triggered the abBashAttack bool to true but it doesn't seem to be the case. Am I missing something obvious?
Scriptname BashTest extends ObjectReference
Event OnHit(ObjectReference akAggressor, Form akSource, Projectile akProjectile, bool abPowerAttack, bool abSneakAttack, bool abBashAttack, bool abHitBlocked)
if ( abBashAttack as bool)
Debug.Notification("Bash hit")
endif
EndEvent