How could i implement a function to lower turbo PSI automatically when the coolant gets too hot? Currently i've got this script, which doesn't work: { "tbcu": { "information":{ "authors":"Wymberto", "name":"Boost Controller", "value":250, }, "slotType" : "tbcu", "controller": [ ["fileName"], ["driveModes"] ], "driveModes": { "enabledModes":["Controlled","Max"] "defaultMode": "Controlled" "defaultSettings": [ ["type"] ["turbocharger", {"name": "mainEngine", "wastegateOffset": -30}], ], "modes": { "Controlled": { "name": "Temp Regulated", "order": 10, "settings": [ ["type"] ["turbocharger", {"name": "mainEngine", "wastegateOffset": 90 - coolantTemperature}], ], }, "Max": { "name": "Max Turbo", "order": 20, "settings": [ ["type"] ["turbocharger", {"name": "mainEngine", "wastegateOffset": 0}], ], }, }, }, }, }
Thats a @synsol question I think, but that would actually be quite useful in the game to have that ability to reduce boost when the temperature exceeds a specific temperature to reduce the head soak through the engine
The Anti-lag Turbo mod has turbo-normalization(higher boost at high altitude), part of its code might be useful for temperature compensation, you can ask @gt02 for help