byte[] dest1 = new byte[14336];
byte[] dest2 = new byte[8320];
if (i<4)
{
System.arraycopy(data, (14336*i), dest1, 0, 14336);
ExPledgeCrestLarge pcl = new ExPledgeCrestLarge(_crestId, dest1, i);
sendPacket(pcl);
}
else
{
System.arraycopy(data, (14336*i), dest2, 0, 8320);
ExPledgeCrestLarge pcl = new ExPledgeCrestLarge(_crestId, dest2, i);
sendPacket(pcl);
}
}
}
}