SimHub icon indicating copy to clipboard operation
SimHub copied to clipboard

off track flag and disqualification flag

Open alinou83 opened this issue 1 year ago • 1 comments

Hello, I would like to suggest adding the Black flag with the white cross which means disqualification, it does not exist in the list of flags currently available. On the other hand, is it possible to find a solution to manage off track which would be taken into account by a black flag with a green cross so that it is visually materialized on iflags. in the iRacing game, the off tracks are very important, and we have no possibility of visually counting the off tracks during the game, because the indication is too small. I use software called Lumipark which manages off track using a flag, but this requires me to use a 2nd DDU. it would be easier to have everything with simhub

alinou83 avatar Jan 08 '24 06:01 alinou83

This is what I use

isincreasing(15000, [GameRawData.Telemetry.SessionFlagsDetails.Isdisqualify])=1, 1,

if([DataCorePlugin.CurrentGame] == 'AssettoCorsaCompetizione' &&
isincreasing(15000, [ACCCDS_Graphics.Penalty] == 'ACC_Disqualified_PitSpeeding') ,1, 

if([DataCorePlugin.CurrentGame] == 'AssettoCorsaCompetizione' &&
[GameRawData.Graphics.Penalty] == '22' ,1, 

if([DataCorePlugin.CurrentGame] == 'AssettoCorsaCompetizione' && 
isincreasing(15000, [GameRawData.Graphics.Penalty] == '35') ,1, 

if([DataCorePlugin.CurrentGame] == 'AssettoCorsaCompetizione' && 
isincreasing(15000, [GameRawData.Graphics.Penalty] == 'ACC_Disqualified_Cutting') ,1, 0 )))))```

FullPace avatar Mar 03 '24 13:03 FullPace