How could I turn on the turn signal in carmaker scenarioes

I want to open the turn signal in manuver, and set some paras to control it in special time

Good morning,

you can use this commands for activating/deactivating the turn signal.

In this specific case I am controlling them based on the distance travelled, you can do with the sim time of course

Eval first(Car.Road.sRoad>810) ? DM.Lights.Indicator = -1
Eval first(Car.Road.sRoad>960) ? DM.Lights.Indicator = 0

2 Likes

Good afternoon,
Thanks for your help, but how could I turn on the left or right indicator?
BRs

Aha, I know that value 1 is symbol left and -1 is right, 0 is turn off, thanks again.