예제 #1
0
 public static void SendStartMoveCommonToOneClienResponset(Character movingChr, IRealmClient recievingClient,
                                                           bool instant)
 {
     using (RealmPacketOut startComonMovePacket =
                Asda2MovmentHandler.CreateStartComonMovePacket(movingChr, instant))
         recievingClient.Send(startComonMovePacket, true);
 }
예제 #2
0
 public static void SendStartMoveCommonToAreaResponse(Character chr, bool instant, bool includeSelf = true)
 {
     using (RealmPacketOut startComonMovePacket = Asda2MovmentHandler.CreateStartComonMovePacket(chr, instant))
         chr.SendPacketToArea(startComonMovePacket, includeSelf, true, Locale.Any, new float?());
 }