RLS Studios
ProjectsPatreonCommunityDocsAbout
Join Patreon
BeamNG Modding Docs

Guides

Reference

Server CommandsGE UtilitiesGame Engine MainNavigation GraphScreenshot CaptureServerServer ConnectionSpawnpoint ManagerSimulation TimeVehicle SpawningSuspension Frequency Tester
Flowgraph Base ModuleFlowgraph Base NodeFlowgraph Base State NodeFlowgraph Node BuilderFlowgraph GraphFlowgraph Group HelperFlowgraph LinkFlowgraph ManagerNew Node TemplateFlowgraph PinFlowgraph States ManagerFlowgraph UtilsFlowgraph Variable Storage
Medal / Auto Medal (Flowgraph Node)Clear Messages (Flowgraph Node)Context Translation (Flowgraph Node)ConvertUnit (Flowgraph Node)Set UI Timer / Corner Timer (Flowgraph Node)Custom Button TEST (Flowgraph Node)Custom UI Layout (Flowgraph Node)End Screen (Flowgraph Node)End Stats (Flowgraph Node)Fade From Black (Flowgraph Node)Fade Sequence (Flowgraph Node)Fade To Black (Flowgraph Node)Flash Message (Flowgraph Node)Generic Mission Text (Flowgraph Node)Get Gamestate (Flowgraph Node)Show Editor (Flowgraph Node)Hide Game UI (Flowgraph Node)Message (Flowgraph Node)Mission End Screen (Flowgraph Node)Popup (Flowgraph Node)Monologue (Flowgraph Node)Multi Description (Flowgraph Node)On Bigmap Poi (Flowgraph Node)On Bigmap State Change (Flowgraph Node)Set UI Race Checkpoints (Flowgraph Node)Set UI Race Laps (Flowgraph Node)Set UI Race Recovery (Flowgraph Node)RT Message (Flowgraph Node)Select Buttons (Flowgraph Node)Set UI Layout (Flowgraph Node)Show Apps (Flowgraph Node)Show Monitor (Flowgraph Node)Start Screen (Flowgraph Node)Clear Goals (Flowgraph Node)Tasklist Message (Flowgraph Node)Tasklist Task (Flowgraph Node)Three Element Select (Flowgraph Node)Vehicle Selector (Flowgraph Node)

UI

Resources

BeamNG Game Engine Lua Cheat SheetGE Developer RecipesMCP Server Setup

// RLS.STUDIOS=true

Premium Mods for BeamNG.drive. Career systems, custom vehicles, and immersive gameplay experiences.

Index

HomeProjectsPatreon

Socials

DiscordPatreon (RLS)Patreon (Vehicles)

© 2026 RLS Studios. All rights reserved.

Modding since 2024

API ReferenceGE Extensionsflowgraphnodesui

Flash Message (Flowgraph Node)

- **Node Name:** `Flash Message`

Overview

  • Node Name: Flash Message
  • Category: (has duration behaviour, pass-through flow)
  • File: extensions/flowgraph/nodes/ui/flashMessage.lua

Shows a temporary message in the middle of the screen. Requires the "UI Layout" node to be set up for messages to be visible.

Pin Schema

Input Pins

PinTypeDefaultDescription
flowflow-Inflow
instantbool-If true, clears all previous messages first (hidden)
messageany-Message to display (string or table)
durationnumber3Display duration in seconds
biggerTextbooltrueShow message in larger size (hidden)

Output Pins

PinTypeDescription
flowflowPasses through input flow

Internals

Key Methods

MethodDescription
init()Loads scenario/scenariohelper
work()Optionally clears messages, then calls scenariohelper.flashUiMessage()

How It Works

  1. On each trigger, if instant is true, clears existing messages via guihooks.trigger('ScenarioFlashMessageClear').
  2. Converts the message to string if it's not a table.
  3. Calls scenariohelper.flashUiMessage(msg, duration, biggerText) to display it.
  4. Passes flow through immediately (non-blocking).

Usage Example

-- Display a message for 5 seconds:
-- Connect: message = "Checkpoint reached!", duration = 5

-- Under the hood:
local helper = require('scenario/scenariohelper')
helper.flashUiMessage("Checkpoint reached!", 5, true)

-- To clear and show instantly:
guihooks.trigger('ScenarioFlashMessageClear')
helper.flashUiMessage("GO!", 3, true)

Key Dependencies

  • scenario/scenariohelper - flashUiMessage() function
  • guihooks.trigger('ScenarioFlashMessageClear') - clears queued messages

See Also

  • Medal / Auto Medal (Flowgraph Node) - Related reference
  • Clear Messages (Flowgraph Node) - Related reference
  • Context Translation (Flowgraph Node) - Related reference
  • FlowGraph Guide - Guide

Fade To Black (Flowgraph Node)

- **Node Name:** `Fade To Black`

Generic Mission Text (Flowgraph Node)

- **Node Name:** `Generic Mission Text`

On this page

OverviewPin SchemaInput PinsOutput PinsInternalsKey MethodsHow It WorksUsage ExampleKey DependenciesSee Also