Hey everyone, so here's an idea I been thinking about for a very long time. So you know how Honda motors have VTEC which in the 1990's to early 2000's is a staged variable valve timing and lift valve train system, which affects power and noise instantly, as shown here: What I'm thinking of, in the engine file, is there a way to modulate the intakeMuffling variable of the intake noise on the fly just like how different intakes can modify torque values, for example: "mainEngine":{ "torqueModIntake":[ ["rpm", "torque"], [0, 0], [500, 10], [5350, 12], [5970, 12], ], But instead of it modifying torque, it looks like this: "soundConfig": { "$+intakeMuffling":[ ["rpm", "$+intakeMuffling"], [0, -1.00], [500, -1.00], [2999, -1.00], [3000, 1], [5970, 1], ], "$+mainGain":[ ["rpm", "$+mainGain"], [0, -8], [500, -8], [2999, -8], [3000, 0], [5970, 0], ], }, Atleast to try to simulate a staged variable valve timing and lift system.