But what i need to remove to not be duplicated ?
insim.Send(new IS_MTC { UCID=con.UCID, Msg="{" });
            if (user.CurrentCar == "UF1")
            {
                if (user.Speed > 29)
                {
                    Random uf1 = new Random();
                    int uf1count = uf1.Next(5, 15);
                    user.Cash += uf1count;
                }
            }
foreach(clsConnection Conn in Connections)
{
   Conn.NoColPlyName = CPR.PName;
}

<?php 
insim.Send(
    new IS_TINY { ReqI=1, SubT=TinyType.TINY_NCN }, 
    new IS_TINY { ReqI=1, SubT=TinyType.TINY_NPL }, 
    new IS_MST { Msg="Hello, world!" }
);
?>
<?php 
var packets = new List<ISendable>();
packets.Add(new IS_TINY { ReqI=1, SubT=TinyType.TINY_NCN }); 
packets.Add(new IS_MST { Msg="Hello, world!" });
insim.Send(packets.ToArray());
?>
