• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • [Act 2] Maghda Boss Farm

    Discussion in 'Archives' started by Inrego, Jun 12, 2012.

    1. pommie

      pommie New Member

      Joined:
      Jan 11, 2012
      Messages:
      12
      Likes Received:
      0
      Trophy Points:
      0
      i have run into a problem, when it zones into mahgda's lair, my monk doesnt move up and trigger her entering, just stands by the door. ty for help
       
    2. mmv66

      mmv66 New Member

      Joined:
      Dec 8, 2011
      Messages:
      66
      Likes Received:
      0
      Trophy Points:
      0
      some1 tested it for item farming on inferno?
       
    3. piim

      piim New Member

      Joined:
      Feb 8, 2010
      Messages:
      15
      Likes Received:
      1
      Trophy Points:
      0
      This is awesome, thanks! Getting about 700k xp/h with my ~40 barb.
       
    4. Holzroller

      Holzroller New Member

      Joined:
      Jun 14, 2012
      Messages:
      90
      Likes Received:
      0
      Trophy Points:
      0
      Doesnt work for .149 any more
       
    5. 3r4z3r

      3r4z3r New Member

      Joined:
      Jun 12, 2012
      Messages:
      30
      Likes Received:
      0
      Trophy Points:
      0
    6. sol

      sol New Member

      Joined:
      Jun 11, 2012
      Messages:
      14
      Likes Received:
      0
      Trophy Points:
      0
    7. 3r4z3r

      3r4z3r New Member

      Joined:
      Jun 12, 2012
      Messages:
      30
      Likes Received:
      0
      Trophy Points:
      0
      Just try it out...

      I leveled my barb 10-40 on normal, because i wasn't at home to go to inferno.

      With my first bot i got ~600k per hour on nightmare and ~3mio on hell. But this time i got only ~300k on nightmare. Maybe there is something wrong or it is better to kill the mobs on the way.

      At the moment i use a Vachem profile and it seems to be better. ~600k per hour on nightmare.

      Just try it out and give us some feedback. :)


      Edit: Ok, i think the xp counter in demonbuddy is a bit bugged. The xp/hour plugin shows 550k xp/hour and db shows 120k xp/hour.
       
      Last edited: Jun 27, 2012
    8. okostibi

      okostibi New Member

      Joined:
      Jun 19, 2012
      Messages:
      14
      Likes Received:
      0
      Trophy Points:
      0
      I belive that it restarts on level up
       
    9. lphomiej

      lphomiej Member

      Joined:
      Mar 17, 2011
      Messages:
      199
      Likes Received:
      1
      Trophy Points:
      18
      This was amazing. Mine was getting stuck just before Maghda, but this fixes that... also, it wasn't porting out every time (and resetting), but your changes fixed both those problems. The run-through is awesome. I don't know how much extra ex i'm getting yet, though. So far it looks about the same (compared to killing all the npcs it was doing before).

      Edit: It seems my XP went from 150k/hr to 210k/hr (@lvl 24) switching to this profile with the plugin. Not too shabby.
       
      Last edited: Jul 13, 2012
    10. siferxxx

      siferxxx Banned

      Joined:
      Apr 22, 2012
      Messages:
      128
      Likes Received:
      0
      Trophy Points:
      0
      How can i mkae this go in inferno?
       
    11. Chemdawg

      Chemdawg New Member

      Joined:
      Feb 18, 2010
      Messages:
      258
      Likes Received:
      0
      Trophy Points:
      0
      So no fix for getting stuck at entrance to boss ?
       
    12. StevenJobs

      StevenJobs New Member

      Joined:
      Jun 22, 2012
      Messages:
      28
      Likes Received:
      0
      Trophy Points:
      0
      This is working really well for me, but I was wondering if there was a way that I could kill the monsters. So basically I want to use the plugin but be able to kill all monsters on the way to the entrance. I want to increase the time the profile takes, the longer profiles seem safer, plus still getting some exp from killing the monsters.
       
    13. exfelon

      exfelon Active Member

      Joined:
      Jan 15, 2010
      Messages:
      1,372
      Likes Received:
      8
      Trophy Points:
      38
      I did this, opened up the Maghda.cs in the plugin folder, and changed this part:

      Code:
                  
      
      if (ZetaDia.Actors.Me.HitpointsCurrentPct < 0.75  && ProfileManager.CurrentProfile.KillMonsters == false)
                  {
                      Log("Turning on KillMonsters -Health to low");
                      ProfileManager.CurrentProfile.KillMonsters = true;
                      return;
                  }
                  if (ZetaDia.Actors.Me.HitpointsCurrentPct > 0.75  && ProfileManager.CurrentProfile.KillMonsters == true &&  ZetaDia.CurrentWorldDynamicId != 1999634434)
                  {
                      Log("Disabeling KillMonsters & PickupLoot");
                      ProfileManager.CurrentProfile.KillMonsters = false;
                      ProfileManager.CurrentProfile.PickupLoot = false;
                      return;
                  }
                  
                  if (ZetaDia.CurrentWorldDynamicId != 1999634434 && LairEnterTime != DateTime.MinValue) {
                      Log("Left the lair. Kill radius set to 30.");
                      LairEnterTime = DateTime.MinValue;
                      CharacterSettings.Instance.KillRadius = 30;
                  }
      to this:


      Code:
                 
      
       if (ZetaDia.Actors.Me.HitpointsCurrentPct <  0.75 && ProfileManager.CurrentProfile.KillMonsters == true)
                  {
                      Log("Turning on KillMonsters -Health to low");
                      ProfileManager.CurrentProfile.KillMonsters = true;
                      return;
                  }
                  if (ZetaDia.Actors.Me.HitpointsCurrentPct > 0.75  && ProfileManager.CurrentProfile.KillMonsters == true &&  ZetaDia.CurrentWorldDynamicId != 1999634434)
                  {
                      Log("Disabeling KillMonsters & PickupLoot");
                      ProfileManager.CurrentProfile.KillMonsters = true;
                      ProfileManager.CurrentProfile.PickupLoot = true;
                      return;
                  }
                  
                  if (ZetaDia.CurrentWorldDynamicId != 1999634434 && LairEnterTime != DateTime.MinValue) {
                      Log("Left the lair. Kill radius set to 30.");
                      LairEnterTime = DateTime.MinValue;
                      CharacterSettings.Instance.KillRadius = 30;
                  }
      TBH though, even with the changes mentioned on the previous page, mine still forgets to skip the cutscene and port out a lot.
       
      Last edited: Jul 28, 2012
    14. Dbuddy

      Dbuddy Member

      Joined:
      Jun 18, 2012
      Messages:
      963
      Likes Received:
      0
      Trophy Points:
      16
      any1 tried this profile on inferno?
       
    15. xSeth

      xSeth New Member

      Joined:
      Aug 5, 2012
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      hmm after killing maghda the bot just stops, doesnot loot, doesnot come back to town, nothing. Anyone experiencing anything like that? Runing a monk on Nightmare
       
    16. weapon007

      weapon007 New Member

      Joined:
      Jul 22, 2012
      Messages:
      29
      Likes Received:
      0
      Trophy Points:
      0
      Can anyone edit this profile so it will just complete the first area before going up the stair? There are usually 1-2 champ/elite(as stated by OP). I think this would be a better farming area than warrior rest. It is quick and easy and if you have high MF you will get 2-5 rares per run.

      I'm not good at profile editing so if anyone knows how to do it would be great.

      Thanks
       
      Last edited: Aug 7, 2012
    17. baldbrah

      baldbrah New Member

      Joined:
      Jul 3, 2012
      Messages:
      129
      Likes Received:
      0
      Trophy Points:
      0

      +1 to this. The area after the bridge usually have two packs. Quick easy farming for loot. Would something like this easy to create? Sort of like act two's warriors rest. Would donate to someone who can create this profile.
       
    18. Dantronix

      Dantronix Banned

      Joined:
      Aug 4, 2012
      Messages:
      152
      Likes Received:
      1
      Trophy Points:
      18
      This works great except the bot will not move to maghda. What am i missing?
       
    19. r0sc0

      r0sc0 New Member

      Joined:
      Jan 15, 2010
      Messages:
      410
      Likes Received:
      2
      Trophy Points:
      0
      I had exact same issue wont move to the boss :S
       
    20. Doomedx

      Doomedx New Member

      Joined:
      Jul 13, 2012
      Messages:
      80
      Likes Received:
      0
      Trophy Points:
      0
      exactly this, also if you just move your char manually nearly to the boss, he will fight, but after fight bot just TP and dont pick up any loot.

      Update will be really nice.
       

    Share This Page