RegisterForSingleLOSGain - Form

From the CreationKit Wiki
Revision as of 15:27, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: ActiveMagicEffect Script, Alias Script, and Form Script

Registers this active magic effect/alias/form to receive a single gain LOS event. If the viewer is currently looking at the target, the event will be sent immediately. Only the specific form, alias, or magic effect that registered will get the event - it will not be relayed to attached aliases or magic effects.

Syntax

Function RegisterForSingleLOSGain(Actor akViewer, ObjectReference akTarget) native

Parameters

  • akViewer: The Actor that will be looking for the target.
  • akTarget: The target the actor will be looking for. If the viewer is not the player, this must be an actor.

Return Value

None

Examples

; Register for the first time that Me sees Spot
RegisterForSingleLOSGain(Me, Spot)

Notes

  • See the notes for RegisterForLOS for limitations, speed considerations and other notes.

See Also