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 Rentals Module

**⚠️ Work-in-progress / Stub module.** Vehicle rental system skeleton. Most functions are placeholder stubs with no implementation. Lifecycle hooks are commented out-module is effectively inactive.

⚠️ Work-in-progress / Stub module. Vehicle rental system skeleton. Most functions are placeholder stubs with no implementation. Lifecycle hooks are commented out-module is effectively inactive.


Public API

FunctionSignatureDescription
M.isRenting() → boolWhether the player currently has a rental vehicle

Planned Features (Not Implemented)

  • beginRenting(vehInfo) - Spawn rental vehicle, track kilometers
  • vehReturn(veh) - Calculate damage tier, process refund
  • automaticVehReturn(veh) - Auto-return with recollection fee
  • findNearestRentalAgency() - Distance-based nearest agency lookup
  • Abandon timer: 30s countdown when player is >300m from rental vehicle

Internal State

baseAbandonTimer = 30      -- seconds before auto-return
abandonDist      = 300     -- meters threshold
currRentalVeh    = nil     -- current rental vehicle object

Notes

All lifecycle hooks (onExtensionLoaded, onSaveCurrentSaveSlot, onUpdate) are commented out in the return block, so this module does not execute any runtime logic.


See Also

  • testDrive - Active temporary vehicle system (implemented)

Career Quick Travel Module

M.dependencies = {'career_career'}

Career Reputation Module

Organization reputation level system. Calculates reputation levels (-1 to 3) from numeric values, with per-level perks like loaner cost reduction and delivery bonuses.

On this page

Public APIPlanned Features (Not Implemented)Internal StateNotesSee Also