Merlin of Mines - Space Engineers

A set of useful scripts for aspiring Space Engineers!

View on GitHub

Antenna Block Handler

This Block Handler handles broadcasting antennas. There are separate block handlers for Beacons and Laser Antennas.

Default Primitive Properties:

Default Directional Properties

“Text” Property

Gets or sets the HudText for the antenna.

set the "Base Antenna" text to "The Bat Cave"

“Connect” Property

Enables or disables broadcasting, meaning whether the antenna can be seen from your HUD when in range.

#All of these Enable Broadcasting
tell the "Base Antenna" to connect
tell the "Base Antenna" to broadcast
turn on the "Base Antenna"

#Disables Broadcasting
disconnect the "Base Antenna"
tell the "Base Antenna" to not broadcast
turn off the "Base Antenna"

“Broadcast” Property

Enables or disables broadcasting, meaning whether the antenna can be seen from your HUD when in range.

if the "Base Antenna" is broadcasting
  Print "Whoops! Didn't mean to tell everyone I was here"
  turn off the "Base Antenna"

“Radius” Property

Get or sets the Antenna’s Radius (meaning how far it broadcast). Value is in meters, so 2000 = 2000m = 2km

Print "Antenna Radius: " + the "Base Antenna" radius
set the "Base Antenna" radius to 3000

“Range” Property

Same as Radius. Get or sets the Antenna’s Range (meaning how far it broadcast). Value is in meters, so 2000 = 2000m = 2km

Print "Antenna Range: " + the "Base Antenna" range
set the "Base Antenna" range to 3000

“Show” Property

Gets or sets whether the Antenna shows the Ship Name as part of the Hud Text. Does not control whether the ship is broadcasting or not, and doesn’t control the Hud Text.

if the "Base Antenna" is showing
  Print "The world knows my ship's name!"
  
#Hide
hide the "Base Antenna"
Print "You know I'm here, but you don't know my name!"

Note that this overrides the “show” property of Terminal Block. So if you want to hide an antenna from the terminal menu, specify “terminal” as the block type:

#Hides "Base Antenna" from tne terminal menu
hide the "Base Antenna" terminal

#Hides the ship name from Hud Text
hide the "Base Antenna"