RLS Studios
ProjectsPatreonCommunityDocsAbout
Join Patreon
BeamNG Modding Docs

Guides

Reference

Server CommandsGE UtilitiesGame Engine MainNavigation GraphScreenshot CaptureServerServer ConnectionSpawnpoint ManagerSimulation TimeVehicle SpawningSuspension Frequency Tester
Gameplay AchievementGameplay CityDiscoverForce FieldGarage ModeMarker InteractionParking SystemGameplay Playmode MarkersGameplay PoliceGameplay RallyGameplay Rally LoopGameplay Raw POIsGameplay Skidpad TestSpeed Trap LeaderboardsSpeed Traps and CamerasGameplay StatisticsTaxi Ride SystemTraffic SystemVehicle PerformanceWalking
Rally Audio ManagerRally Camera Path PlayerRally ClientRally Cut CaptureRally EnumsRally Extension HelperRally GeometryRally ManagerRecce ManagerRecce AppRecce SettingsRally Settings ManagerSnap-to-RoadTraffic Exclusion ZonesRally UtilityRally Vehicle CaptureRally Vehicle Tracker

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 Extensionsgameplayrally

Rally Extension Helper

Stub extension for rally gameplay. Provides empty `load` and `unload` lifecycle hooks. Currently contains no functional logic - serves as a placeholder for future rally extension management.

Stub extension for rally gameplay. Provides empty load and unload lifecycle hooks. Currently contains no functional logic - serves as a placeholder for future rally extension management.


Public API

FunctionSignatureReturnsDescription
M.load()nilCalled when the extension is loaded (no-op)
M.unload()nilCalled when the extension is unloaded (no-op)

How It Works

This is a minimal extension skeleton. Both load and unload are empty functions that serve as lifecycle hooks for the extension system. The module returns M with these two functions registered.


Usage Example

-- Loaded automatically by the extension system
-- No direct usage required
local extHelper = require('gameplay/rally/extHelper')

See Also

  • Rally Audio Manager - Related reference
  • Rally Camera Path Player - Related reference
  • Rally Client - Related reference
  • Gameplay Systems Guide - Guide

Rally Enums

Defines enumeration constants for the rally system: pacenote audio modes, trigger types, and slow corner release types.

Rally Geometry

Early work-in-progress rally co-driver system. Generates pacenotes from a route by analyzing road geometry - computing turn radius, velocity, severity, and direction for each node, then splitting and

On this page

Public APIHow It WorksUsage ExampleSee Also