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
Add To Inventory (Flowgraph Node)Career Vehicle Select (Flowgraph Node)Set Tutorial Step (Flowgraph Node)Complete Quest (Flowgraph Node)On Custom Tow (Flowgraph Node)Garage Computer Util (Flowgraph Node)Garage Tutorial Util (Flowgraph Node)Get Tutorial Step (Flowgraph Node)Get Tutorial Flag (Flowgraph Node)Logbook Entry (Flowgraph Node)Menu Closed (Flowgraph Node)On Garage Event (Flowgraph Node)On Intro Popup Career Closed (Flowgraph Node)On Poi Prompt Shown (Flowgraph Node)On Mission Start/Stop (Flowgraph Node)On RefuelingOn Testdrive ChangedOn Vehicle Shopping EventAdd Or Remove Player AttributeSet Fuel LevelSet Tutorial FlagTasklist HeaderVehicle Group by Performance Class

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 Extensionsflowgraphnodescareer

Vehicle Group by Performance Class

- **Name:** `Vehicle Group by Performance Class`

Overview

  • Name: Vehicle Group by Performance Class
  • Category: once_instant
  • File: lua/ge/extensions/flowgraph/nodes/career/vehicleGroupByClass.lua
  • Pattern: Class-based (C = {}, returns _flowgraph_createNode(C))
  • Author: BeamNG
  • Dependencies: career_modules_vehicleClassGrouping

Description

Generates a vehicle group based on a performance class. Accepts the class as a letter ("S"–"D") or number (1–5) and outputs group data plus an AI aggression multiplier.

Pin Schema

Input Pins

PinTypeDescription
classstring or numberVehicle class - "S", "A", "B", "C", "D" or 1–5

Output Pins

PinTypeDescription
vehGrouptable (vehicleGroupData)Generated vehicle group data
aggressionCoefnumberAI aggression multiplier for the class

Behavior

  • workOnce() converts numeric class input to a letter (1→"S", 2→"A", 3→"B", 4→"C", 5→"D"), clamped to 1–5.
  • Calls career_modules_vehicleClassGrouping.generateGroup(class) for vehicle group data.
  • Calls career_modules_vehicleClassGrouping.getAggressionMultiplier(class) for the aggression coefficient.

Key APIs Used

  • career_modules_vehicleClassGrouping.generateGroup(class)
  • career_modules_vehicleClassGrouping.getAggressionMultiplier(class)

Tags

#flowgraph #node #ge #career #race #vehicle #class


Additional Exports

  • name - string - (see source)

  • description - string - (see source)

  • category - string - (see source)

  • color - any - (see source)

  • icon - any - (see source)

  • author - string - (see source)

  • dependencies - table - (see source)

  • pinSchema - table - (see source)

  • tags - table - (see source)


See Also

  • Add To Inventory (Flowgraph Node) - Related reference
  • Career Vehicle Select (Flowgraph Node) - Related reference
  • Set Tutorial Step (Flowgraph Node) - Related reference
  • FlowGraph Guide - Guide

Tasklist Header

- **Name:** `Tasklist Header`

AI Debug Display

- **Name:** `AI Debug Display`

On this page

OverviewDescriptionPin SchemaInput PinsOutput PinsBehaviorKey APIs UsedTagsAdditional ExportsSee Also