Example #1
0
        public static void RemoveBuff(AbStateInfo AbState, params WorldCharacter[] Receiver)
        {
            using (var packet = new InterPacket(InterHeader.ZoneCharacterRemoveBuff))
            {
                packet.WriteUShort(AbState.ID);

                packet.WriteInt(Receiver.Length);
                Array.ForEach(Receiver, ch => packet.WriteInt(ch.ID));


                ZoneManager.Broadcast(packet);
            }
        }
Example #2
0
 public static bool init()
 {
     Instance = new ZoneManager();
     return(true);
 }
Example #3
0
 public static bool init()
 {
     Instance = new ZoneManager();
     return true;
 }