• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • [Plugin] MapRunner

    Discussion in 'Archives' started by ExVault, Oct 27, 2014.

    Thread Status:
    Not open for further replies.
    1. toNyx

      toNyx Well-Known Member

      Joined:
      Oct 29, 2011
      Messages:
      3,770
      Likes Received:
      35
      Trophy Points:
      48
      You're too worried dude... keep calm and bot on. :)

      Maps are the "safest" option you can have, because it's a common thing to run those.
      Running docks isn't safe as soon as you overlevel the zone by I would say 8+
      Boss farming is good, only if you run 24/7 and are clever enough to make it run fast.

      When is it good to make the transition?

      - Your resists are capped?
      - You are around 5k+ DPS?
      - You're resistant enough to deal with chaos damage & physical?
      - You already have a list of all the maps you should avoid?
      Then you're ready I guess.

      20Q% gems are optional, but you'll see a significant upgrade as soon as you have them (running an arc full 20Q%, and it's ridiculously fast)
      Also, if you can manage to have : Lightning Warp + Reduced Duration + Faster Casting all 3 high level or even 20Q%, and CustomPlayerMover, do it. it's faster than walking.

      That's pretty much all you need to know :)
       
    2. g00fy_goober

      g00fy_goober New Member

      Joined:
      Jun 17, 2012
      Messages:
      281
      Likes Received:
      0
      Trophy Points:
      0
      I really love this plugin, and I really appreciate all the work that you have done to it, so thank you very much for it all.

      In the future I was wondering though if it was possible to implement a couple small things. Maybe with the next big league and act 4 since so much other work will be done as well.

      I really wish there was a death counter with a bit of info on the death. It shows maps cleared and stuff and that's great but if there was a simple way to add a death counter with maybe the name of the map that was ran and whether it was or wasn't in the boss room that would be fantastic.

      Do you think something like that would be possible to add?
       
    3. ExVault

      ExVault Moderator Moderator Buddy Core Dev

      Joined:
      Oct 23, 2013
      Messages:
      748
      Likes Received:
      57
      Trophy Points:
      28
      This should be completely different plugin called DeathLogger.
       
    4. darlack

      darlack Member

      Joined:
      Mar 3, 2015
      Messages:
      252
      Likes Received:
      0
      Trophy Points:
      16
      yes really will be great to have statistic plugin with exp/death/items/exp in gems/ logs to find how to make farm better and better
       
    5. ellunkana

      ellunkana New Member

      Joined:
      Mar 29, 2015
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      1
      So is there some way to bot leave map and make new one if it encounter some of these? because for exsample i use static strike only and i dont have any single target skill and if there is some of these packs in boss room they die also because mine static strike hits them too. i dont really care about losing map. i know how to do this in normal zones but it dont work with map runner. have been trying to figure this out but always when trying to edit some maprunner files it get error. sry mine bad english.
       
    6. g00fy_goober

      g00fy_goober New Member

      Joined:
      Jun 17, 2012
      Messages:
      281
      Likes Received:
      0
      Trophy Points:
      0
      Probably right. But Death logger if someone ever wrote one would probably be much more in depth. I guess having a description for each death would not make much sense for a plugin called maprunner your right.

      How about just a simple death counter though along with maps cleared, maps done, maps gained etc.

      If not its all good man, just throwing out an idea. Keep up the great work!
       
    7. darkbluefirefly

      darkbluefirefly Community Developer

      Joined:
      Nov 8, 2013
      Messages:
      1,927
      Likes Received:
      18
      Trophy Points:
      38
      Hey All,
      Declare an Int for our counter and set it to zero.
      Code:
      _deathCounter = 0;
      On Plugin's Start();
      add an even listener
      Code:
      GameEventManager.PlayerDied += GameEventManagerOnPlayerDied;
      Code:
      public void GameEventManagerOnPlayerDied(object sender, PlayerDiedEventArgs playerDiedEventArgs)
              {
                  _deathCounter++;
                
              }
      On the Plugin's Stop(); make sure we remove the listener when we stop, and set our counter to
      Code:
      GameEventManager.PlayerDied -= GameEventManagerOnPlayerDied;
      _deathCounter = 0;
      And there we have a simple way to keep track of our deaths.

      The API Pushedx provides, gives a vast amount of game info. If in doubt post here or look at my plugins, the code is all there.
       
    8. g00fy_goober

      g00fy_goober New Member

      Joined:
      Jun 17, 2012
      Messages:
      281
      Likes Received:
      0
      Trophy Points:
      0
      Appreciate the info dark, and might be easy for some... To me however everything you wrote looks like Chinese :(
       
    9. ExVault

      ExVault Moderator Moderator Buddy Core Dev

      Joined:
      Oct 23, 2013
      Messages:
      748
      Likes Received:
      57
      Trophy Points:
      28
      ellunkana
      I will add mob ignoring settings in the next version.
      g00fy_goober
      I will add a simple death counter to Statistics in the next version.
       
    10. g00fy_goober

      g00fy_goober New Member

      Joined:
      Jun 17, 2012
      Messages:
      281
      Likes Received:
      0
      Trophy Points:
      0
      awesome man, appreciate all the hard work you guys do!
       
    11. Sapin32

      Sapin32 Member

      Joined:
      Jun 7, 2010
      Messages:
      100
      Likes Received:
      0
      Trophy Points:
      16
      I dont talk alot here but I must say that this plugin is realy nice ! Thanks you very much for sharing this with the community.
       
    12. ExVault

      ExVault Moderator Moderator Buddy Core Dev

      Joined:
      Oct 23, 2013
      Messages:
      748
      Likes Received:
      57
      Trophy Points:
      28
      Thank you for kind words :)
       
      Sapin32 likes this.
    13. SithSquirrel

      SithSquirrel New Member

      Joined:
      Feb 25, 2015
      Messages:
      27
      Likes Received:
      0
      Trophy Points:
      1
      :rolleyes:
       
    14. mrfuture

      mrfuture Member

      Joined:
      Nov 12, 2014
      Messages:
      86
      Likes Received:
      0
      Trophy Points:
      6
      Amazing work and one question - your new map handling is very fast - its fast and furious, why cant we experience same thing while stashing selling and identifying using build in stuff?
       
    15. toNyx

      toNyx Well-Known Member

      Joined:
      Oct 29, 2011
      Messages:
      3,770
      Likes Received:
      35
      Trophy Points:
      48
      Cauz EB has built-in random waiting time to avoid disconnections and help people that love tinfoil to stop bitching about the speed.
       
    16. mrfuture

      mrfuture Member

      Joined:
      Nov 12, 2014
      Messages:
      86
      Likes Received:
      0
      Trophy Points:
      6
      I am free i want a choice :cool:

      I also dont understand the sentence "that love tinfoil" can you explain

      But seriously, can we change that on our own in the code?
       
    17. toNyx

      toNyx Well-Known Member

      Joined:
      Oct 29, 2011
      Messages:
      3,770
      Likes Received:
      35
      Trophy Points:
      48
      [​IMG]

      Tinfoil hat is an expression used to tell about paranoia :)

      You can't do it directly in the bot. That's all I can say illuminati bigbrother etc etc.
       
    18. ExVault

      ExVault Moderator Moderator Buddy Core Dev

      Joined:
      Oct 23, 2013
      Messages:
      748
      Likes Received:
      57
      Trophy Points:
      28
      Because I use more complicated method. I stop waiting for action as soon as its done. If you have good ping - you are super fast, if bad - bot will wait more.
      Pushedx, on the other side, uses plain constant timers.

      I've written (by private paid request) StashPlugin which makes bot 3x faster in town. All id/stashing/selling logic was rewritten according to mentioned method.

      Pushedx knows about that. It was he, who told and described me how it works. So, I think you could expect that in Act4 bot update.
       
    19. mrfuture

      mrfuture Member

      Joined:
      Nov 12, 2014
      Messages:
      86
      Likes Received:
      0
      Trophy Points:
      6

      Thanks a lot for clarifying
       
    20. kenjou

      kenjou New Member

      Joined:
      Oct 15, 2013
      Messages:
      140
      Likes Received:
      0
      Trophy Points:
      0
      It would be great, if the Obelisk mobs could be somehow ignored. The Lightning Obelisk kicks me out everytime.
       
    Thread Status:
    Not open for further replies.

    Share This Page