Enigma.D3.MapHack menu

User Tag List

View Poll Results: Does it work with latest patch for you?

Voters
261. This poll is closed
  • Yes

    121 46.36%
  • Yes, but need to restart MapHack sometimes

    31 11.88%
  • Yes, but need to restart D3 sometimes

    5 1.92%
  • No, says it's attached but nothing is visible in game

    64 24.52%
  • No, stuck on waiting for process

    40 15.33%
Page 32 of 62 FirstFirst ... 282930313233343536 ... LastLast
Results 466 to 480 of 916
  1. #466
    xblade2k7's Avatar Active Member
    Reputation
    48
    Join Date
    Jun 2009
    Posts
    278
    Thanks G/R
    101/32
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    maybe thud is coming soon?

    Enigma.D3.MapHack
  2. #467
    c4pr1c0rn's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yea think will happen vry soon

  3. #468
    doctorjunior's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    deleted. sorry
    Last edited by doctorjunior; 03-12-2018 at 12:40 PM. Reason: solved

  4. #469
    d2k2's Avatar Active Member
    Reputation
    32
    Join Date
    Jul 2015
    Posts
    133
    Thanks G/R
    58/24
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    would be nice to filter out elite minions and illusionist on the minimap. its kinda hard to see the "real" elite with all the yellow dots.

    in case you need, here are some code snippets

    Code:
            public static bool isEliteIllusionist(this Enigma.D3.MemoryModel.Core.ACD monster)
            {
                try
                {
                    if (!monster.isElite()) return false; //avoid attribute read with precheck for better performance
    
                    return monster.GetAttributeValue(AttributeId.SummonedByACDID) != -1; //if summoned illu this is != -1
                }
                catch (Exception e)
                {
                    return false;
                }
            }
    	
    	
    	public static bool isElite(this Enigma.D3.MemoryModel.Core.ACD monster)
            {
                try
                {
                    switch (monster.MonsterQuality)
                    {
                        case Enigma.D3.Enums.MonsterQuality.Unique:
                        case Enigma.D3.Enums.MonsterQuality.Rare:
                        case Enigma.D3.Enums.MonsterQuality.Champion:
                        case Enigma.D3.Enums.MonsterQuality.Boss:
                            //case Enigma.D3.Enums.MonsterQuality.Minion: //minions should not count as elite
                            return true;
    
                        default:
                            if (IsTreasureGoblin(monster))
                                return true;
                            return false;
                    }
                }
                catch (Exception e)
                {
                    return false;
                }
            }
    		
    		
            public static bool IsTreasureGoblin(this Enigma.D3.MemoryModel.Core.ACD Acd)
            {
                switch (Acd.ActorSNO.Value)
                {
                    case (int)SnoActor.treasureGoblin_A: //5984
                    case (int)SnoActor.treasureGoblin_B: //5985
                    case (int)SnoActor.treasureGoblin_C: //5987
                    case 5988:                           // (int)SnoActor.treasureGoblin_D: //5988
                    case (int)SnoActor.treasureGoblin_E: //408655
                    case (int)SnoActor.treasureGoblin_F: //408989 // Blood Thief
                    case (int)SnoActor.treasureGoblin_G: //391593
                    case (int)SnoActor.treasureGoblin_H: //413289
                    case 410576:
                    case 410586:
                    case (int)SnoActor.treasureGoblin_A_Slave:    //326803
                    case (int)SnoActor.treasureGoblin_D_Splitter: //408354:
                    case (int)SnoActor.treasureGoblin_D_Splitter_02: //410572:
                    case (int)SnoActor.treasureGoblin_D_Splitter_03: //410574:
                    case (int)SnoActor.treasureGoblin_J: //429161:
                    case (int)SnoActor.treasureGoblin_I: //428663:
                    case (int)SnoActor.treasureGoblin_J_FX_WhatsNew: // 434631:
                    case (int)SnoActor.treasureGoblin_J_WhatsNew:  //434630:
                    case (int)SnoActor.treasureGoblin_K:
                        return true;
    
                    default:
                        return false;
                }
            }

  5. Thanks larcerkev, JarJarD3 (2 members gave Thanks to d2k2 for this useful post)
  6. #470
    olojins's Avatar Member
    Reputation
    1
    Join Date
    Mar 2018
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi guys tried everything but Enigma won't open.

    I get the warning popup but then no Enigma in task manager (it disappears). I run it as admin and have d3 64bit open in windowed-fullscreen.

    I have the most current version of .Net framework (4.7.1 I believe).

    Am I doing something wrong? Need Enigma!

    P.S. I am not even getting logs.
    Last edited by olojins; 03-12-2018 at 05:45 PM.

  7. #471
    d2k2's Avatar Active Member
    Reputation
    32
    Join Date
    Jul 2015
    Posts
    133
    Thanks G/R
    58/24
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i am not sure why it happen. but the tornados of the rift boss saxtris are shown as monsters on the minimap, which is confusing.

    mabye the IsValidMonster function should also check for ActorType.Monster

    Code:
            public static bool IsValidMonster(this Enigma.D3.MemoryModel.Core.ACD acd)
            {
                return acd.Hitpoints > 0.00001 &&
                 (acd.ObjectFlags & 1) == 0 &&
                 acd.ActorType == Enigma.D3.Enums.ActorType.Monster &&
                 acd.TeamID == 10;
            }

  8. Thanks JarJarD3 (1 members gave Thanks to d2k2 for this useful post)
  9. #472
    colokado's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Alex how i can AD that lines? or where to see the real elite

  10. #473
    macaman2's Avatar Member
    Reputation
    1
    Join Date
    Feb 2018
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please mark your way to the mini-map

  11. #474
    ADRNZOR's Avatar Member
    Reputation
    1
    Join Date
    Nov 2017
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    enigma32 make pylon points on the map

  12. #475
    xblade2k7's Avatar Active Member
    Reputation
    48
    Join Date
    Jun 2009
    Posts
    278
    Thanks G/R
    101/32
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Maybe plugins support would be the easiest things for you and programmers.

  13. #476
    kamiyalee's Avatar Member
    Reputation
    1
    Join Date
    Mar 2018
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cooooooool~gd job:p

  14. #477
    LavaLampe1's Avatar Member
    Reputation
    1
    Join Date
    Feb 2018
    Posts
    6
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by olojins View Post
    Hi guys tried everything but Enigma won't open.

    I get the warning popup but then no Enigma in task manager (it disappears). I run it as admin and have d3 64bit open in windowed-fullscreen.

    I have the most current version of .Net framework (4.7.1 I believe).

    Am I doing something wrong? Need Enigma!

    P.S. I am not even getting logs.

    I`ve got the same Problem. Anyone who can help me?

  15. #478
    ak47.mobil's Avatar Member
    Reputation
    1
    Join Date
    Jan 2018
    Posts
    18
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, make sure you downloaded and started the newest version.. file with r6 ending

  16. #479
    LavaLampe1's Avatar Member
    Reputation
    1
    Join Date
    Feb 2018
    Posts
    6
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I use the r6 but nothing happens.

    Gesendet von meinem ONEPLUS A3003 mit Tapatalk

  17. #480
    itsmylife's Avatar Active Member
    Reputation
    23
    Join Date
    Jun 2012
    Posts
    232
    Thanks G/R
    32/22
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by LavaLampe1 View Post
    I use the r6 but nothing happens.

    Gesendet von meinem ONEPLUS A3003 mit Tapatalk

    Then whitelist .exe and folder in your AV.

Page 32 of 62 FirstFirst ... 282930313233343536 ... LastLast

Similar Threads

  1. [Program] AGB Maphack
    By silent_asailant in forum Diablo 2
    Replies: 1
    Last Post: 02-27-2018, 09:37 PM
  2. [Hack] mMap v0.2.1 MAPHACK.
    By Innit in forum Diablo 2
    Replies: 5
    Last Post: 02-27-2018, 09:37 PM
  3. Replies: 3
    Last Post: 02-27-2018, 09:36 PM
  4. [PROGRAM] lolwut maphack 0.3b
    By ka11 in forum Diablo 2
    Replies: 1
    Last Post: 08-08-2008, 12:26 PM
  5. request Blue suede boots -> enigma boots
    By Geico in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 12-27-2007, 05:40 AM
All times are GMT -5. The time now is 12:51 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search