Background for Starfield
Member of the Actor script
eventOnCripple(ActorValueakActorValue, boolabCrippled)

Description

Wiki Description

Event called when this actor has a limb that goes from healthy to crippled or crippled to healthy.

Documentation Comment

Recieved immeadiately after a limb has become crippled or uncrippled.


Parameters

  1. ActorValueakActorValue

    CK Wiki Description

    The Actor Value for the limb that raised the OnCripple event.

  2. boolabCrippled

    CK Wiki Description

    True if the limb just went from healthy to crippled, False if the limb went from crippled to healthy.


Examples

Event OnCripple(ActorValue akActorValue, bool abCrippled)
    Debug.Trace("OnCripple Received: " + akActorValue+ ", " + abCrippled)
EndEvent

Auto-Generated Example

Scriptname MyCoolScript extends Actor

event OnCripple(ActorValue akActorValue, bool abCrippled)
    Debug.trace("Event received - OnCripple: akActorValue = " + akActorValue + " abCrippled = " + abCrippled)
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.