I have a little issue when i use 2 lines between the if an the else .
Thanks for your help !!!Code:for (uint g = 0; g < CTInfo.GetCoreCount; g++)
{
index = g + (i * CTInfo.GetCoreCount);
if (CTInfo.IsDistanceToTjMax)
SDK.SetUserVar("RRCORETEMP_CORE_TEMP_" + index, Convert.ToString(CTInfo.GetTemp[index]));
SDK.SetUserVar("RRCORETEMP_CORE_LOAD_" + index, Convert.ToString(CTInfo.GetCoreLoad[index]));
else
SDK.SetUserVar("RRCORETEMP_CORE_INFO_" + index, "Core " + index + ": " + CTInfo.GetTemp[index] + "°" + TempType + " , " + CTInfo.GetCoreLoad[index] + "% Load");
SDK.SetUserVar("RRCORETEMP_CORE_TEMP_" + index, Convert.ToString(CTInfo.GetTemp[index]));
}

