Exemplo n.º 1
0
        void combatTracker_AetheriaInfoUpdated(AetheriaInfo obj)
        {
            AddNamesToList(obj.SourceName, obj.TargetName);

            if (!String.IsNullOrEmpty(obj.SourceName) && obj.SourceName != CoreManager.Current.CharacterFilter.Name)
            {
                loadInfoForName(obj.SourceName);
            }

            if (!String.IsNullOrEmpty(obj.TargetName) && obj.TargetName != CoreManager.Current.CharacterFilter.Name)
            {
                loadInfoForName(obj.TargetName);
            }
        }
Exemplo n.º 2
0
        void combatTracker_AetheriaInfoUpdated(AetheriaInfo obj)
        {
            updateAllRow();

            AddNamesToList(obj.SourceName, obj.TargetName);

            if (!String.IsNullOrEmpty(obj.SourceName) && obj.SourceName != CoreManager.Current.CharacterFilter.Name)
            {
                updateMonsterListRow(obj.SourceName);
            }

            if (!String.IsNullOrEmpty(obj.TargetName) && obj.TargetName != CoreManager.Current.CharacterFilter.Name)
            {
                updateMonsterListRow(obj.TargetName);
            }

            updateCombatTrackerGUIInfo();
        }