RegisterForSingleLOSGain - Form
Revision as of 08:02, 12 September 2012 by imported>JLundin
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.