Exemplo n.º 1
0
        public static Packet PartyError(PartyFunction Message)
        {
            Packet pw = new Packet(ServerMessages.PARTY_RESULT);

            pw.WriteByte((byte)Message);
            return(pw);
        }
Exemplo n.º 2
0
        public static Packet PartyErrorWithName(PartyFunction Message, string name)
        {
            Packet pw = new Packet(ServerMessages.PARTY_RESULT);

            pw.WriteByte((byte)Message);
            pw.WriteString(name);
            return(pw);
        }