Background for Skyrim SE
Member of the Form script
eventOnActorAction(intactionType, ActorakActor, Formsource, intslot)

[DEV SERVER] Loading description...


Caveats

CK Wiki - Notes

  • This event cannot detect forms in the player's left hand when listening for Draw/Sheathe events (actionType 7-10). It will always return a value of 1 for slot (indicating the right hand), and the source will always only be whatever Form is wielded in the right hand (or NONE if there isn't something in the player's right hand).

Parameters

intactionType

ActorakActor

Formsource

intslot


Examples

No human-generated examples found for this event.

Auto-Generated Example

Scriptname MyCoolScript extends Form

event OnActorAction(int actionType, Actor akActor, Form source, int slot)
    Debug.trace("Event received - OnActorAction: actionType = " + actionType + " akActor = " + akActor + " source = " + source + " slot = " + slot)
endEvent

Related Pages


Additional References

View this event’s page on the Skyrim Creation Kit Wiki

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