Hello!
Today i saw old bug: (in picture)
Here is any way to fix that bug?
                
                    
            Today i saw old bug: (in picture)
Here is any way to fix that bug?
<?php 
public byte[] MST(string msg)
        {
            int msgLen = msg.Length > 63 ? 63 : msg.Length;
            byte[] packet = new byte[68];
            packet[0] = 68;
            packet[1] = (byte)TypePack.ISP_MST;
            packet[2] = 0;
            packet[3] = 0;
            InSim.CodePage.GetBytes(msg, 0, msgLen, packet, 4);
            return packet;
        }
?>