Beispiel #1
0
        public static void SendPlaySoundToMap(Map map, uint sound)
        {
            using (var packet = new RealmPacketOut(RealmServerOpCode.SMSG_PLAY_SOUND, 4))
            {
                packet.WriteUInt(sound);

                map.SendPacketToMap(packet);
            }
        }