Below is my original post / problem. For those with similar problems; Solution: Settings -> PID Config --> Check box enabling the scripts.
--------------------------------------------------------
Using the original BOOST script, along with one that I created just to test out the scripting capabilities, neither one will report out under logging / monitoring mode.
original boost:
// Script for scaling -15 to +20 PSI Boost Gauge
var ManifoldRelativePressurePSI = Obdii.GetPidValueEnglish("SAE.MAP") / 2.04; // inHg to PSI
var BarometricPressurePSI = Obdii.GetPidValueEnglish("SAE.BARO") / 2.04; // inHg to PSI
//var BoostPSI = ManifoldRelativePressurePSI - BarometricPressurePSI - 14.70; // Zero at atmospheric
var BoostPSI = ManifoldRelativePressurePSI - BarometricPressurePSI; // Zero at atmospheric
Obdii.PidValue.English = BoostPSI;
Obdii.PidValue.Metric = BoostPSI / 14.50; // PSI to Bar
my mph (i understand there is an easier way to display mph (VSS) aswell as a better way from getting the metric kph however just trying to get scripting to work

var MPH = Obdii.GetPidValueEnglish("SAE.VSS");
Obdii.PidValue.English = MPH;
Obdii.PidValue.Metric = MPH / 0.6214;
Neither works after creating a gauge (with appropriate graduations).
My car fully supports SAE.MAP,SAE.BARO, and SAE.VSS and I am able to report them individually through the dashboard log and monitor, but not any scripts... am i missing anything in settings or...?