示例#1
0
文件: Knights.cs 项目: fkose3/KOCharp
 public void ConstructClanNoticePacket(ref Packet result)
 {
     result = new Packet();
     result.SetByte(WIZ_NOTICE);
     result.DByte();
     result.SetByte(4);               // type
     result.SetByte(1);               // total blocks
     result.SetString("Clan Notice"); // header
     result.SetString(m_strClanNotice);
 }
示例#2
0
文件: Knights.cs 项目: fkose3/KOCharp
 public void ConstructClanNoticePacket(ref Packet result)
 {
     result = new Packet();
     result.SetByte(WIZ_NOTICE);
     result.DByte();
     result.SetByte(4);		// type
     result.SetByte(1);			// total blocks
     result.SetString("Clan Notice");	// header
     result.SetString(m_strClanNotice);
 }