• Visit Rebornbuddy
  • [Plugin] Act 2 Bandits and Misc Quests

    Discussion in 'Archives' started by darkbluefirefly, Oct 6, 2014.

    1. darkbluefirefly

      darkbluefirefly Community Developer

      Joined:
      Nov 8, 2013
      Messages:
      1,927
      Likes Received:
      18
      Trophy Points:
      38
      Hey FerroKarr,
      That's a good suggestion for the logout, I'll add that in.
      As for the level limit, I added that in there because I'm pretty confident that you will get flagged for being too over-leveled and grinding in an area.
      The level limit is there in case something messes up and you are grinding that same area over and over, it will somewhat protect you from over-grinding the level.
      I've mostly fixed that one issue with the Vaal ruins-Riverways transition due to overlevel, it will stop the bot in Vaal ruins. So next version should have that fix.
      Thanks again.
       
    2. Shrek_III

      Shrek_III Member

      Joined:
      Oct 17, 2013
      Messages:
      48
      Likes Received:
      1
      Trophy Points:
      8
      First of all thanks for this great plugin - making life much easier :)

      I also had the problem FerroKar describes, if it will be handled like he suggests it would be great.
      There is one other thing I want to point out:

      I am playing a Scion, other than a Marauder I can't see any current Grind zone or Level or Exp.
      This is not a big issue, but it was nice to have :)

      Besides these two minor issues everything works perfect - thanks!
       
    3. darkbluefirefly

      darkbluefirefly Community Developer

      Joined:
      Nov 8, 2013
      Messages:
      1,927
      Likes Received:
      18
      Trophy Points:
      38
      Hey Shrek_III,
      I found the issue that the bot was having, thanks to your, FerroKarr, and thetestdummy have said.
      It was the problem with;

      Code:
      public static void CheckIfOverLevel()
              {
                  if (LokiPoe.Me.IsInTown || !BotManager.IsRunning)
                      return;
                 [B] while (Loki.Game.LokiPoe.StateManager.IsLoadingStateActive)[/B]
                  {
                      CheckIfOverLevel();
                  }
      This was test code that needed to be removed, which I forgot to.
      The new update I added
      Code:
      if (LokiPoe.Me.IsInTown || !BotManager.IsRunning ||[B] !LokiPoe.IsInGame || !_overLevelChecked[/B])
                      return;
      IsInGame, checks for states the game currently is in, including loading. The CheckIfOverLevel() gets called in Tick now, and will run only once, hence the bool !_overLevelChecked is there, once it runs once, it won't run until next area change. In the future, it will be called upon level up, since there is no internal levelup API, I did a quick hack to compare levels and determine level up. Code is still buggy.

      Look forward to the update soon.
      Thanks!
       
    4. g00fy_goober

      g00fy_goober New Member

      Joined:
      Jun 17, 2012
      Messages:
      281
      Likes Received:
      0
      Trophy Points:
      0
      Hello :)

      I have read through most of this plugin and it sounds great and it sounds like you have spent a lot of time "perfecting" it.

      I am very new to POE and hopefully by this weekend I will purchase an exilebuddy key.

      However I have not seen anything in your topic regarding skill gems/builds.

      Do I have to manually start with a weapon/skill gem I want to use and manually switch as I get higher leveled and such?

      Not really sure how that part works, thanks!
       
    5. Shrek_III

      Shrek_III Member

      Joined:
      Oct 17, 2013
      Messages:
      48
      Likes Received:
      1
      Trophy Points:
      8
      Exactly, you have to manually set the skill points, but knowing how much this plugin is doing for you, you will love to set them once you got a bunch of points :)
       
    6. g00fy_goober

      g00fy_goober New Member

      Joined:
      Jun 17, 2012
      Messages:
      281
      Likes Received:
      0
      Trophy Points:
      0
      O I do not mind about the passive tree at all, I would want to do that myself anyway lol

      I meant more like the gems you would use and linking them in gear and such.

      I mean for example say I was doing a TS/Puncture build.

      Would I have to buy all the gems and set them in gear myself? I mean the profile wouldn't do that for me? Or would the profile just grab a random skill gem and use that. Also once a gem is leveled does the profile click the "level up" itself or is that done manually as well?

      Sorry for all the questions just trying to get a handle on how it works ^^
       
    7. Shrek_III

      Shrek_III Member

      Joined:
      Oct 17, 2013
      Messages:
      48
      Likes Received:
      1
      Trophy Points:
      8
      Skill gem collection depends on your item pickit configuration. But this plugin won't put the skill gems into your slots and starts using them, but it will collect/loot and stash them for you.
       
    8. g00fy_goober

      g00fy_goober New Member

      Joined:
      Jun 17, 2012
      Messages:
      281
      Likes Received:
      0
      Trophy Points:
      0
      Thanks for the info man, as soon as I figure out a build I would like to go, and get an exilebuddy ill start fiddling with it to try and get it set up properly and run it and see how it goes for myself :D
       
    9. darkbluefirefly

      darkbluefirefly Community Developer

      Joined:
      Nov 8, 2013
      Messages:
      1,927
      Likes Received:
      18
      Trophy Points:
      38
      Hey Shrek_III, and g00fy_goober,
      Equiping and skill gems equiping is on the list.
      Doing auto flask upgrading is being worked on atm.
      New build I have is optimized even more, added a feature someone, I forgot who asked for.
      It will go straight to objectives instead of exploring/etc. Of course it depends on the objective, but I have the bandits running with this and everything is smooth.
      I removed 6 Tasks and added 2 to replace them for act 2, so It should load a little bit faster I think.
      Side quests up to act 2 are done mostly, except for some optimization and randomization. I have to figure out how to work with checked gridbox, but yea.
      I've been quiet because I've been busy =).
      Pushedx has taught me a lot of things I want to try, and gave me idea for equiping and etc, so I'm pretty sure I'm on the right track.

      Oh and Thanks for the donations the 4 anonymous + spliffermaster, much <3
       
    10. g00fy_goober

      g00fy_goober New Member

      Joined:
      Jun 17, 2012
      Messages:
      281
      Likes Received:
      0
      Trophy Points:
      0
      Well you have done a great job so far from everything ive read. Constant updates and adding more and fixing issues that arise. I look forward to checking it out for sure.

      The only slight worry I have is if you take out clearing areas too much and go straight to objectives you might soon realize that you are incredibly undergeared/leveled.

      Just something to keep an eye on maybe :)


      Besides for that, once I purchase and download bot and figure out what bot build I want to go I will give it a whirl and see how it goes. Then I will start being generous with my "purse" :)

      Keep up the great work man
       
    11. g00fy_goober

      g00fy_goober New Member

      Joined:
      Jun 17, 2012
      Messages:
      281
      Likes Received:
      0
      Trophy Points:
      0
      So what plugins should be ran with this exactly? I see a lot of people talking about auto flask, chicken, and scheduler. However i will be running a level 1 char so im assuming auto flask won't even work. Any suggestions?
       
    12. FerroKarr

      FerroKarr New Member

      Joined:
      Dec 24, 2013
      Messages:
      29
      Likes Received:
      0
      Trophy Points:
      1
      Why flasking not work? In cause of playing hardcore and some issues i start every second day a new HC Char with lev1 at strand....and flasking is running well.

      What i asked in the other thread was about playing manually and use EB as "Informationcenter", "Flasking Tool" and Chicken.... that wont workin all parts but this
      Questbot is working fine :)

      I've got a feature request...if possible :)
      I want to set things (Quests, Bandits) directly for each difficulty.

      EG...

      - Bandits: Norm:Oak ; Cruel:Kraytin; Merc: All
      - set the "last" quest for the bot....like: Last: Cruel:Vaal

      Because when i start a new HC-char, i let him go :) ...run over norm to cruel... in one way :)
      I know with Norm:strand equip i can not go any further than maybe Cruel:Vaal.
      So if i can set the "act" only (and i do 1,2,3 cause i want to run until cruel:vaal) my small char may die in Cruel:Sarn instantly :) :(
      or try to run mercy ...and die there for sure.
      So i always have to care the progress of the bot.
      If the bot may stop at the last Questposition (in town please :) ) i can equip new... and start over.
       
      Last edited: Jan 29, 2015
    13. toNyx

      toNyx Well-Known Member

      Joined:
      Oct 29, 2011
      Messages:
      3,770
      Likes Received:
      35
      Trophy Points:
      48
      Flasking? what do you mean? AutoFlask? it doesn't drink pots?
       
    14. FerroKarr

      FerroKarr New Member

      Joined:
      Dec 24, 2013
      Messages:
      29
      Likes Received:
      0
      Trophy Points:
      1
      In cause he was talking about start lev1 char and chicken i guess he talk about mana and life pots only.
       
    15. toNyx

      toNyx Well-Known Member

      Joined:
      Oct 29, 2011
      Messages:
      3,770
      Likes Received:
      35
      Trophy Points:
      48
      Well, what is your native language? ;) It's hardly understandable.
       
    16. FerroKarr

      FerroKarr New Member

      Joined:
      Dec 24, 2013
      Messages:
      29
      Likes Received:
      0
      Trophy Points:
      1
      :)
      Sorry i am an 48 year old german guy....and english is really not my native language
      :)


      g00fy_goober: I see a lot of people talking about auto flask, chicken, and scheduler. However i will be running a level 1 char so im assuming auto flask won't even work.

      and i ask: Why flasking not work? Because i think it work...
       
      Last edited: Jan 29, 2015
    17. g00fy_goober

      g00fy_goober New Member

      Joined:
      Jun 17, 2012
      Messages:
      281
      Likes Received:
      0
      Trophy Points:
      0
      Think he was referring to my post when I said I assumed auto flask wouldn't work.

      From the very little ive seen about flaskhelper I thought at first look that all the special remove bleeding remove burning etc was always taken into account. Healing/Mana should still work fine.


      Im just curious what plugins should be ran with this profile :)
       
    18. toNyx

      toNyx Well-Known Member

      Joined:
      Oct 29, 2011
      Messages:
      3,770
      Likes Received:
      35
      Trophy Points:
      48
      FlaskHelper actually is an advanced version of AutoFlask ;) new version is out.

      Only check options if you need them, saves a lot of cpu usage. This is the most advanced version that can be done (for now...)
       
      Last edited: Jan 29, 2015
    19. aionskyg

      aionskyg Banned

      Joined:
      Sep 3, 2012
      Messages:
      132
      Likes Received:
      0
      Trophy Points:
      16
      no work ,help me

      [HandleBlockingChestsTask] Now resetting task state.
      [IdTask] Now resetting task state.
      [SellTask] Now resetting task state.
      [WithdrawTask] Now resetting task state.
      [ReturnToGrindZoneTask] Now resetting task state.
      [TagWaypointTask] Now resetting task state.
      [UseLooseCandleTask] Now resetting task state.
      [UnblockCorruptedAreaTransitionTask] Now resetting task state.
      [TravelToGrindZoneTask] Now resetting task state.
      [TravelThroughBossAreasTask] Now resetting task state.
      [TravelThroughBossAreasTask] Now resetting task state.
      [Start] The plugin AutoFlask is enabled.
      [Start] The plugin QuestPlugin is enabled.
      [Start] PlayerMover.Instance: Loki.Bot.v3.DefaultPlayerMover.
      [BasicGrindBot] OnStop
      [AutoFlask] Stop
      [QuestPlugin] Stop
      [RemoveAllTasks] Starting
      [RemoveAllTasks] Finished
      [ExampleRoutine] Stop
      [QuestPlugin] CLEARING GUI
       
    20. darkbluefirefly

      darkbluefirefly Community Developer

      Joined:
      Nov 8, 2013
      Messages:
      1,927
      Likes Received:
      18
      Trophy Points:
      38
      Hey aionskyg.
      I can't help you unless you;
      1. Give me more information.
      2. Post full log.

      Thanks.

      Hey g00fy_goober,
      You should read up on what each plugin does, but I suggest toNyx's Flask Helper over Pushedx's example one.
      I run a lot of customized plugins so I really can't exaborate.

      And Note for all, It's better if you play, get to know the game better, then start botting.
      If you jump into the game knowing little knowledge, it's only going to;
      1: Hinder your potential
      2: Waste your time with questions that have been asked
      3: Get you banned one way or another, and you end up blaming something that has nothing to do with ExileBuddy itself.

      That being said and done, I welcome all questions and will try to answer them all.
      Trouble shooting, please, please, do not Post without a Full Log, please read up here
      https://www.thebuddyforum.com/exilebuddy-forum/exilebuddy-support/179490-support.html
      And Also Explain, what is not working or what you are having issues with.
      I'll post a in the first post about this.
      Thanks for using my plugin, and look forward for more features.
       
      Last edited: Jan 29, 2015

    Share This Page