RLS Studios
ProjectsPatreonCommunityDocsAbout
Join Patreon
BeamNG Modding Docs

Guides

Reference

server/commands - Camera & Input Commandsge_utils - Game Engine Utility Functionsmain.lua - GE Lua Entry Point & Game Loopmap.lua - Navigation Graph (AI Road Map)screenshot.lua - Screenshot Systemserver/server - Level Loading & Game ServerserverConnection - Client-Server Connection Manager`setSpawnpoint` - Default Spawn Point Persistence`simTimeAuthority` - Simulation Time & Bullet Time Control`spawn` - Vehicle Spawning & Safe Placement`suspensionFrequencyTester` - Suspension Natural Frequency Analysis
Career BranchesCareer System CoreCareer Save System
Career Computer MenuCareer Fuel SystemInspect VehicleVehicle InventoryLinear TutorialLoaner VehiclesCareer LogLogbookMarketplaceMission WrapperCareer Painting ModuleCareer Part Inventory ModuleCareer Part Shopping ModuleCareer Payment ModuleCareer Permissions ModuleCareer Playbook Writer ModuleCareer Player Abstract ModuleCareer Player Attributes ModuleCareer Player Driving ModuleCareer Quick Travel ModuleCareer Rentals ModuleCareer Reputation ModuleCareer Spawn Points ModuleCareer Speed Traps ModuleCareer Test Drive ModuleCareer Tether ModuleCareer Tuning ModuleCareer UI Utils ModuleCareer Unlock Flags ModuleCareer Value Calculator ModuleVehicle Class GroupingVehicle Deletion ServiceVehicle PerformanceVehicle Shopping

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 Extensionscareermodules

Career Player Abstract Module

Provides the "Driver's Abstract" computer menu, which displays the player's insurance/driving record. Thin wrapper around the insurance system's abstract data.

Provides the "Driver's Abstract" computer menu, which displays the player's insurance/driving record. Thin wrapper around the insurance system's abstract data.


Public API

FunctionSignatureDescription
M.openPlayerAbstractMenu(originComputerId)Opens the player abstract UI state
M.getPlayerAbstractData() → tableReturns driver abstract data from insurance module
M.onComputerAddFunctions(menuData, computerFunctions)Registers "Driver's Abstract" button on computers
M.closePlayerAbstractMenu()Returns to computer menu or closes all menus

Dependencies

  • career_modules_insurance_insurance - getPlayerAbstractData() provides the actual data
  • career_modules_computer - menu integration and tutorial checks
  • freeroam_facilities - computer facility lookups

Hooks Emitted

HookWhen
onComputerPlayerAbstractAbstract menu is opened

Usage Example

-- Open from computer callback
career_modules_playerAbstract.openPlayerAbstractMenu(computerId)

-- Get data for custom UI
local data = career_modules_playerAbstract.getPlayerAbstractData()

See Also

  • permissions - Permission checks (not used here, but related computer functions do)

Career Playbook Writer Module

M.dependencies = {'career_career'}

Career Player Attributes Module

M.dependencies = {'career_career'}

On this page

Public APIDependenciesHooks EmittedUsage ExampleSee Also