Esempio n. 1
0
 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);
 }
Esempio n. 2
0
 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);
 }