Ejemplo n.º 1
0
        public static void QueryPartyMemberLocations(NetState state, CircularBufferReader reader, int packetLength)
        {
            Mobile from  = state.Mobile;
            var    party = Party.Get(from);

            if (party != null)
            {
                state.SendPartyMemberLocations(from, party);
            }
        }
Ejemplo n.º 2
0
        public static void QueryPartyMemberLocations(NetState ns, CircularBufferReader reader)
        {
            Mobile from  = ns.Mobile;
            var    party = Party.Get(from);

            if (party != null)
            {
                ns.SendPartyMemberLocations(from, party);
            }
        }