Mother DocsMother Docs
Buy me a Coffee
Steam Workshop
Discord
  • Mother OS (Ingame Script)
Buy me a Coffee
Steam Workshop
Discord
  • Mother OS (Ingame Script)
  • Mother OS (Ingame Script)
    • Getting Started

      • Upgrade Guide
      • Installation
      • Command Line Interface (CLI)
      • Configuration
      • Modules
    • Core Modules

      • Activity Monitor
      • Almanac
      • Block Catalogue
      • Local Storage
      • Security
      • Intergrid Message Service
    • Extension Modules

      • Air Vent Module
      • Battery Module
      • Terminal Block Module
      • Cockpit Module
      • Connector Module
      • Display Module
      • Docking Module
      • Door Module
      • Flight Control Module
      • Gas Tank Module
      • Gyroscope Module
      • Hinge Module
      • Landing Gear Module
      • Light Module
      • Flight Planning Module
      • Piston Module
      • Programmable Block Module
      • Rotor Module
      • Sensor Module
      • Sound Block Module
      • Thruster Module
      • Timer Block Module
    • Command Cheatsheet
    • Compatibility
    • Examples
  • Powered By Mother

Timer Block Module

The Timer Block module allows the user to interact with Timer Blocks on the grid. This module is useful as it allows Mother to interoperate with existing automations on your grid.

  • Commands
    • start
    • trigger
    • stop

Commands

start

Start execution for a timer block or group of timer blocks.

timer/start <TimerBlock|Group> [--options]

Options

OptionValuesUnitDescription
delay1 - 3600secondsSet the delay of the timer block before starting execution.

Example

Terminal
# Start the timer block with a delay of 10 seconds
timer/start MainTimerBlock --delay=10;

trigger

Trigger the immediate execution of a timer block or group of timer blocks

timer/trigger <TimerBlock|Group> [--options]

Example

Terminal
# Trigger immediate execution of the timer block.
timer/trigger MainTimerBlock;

stop

Stop execution of a timer block or group of timer blocks

timer/stop <TimerBlock|Group> [--options]

Example

Terminal
# Stop the timer block
timer/stop MainTimerBlock;
Last Updated:: 3/20/25, 8:40 PM
Contributors: Luke Morrison
Prev
Thruster Module