Exemplo n.º 1
0
        public static void QueryGuildMemberLocations(NetState state, CircularBufferReader reader, int packetLength)
        {
            Mobile from = state.Mobile;

            state.SendGuildMemberLocations(from, from.Guild as Guild, reader.ReadBoolean());
        }
Exemplo n.º 2
0
 public static void SetWarMode(NetState state, CircularBufferReader reader)
 {
     state.Mobile?.DelayChangeWarmode(reader.ReadBoolean());
 }
Exemplo n.º 3
0
        public static void QueryGuildMemberLocations(NetState ns, CircularBufferReader reader)
        {
            Mobile from = ns.Mobile;

            ns.SendGuildMemberLocations(from, from.Guild as Guild, reader.ReadBoolean());
        }