GetLinkedRef

From the Fallout3 GECK Wiki
Jump to navigation Jump to search

Description[edit | edit source]

GetLinkedRef gives the reference that is currently linked to the current reference. For example, if a switch opens a door, you can link the switch to the door and if the switch is activated you get the door reference and activate it. It is called on a reference and takes no parameters.

Syntax[edit | edit source]

[ObjectREF.]GetLinkedRef

Examples[edit | edit source]

A simple, completed example of a switch script that uses GetLinkedRef is below.

The activator that will hold this script should have an enable parent added to it as its linked ref.

scn SwitchScript

ref MyMarker 

Begin OnActivate

Set MyMarker to GetLinkedRef

    if MyMarker.GetDisabled == 0 ;if marker is enabled...
         PlaySound OBJSwitchButtonB
         MyMarker.Disable

else
         PlaySound OBJSwitchButtonA
         MyMarker.Enable

endif
end


See Also[edit | edit source]