Hi! To put only the blue flag song you have to open the lotOfDamage.py(contained in assettocorsa / app / python / lotOfDamage /) file, find the string "def acUpdate (deltaT):" and delete all the lines from line 39 to 92 included. At the end you should find yourself a function like:
def acUpdate(deltaT):
global flagPit, old, flagRace, flagQualy, flagBlueFlag, timer
info = SimInfo()
damage = info.physics.carDamage
if info.graphics.flag == 1 and flagBlueFlag == 0:
flagBlueFlag = 1
ac.log("Blue flag seb")
winsound.PlaySound('apps/python/lotOfDamage/sounds/blueFlag.wav', winsound.SND_ASYNC)
def acUpdate(deltaT):
global flagPit, old, flagRace, flagQualy, flagBlueFlag, timer
info = SimInfo()
damage = info.physics.carDamage
if info.graphics.flag == 1 and flagBlueFlag == 0:
flagBlueFlag = 1
ac.log("Blue flag seb")
winsound.PlaySound('apps/python/lotOfDamage/sounds/blueFlag.wav', winsound.SND_ASYNC)
elif info.graphics.flag != 1 and flagBlueFlag == 1:
flagBlueFlag = 0
winsound.PlaySound(None, winsound.SND_PURGE)