- Found in:
- SKSE
[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
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