- Found in:
- Dylbills PE
eventOnActorSpellCastGlobal(ActorCaster, FormSource, intslot)
Description
Documentation Comment
Actor Action events. Source is the weapon / spell / shout.
Slots are 0 = left hand, 1 = right hand, 2 = voice / power.
Parameters
Examples
Auto-Generated Example
Scriptname MyCoolScript extends DbSkseEvents
event OnActorSpellCastGlobal(Actor Caster, Form Source, int slot)
Debug.trace("Event received - OnActorSpellCastGlobal: Caster = " + Caster + " Source = " + Source + " slot = " + slot)
endEvent