Background for Starfield
Member of the ObjectReference script
voidfunctionMakeTransmitterRepeater(ObjectReferenceakTransmitterToRepeat, floatafInnerRadius, floatafOuterRadius, boolabUnlimitedRange=false)Native

Description

Wiki Description

Make this object into a radio transmitter-repeater. Repeaters can extend the range of an existing, limited-range radio transmitter. All radio scene actions sent to the source transmitter are detectable by radio receivers that are within range of any of the source's repeaters.

Documentation Comment

Make this object a radio transmitter which will repeat all transmissions sent by akTransmitterToRepeat.


Parameters

  1. ObjectReferenceakTransmitterToRepeat

    CK Wiki Description

    The radio transmitter reference to repeat.

  2. floatafInnerRadius

    CK Wiki Description

    Inner radius for the repeater. Inside this radius, there is no radio static mixed into the signal due to distance.

  3. floatafOuterRadius

    CK Wiki Description

    Outer radius for the repeater. Beyond this radius, the signal is lost.

  4. boolabUnlimitedRange=false

    CK Wiki Description

    True if the repeater should ignore the inner/outer radii and be detectable anywhere.

    • Default:false

Examples

ObjectReference Property Transmitter Auto
; Make us a short-range repeater for Transmitter
self.MakeTransmitterRepeater( Transmitter, 2000, 4000 )

Auto-Generated Example

ObjectReference myObjectReference__akTransmitterToRepeat
float myFloat__afInnerRadius
float myFloat__afOuterRadius
bool myBool__abUnlimitedRange

myObjectReference__toCallFunctionOn.MakeTransmitterRepeater(myObjectReference__akTransmitterToRepeat, myFloat__afInnerRadius, myFloat__afOuterRadius, myBool__abUnlimitedRange)

Related Pages


Additional References

View this function’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.