Exemplo n.º 1
0
        public Death Aggro(NpcEntity entity)
        {
            Death death = null;

            if (entity != null)
            {
                _aggro.TryGetValue(entity, out death);
            }
            return(death ?? new Death());
        }
Exemplo n.º 2
0
 public void AggroStart(Player player, NpcEntity target, long start)
 {
     if (!PlayerAggro.ContainsKey(player))
     {
         PlayerAggro.Add(player, new Dictionary <NpcEntity, Death>());
     }
     if (!PlayerAggro[player].ContainsKey(target))
     {
         PlayerAggro[player][target] = new Death();
     }
     PlayerAggro[player][target].Start(start);
 }
Exemplo n.º 3
0
 public PlayerAbnormals()
 {
     Times  = new Dictionary <HotDot, AbnormalityDuration>();
     Death  = new Death();
     _aggro = new Dictionary <NpcEntity, Death>();
 }