There is no error, no change, same code name, it works in version 8, it's like it doesn't see it when I switch to version 9
private void CIM_InterfaceMode(InSim insim, IS_CIM cim)
{
try
{
clsConnection Conn = this.Connections[this.GetConnIdx(cim.UCID)];
if (cim.Mode == ModeIdentifier.CIM_NORMAL)
{
insim.send("test 1");
}
else if (cim.Mode == ModeIdentifier.CIM_CAR_SELECT)
{
insim.send("test 2");
}
}
catch (Exception EX)
{
LogTextToFile("packetError", "CIM - " + EX.Message);
}
}