Background for Skyrim SE
Member of the PO3_Events_AME script
eventOnHitEx(ObjectReferenceakAggressor, FormakSource, ProjectileakProjectile, boolabPowerAttack, boolabSneakAttack, boolabBashAttack, boolabHitBlocked)

[DEV SERVER] Loading description...

Registration Control Functions


Parameters

ObjectReferenceakAggressor

FormakSource

ProjectileakProjectile

boolabPowerAttack

boolabSneakAttack

boolabBashAttack

boolabHitBlocked


Examples

Auto-Generated Example

Scriptname MyCoolScript extends PO3_Events_AME

event OnHitEx(ObjectReference akAggressor, Form akSource, Projectile akProjectile, bool abPowerAttack, bool abSneakAttack, bool abBashAttack, bool abHitBlocked)
    Debug.trace("Event received - OnHitEx: akAggressor = " + akAggressor + " akSource = " + akSource + " akProjectile = " + akProjectile + " abPowerAttack = " + abPowerAttack + " abSneakAttack = " + abSneakAttack + " abBashAttack = " + abBashAttack + " abHitBlocked = " + abHitBlocked)
endEvent

Additional References

View this event on the GitHub Wiki for powerofthree's Papyrus Extender

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.