UnregisterForLOS - Form

From the CreationKit Wiki
Revision as of 16:27, 13 January 2011 by imported>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

Unregisters this active magic effect/alias/form to stop receiving LOS events from between the viewer and the target.

Syntax

Function UnregisterForLOS(Actor akViewer, ObjectReference akTarget) native

Parameters

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

Return Value

None

Examples

; Unregister for Joe seeing Bob
UnregisterForLOS(Joe, Bob)

Notes

Aliases and quests will automatically unregister for this event when the quest stops. Active magic effects will automatically unregister when they are removed.

See Also