Skip to content
William Gawlik edited this page Apr 12, 2023 · 4 revisions

The main feature that RARE (formerly F1 Regulations) offers, is Formula 1 DRS rules. This feature was initially a janky hack that I came up with, but has sense been properly implemented into the lua sdk by Ilja.


Settings

  • DRS Rules: With this enabled, cars with DRS will only be allowed to use DRS in DRS zones if DRS is enabled by Race Control and if they were within the gap delta when crossing the DRS detection line.
  • Activation Lap: Specifies what lap which Race Control will enable DRS.
  • Gap Delta: The time delta drivers must be within when crossing the DRS detection line in order to have DRS available to them for the next DRS zone
    • Some tracks have 1 detection point for multiple DRS zones, ex. Melbourne.
  • Disable DRS When Wet: Race control will disable DRS deployment if the track gets above a certain wetness threshold.

image

Track Config

  • Tracks must have a drs_zones.ini file in order for DRS to be properly controlled by RARE.
  • This file needs to be located in the track data directory.
  • There needs to be 3 fields for each DRS zone; DETECTION, START, END.

drs_zones.ini Example

[ZONE_0]
DETECTION=0.91557
START=0.95294
END=0.119031

[ZONE_1]
DETECTION=0.11903
START=0.163667
END=0.2422145
Clone this wiki locally