Background for Fallout 4
Member of the ScriptObject script
eventOnHit(ObjectReferenceakTarget, ObjectReferenceakAggressor, FormakSource, ProjectileakProjectile, boolabPowerAttack, boolabSneakAttack, boolabBashAttack, boolabHitBlocked, stringasMaterialName)

Description

Wiki Description

Event called when a target is hit by a weapon or projectile.

This event will only be sent to the specific script that registered for it. Other scripts attached to the same form/alias/active magic effect will not receive the event unless they also register.

Documentation Comment

Event received when the target is hit by a source (weapon, spell, explosion) or projectile attack (after registering)


Caveats

CK Wiki - Notes

  • akSource and akProjectile can be None under various circumstances:

    • The target is an Actor:

      • akSource can be None if hit by a projectile attack where the projectile was not fired by a weapon or spell
      • akProjectile can be None if hit by a melee attack.
    • The target is not an Actor:

      • akSource can be None if hit by a projectile attack where the projectile was not fired by a weapon (for example, a magic spell with a projectile component).
      • akProjectile can be None if hit by a melee attack.
  • Also, if the target is an Actor and the projectile was caused by a weapon enchant, the enchanted weapon will be in akSource.

  • Aliases and quests will automatically unregister for this event when the quest stops. Active magic effects will automatically unregister when they are removed.

  • This event only fires once, in order to have it fire again, you must re-register.


Parameters

  1. ObjectReferenceakTarget

    CK Wiki Description

  2. ObjectReferenceakAggressor

    CK Wiki Description

    The ObjectReference that attacked this reference.

  3. FormakSource

    CK Wiki Description

    The Weapon, Spell, Explosion, Ingredient, Potion, or Enchantment that hit this reference.

  4. ProjectileakProjectile

    CK Wiki Description

    The Projectile that hit this reference.

  5. boolabPowerAttack

    CK Wiki Description

    Was the hit caused by a power attack?

  6. boolabSneakAttack

    CK Wiki Description

    Was the hit caused by a sneak attack?

  7. boolabBashAttack

    CK Wiki Description

    Was the hit caused by a bash attack?

  8. boolabHitBlocked

    CK Wiki Description

    Was the hit blocked?

  9. stringasMaterialName


Examples

Event OnHit(ObjectReference akTarget, ObjectReference akAggressor, Form akSource, Projectile akProjectile, bool abPowerAttack, \
  bool abSneakAttack, bool abBashAttack, bool abHitBlocked, string apMaterial)
  Debug.Trace(akTarget + " was hit by " + akAggressor)
EndEvent

Auto-Generated Example

Scriptname MyCoolScript extends ScriptObject

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

Related Pages


Additional References

View this event’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.