So if I want to lock in 1 specific compound on a track how would I do that? I am using the CART mod and I want to lock speedway tires on speedway oval tracks. I do not understand this new system: CompoundsAllowed { Series8 { Quali=2,1,3,4 Race=2,1,3,4 } Series9 { Quali=2,1,3,4 Race=2,1,3,4 } Series12 { Quali=2,1 Race=1,2 } Series15 { Quali=1,2 Race=1,2 } Series18 { Quali=1,2 Race=1,2 } Series31 { Quali=2,3,1,4,5 Race=2,3,1,4,5 } } } I think it would be something like this but I am not sure what the numbers mean? CompoundsAllowed { SeriesReiza93 { Quali=2,1,3,4 Race=2,1,3,4 } }
I´d already replied in the Beta topic, but in case others also have similar doubts: You should add the parameters you want using the updated syntax to your custom GDB file: CompoundsAllowed { SeriesXX { Quali=2,1 Race=2,1, ) Where "XX" is an unique ID you´ll need to create & add to the top block of your mod´s SRS file - make sure it doesn´t conflict with IDs of original content (should be above 40). So if you´re adjusting the CART mod which has ID=55 and you want to restrict the track so that only speedway tires can be used, adding something like this should work: CompoundsAllowed { Series55 { Quali=4 Race=4 ) } The logic for restricting compound is the same as before, with the exception you can now specify different restrictions for quali and race.