OnStoryCastMagic - Quest

Revision as of 09:45, 27 January 2013 by imported>Threedee (fixed a typo)

Member of: Quest Script

Event called when this quest is started via a cast magic story manager event.

Syntax

Event OnStoryCastMagic(ObjectReference akCastingActor, ObjectReference akSpellTarget, Location akLocation, Form akSpell)

Parameters

  • akCastingActor: The ObjectReference that cast the spell.
  • akSpellTarget: The ObjectReference that is targeted by the spell.
  • akLocation: The Location the spell was cast.
  • akSpell: The spell that was cast.

Examples

Event OnStoryCastMagic(ObjectReference akCastingActor, ObjectReference akSpellTarget, Location akLocation, Form akSpell)
  Debug.Trace(akSpell + " was cast by " + akCastingActor + " at " + akSpellTarget)
endEvent

See Also