1. Do you need support for Assetto Corsa Competizione? Please use the proper forum below and ALWAYS zip and attach the WHOLE "Logs" folder in your c:\users\*youruser*\AppData\Local\AC2\Saved. The "AppData" folder is hidden by default, check "Hidden items" in your Windows view properties. If you report a crash, ALWAYS zip and attach the WHOLE "Crashes" folder in the same directory. Do not post "I have the same issue" in an existing thread with a game crash, always open your own thread. Do not PM developers and staff members for personal troubleshooting and support.
  2. As part of our continuous maintenance and improvements to Assetto Corsa Competizione we will be releasing small updates on a regular basis during the esports season which might not go through the usual announcement process detailing the changes until a later version update where these changes will be listed retrospectively.
  3. If ACC doesn't start with an error or the executable is missing, please add your entire Steam directory to the exceptions in your antivirus software, run a Steam integrity check or reinstall the game altogether. Make sure you add the User/Documents/Assetto Corsa Competizione folder to your antivirus/Defender exceptions and exclude it from any file sharing app (GDrive, OneDrive or Dropbox)! The Corsair iCue software is also known to conflict with Input Device initialization, if the game does not start up and you have such devices, please try disabling the iCue software and try again. [file:unknown] [line: 95] secure crt: invalid error is a sign of antivirus interference, while [Pak chunk signing mismatch on chunk] indicates a corrupted installation that requires game file verification.
  4. When reporting an issue with saved games, please always zip and attach your entire User/Documents/Assetto Corsa Competizione/Savegame folder, along with the logs and the crash folder (when reporting related to a crash).

ACC Safety Car

Discussion in 'ACC General Discussions' started by Zorasht, Sep 15, 2018.

  1. I like the idea that the Admin/Race director could have the option to trigger a VSC (or pit limiter 100kmh) to compact the field in case of a major incident
     
  2. Oblit0r

    Oblit0r Alien

    That's not how a VSC works. All cars have to slow down to the same pace, all cars will keep the gap between them. There's no bunching up during a VSC.

    If you want a safety car in a league race, there's no one stopping you from spawning an extra car, like a GT4 or whatever, and let one of the stewards drive it. It's not that hard.
     
    cestcomi and AndyK70 like this.
  3. jarqus

    jarqus Racer

    I know this is an old thread, but it could be considered a competition yellow or random based on admin values.

    ommands can be used to give pentiles live currently, so I'm sure it could be set to automatically have parameters set though a 3rd party app.

    i.e slow to 100kph after crossing control line etc then hand out penalties for whatever infringement based on what is set.

    randomaly would be a good way (from AC)


    Code:
    # Check if VSC_ON or VSC_OFF needs to be triggered
            if not vsc_on_triggered and not vsc_off_triggered:
                # Check if there are reruns remaining
                if current_rerun < reruns:
                    rand = random.randint(1, 100)
                    ac.console("VSC_Rand: {}".format(rand))
                    if rand <= chance:
                        # VSC_ON should be triggered
                        vsc_on_delay = random.uniform(vsc_on_min, vsc_on_max)
                        ac.console("VSC_ON: {}".format(vsc_on_delay))
                        vsc_on_triggered = True
                    else:
                        # VSC_ON should not be triggered, count this as a rerun
                        current_rerun += 1
                        ac.console("Reruns remaining: {}".format(reruns - current_rerun))
    
            # Check if VSC_ON delay has passed
            if vsc_on_triggered:
                vsc_on_delay -= deltaT
                if vsc_on_delay <= 0:
                    ac.console("VSC_ON Finished")
                    vsc_on_triggered = False
                    vsc_off_delay = random.uniform(vsc_off_min, vsc_off_max)
                    ac.console("VSC_OFF: {}".format(vsc_off_delay))
                    vsc_off_triggered = True
                    ac.sendChatMessage(vsc_on_message)
    
            # Check if VSC_OFF delay has passed
            if vsc_off_triggered:
                vsc_off_delay -= deltaT
                if vsc_off_delay <= 0:
                    ac.console("VSC_OFF Finished")
                    vsc_off_triggered = False
                    current_rerun += 1
                    ac.console("Reruns remaining: {}".format(reruns - current_rerun))
                    ac.sendChatMessage(vsc_off_message)
    Code:
    [vsc_call]
    reruns = 3
    chance = 12
    vsc_on_min = 1000
    vsc_on_max = 2800
    vsc_off_min = 120
    vsc_off_max = 240
    
     
Similar Threads
Forum Title Date
ACC PS4/PS5/XB1/XBX/S General Discussions ACC HUD SAFETY (PS5) Aug 2, 2022
ACC Tools ACC Virtual Safety with indicator start race ? May 20, 2021
ACC General Discussions ACC Safety Rating needs a rework Aug 23, 2020
ACC General Discussions Discussing ACC Safety rating Feb 6, 2019
ACC Multiplayer ACC dedicated server race start hangs, but only on Nordshleife Apr 13, 2024
ACC Troubleshooting Access violation on game startup . The UE4-AC2 game has crashed Apr 11, 2024
ACC Multiplayer ACC Server Setting Apr 7, 2024
ACC Troubleshooting RealtimeCarUpdate.Heading/Yaw removed from ACC Broadcast UDP in favor of WorldPosZ/Elevation? Apr 4, 2024
ACC Multiplayer Missing information in ACC Server Admin Handbook Version 1.10.0 Apr 3, 2024
ACC Physics ACC inconsistensies should be addressed for the future of the game. (Ex: Braking mechanics & tracks) Apr 3, 2024
ACC PS4/PS5/XB1/XBX/S General Discussions ACC chrashed started Race in carriere modus Apr 2, 2024
Bug reports acc fov bug Apr 2, 2024
ACC Troubleshooting ACC 1.10.0 crash Nurb Nordschleife Apr 1, 2024
ACC PS4/PS5/XB1/XBX/S General Discussions ACC Will it get cross party not just cross play on consoles? Mar 23, 2024
ACC Physics Does ACC not implement real life braking mechanics?(Need some insights on this recent youtube video) Mar 16, 2024

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice