Write string to player terminal. Does not automatically append newlines.
This ship's unique universal identifier (UUID)
Array of the ship's thrusters
Instance of Radio
Sets thruster force if specified, returns current force
screen.write('Thruster force: ' + ship.thrusters[0].force(3));
// Thruster force: 3
messagemessage stringsenderSending ship's UUID
Broadcast string over the galactic radio
// repeat all messages
ship.radio.on('message', function(message, id) {
if (id !== ship.id) {
ship.radio.send('repeating: ' + message);
}
});