Can I code the blasto BFE 150 so that it only closes the nozzle in between 1% and 99%? Im trying to make an afterburner and i want the engine nozzle to open completely at 100%. I tried 0<Throttle<99 in the input controller however the engine started at 0%
@HuskyDynamics01 Ok tysm i got it
Try
Throttle=1 ? 0 : Throttle. This will make the engine go to 0% (open completely) when Throttle is at maximum, but will use whatever Throttle is set to if Throttle is not at maximum.(Because it's displayed as a percentage, the Throttle value goes between 0 and 1, not 0 and 100.)