- Found in:
- Dylbills PE
eventOnSpellCastGlobal(ObjectReferenceCaster, FormSource)
Description
Documentation Comment
Event sent when an ObjectReference casts a spell. Source could be a spell, enchantment, potion or ingredient.
Parameters
ObjectReferenceCaster
FormSource
Examples
Auto-Generated Example
Scriptname MyCoolScript extends DbSkseEvents
event OnSpellCastGlobal(ObjectReference Caster, Form Source)
Debug.trace("Event received - OnSpellCastGlobal: Caster = " + Caster + " Source = " + Source)
endEvent