Advanced Configuration

Adding Custom F1 Models

If you have custom F1 car models, add their spawn names:

F1Config.F1_MODELS = {
    GetHashKey("your_custom_f1"),
    GetHashKey("another_f1_car"),
    -- Use GetHashKey() for model names
}

Setting Up Multiple Interaction Points

Currently supports one interaction point. For multiple locations, you would need to modify the script or create separate instances.

Optimizing for Large Grids

For races with many players:

F1Config.UPDATE_RATES = {
    SCAN_VEHICLES = 2000,  -- Scan less frequently
    CAMERA_UPDATE = 16,    -- Keep camera smooth
    UI_UPDATE = 100,       -- Update UI less often
}

Last updated