• Visit Rebornbuddy
  • [Plugin] VollFarmer

    Discussion in 'Archives' started by clandestine, Jun 21, 2016.

    1. clandestine

      clandestine Member

      Joined:
      May 5, 2012
      Messages:
      350
      Likes Received:
      12
      Trophy Points:
      18
      About
      This is my first public plugin, I'm not really a C# coder so this is stitched together from various sources. Mainly from GrindZoneChanger and ExVaults QuestBot. Anyone feel free to improve upon this mess.

      Upon entering The Dried Lake, combatrange is set to 0 and it's left up to OldGrindBot to explore the area. Once Voll is found, combatrange is increased to 50 and Voll is killed, looted then the bot returns to town to start a new run.

      A run takes anywhere from 30s to 3min, depending on how quick Voll is found.

      Your character should be tanky and strong enough to survive Dried Lake without dying and killing Voll in a short amount of time. The bot will not engage in combat unless Voll is nearby, you will get hit, you will take damage, you might die - make sure your character can handle it.
      This plugin is released as-is. It works for me, it might not work for you. If it doesn't work for you then the source is there for you to make it better.

      This Plugin was only tested with the OldRoutine combat routine. It will probably not work with any of the other community routines out there.

      Setting things up

      Required Plugins:
      - EXtensions (comes bundled with Exilebuddy now)
      - CommunityLib

      Recommended Plugins:
      - Alcor75PlayerMover
      -- Make sure to check Ignore Mobs in Alcor75PlayerMover settings. Else the bot will dance around Voll like Michael Jackson
      ignoremobs.png
      - AdvancedItemFilter

      Copy VollFarmer-0.0.0.X.zip to 3rdParty

      Create an empty 3rdparty-required.txt in the following plugin:
      3rdParty\OldRoutine


      Start ExileBuddy
      Settings > Plugins > VollFarmer > Enable
      Settings > Bots > OldGrindBot > GlobalChestsToIgnore > Check All
      Settings > Bots > OldGrindBot > TakeCorruptedAreas > Uncheck
      Settings > Plugins > Alcor75PlayerMover > Ignore Mobs > Check


      Known Issues:
      It's a bit spammy, so logs will grow.

      There's a log4net error when making portal to town, it is safe to ignore (and I have no clue why this error comes up, if you know, halp pls):

      Code:
      <log4net.Error>Exception during StringFormat: Index (zero based) must be greater than or equal to zero and less than the size of the argument list. <format>[TakeClosestPortal] The portal to interact with is xxx at {xxx, yyy}.</format><args>{}</args></log4net.Error>
      Support
      It doesn't work for you? Attach a Log, maybe I can help maybe not. There are many more smarter people here then me, maybe someone else can help you out. But as always, ATTACH A FUCKING LOG IF IT DOESN'T WORK FOR YOU.

      I do not recommend running this for hours on end. Be smart, don't get banned.

      Changelog

      You need to register and have one post to see spoilers!
       

      Attached Files:

      Last edited: Jul 21, 2016
    2. Unknown Buddy

      Unknown Buddy Member

      Joined:
      May 20, 2015
      Messages:
      603
      Likes Received:
      17
      Trophy Points:
      18
      Nice work. I know people have wanted something like this for awhile and it makes sense to use this now during Prophecy with the whole "kill Voll 1200 times" achieve.

      People will likely get banned by running this 24/7 but thats just common sense and you warned about it.
       
    3. yfbd

      yfbd New Member

      Joined:
      Jun 16, 2016
      Messages:
      132
      Likes Received:
      0
      Trophy Points:
      0
      Most likely the index has changed. I.E The portal was taken, you didn't set a flag for it to be already taken or missing something. Send me the project and i'll have a peek at it tonight.
       
    4. clandestine

      clandestine Member

      Joined:
      May 5, 2012
      Messages:
      350
      Likes Received:
      12
      Trophy Points:
      18
      Code:
      		if (_itemStopwatch.ElapsedMilliseconds > 5000) {
      			GlobalLog.Warn($"[VollFarmer] Seems like voll is dead, wait 5s then back to town and restart run");
      			await Coroutines.FinishCurrentAction();
      			await CommunityLib.LibCoroutines.CreateAndTakePortalToTown();
      			await NewGrindZone();
      			_itemStopwatch.Reset();
      			_FoundVoll = 0;
      			return true;
      		}
      
      is the snippet in question
       
    5. PainfulDeath

      PainfulDeath Member

      Joined:
      Jul 12, 2012
      Messages:
      489
      Likes Received:
      1
      Trophy Points:
      18
      While I am not sure whether I want to use it or not, thanks for sharing your work anyway!
       
    6. lbb199

      lbb199 New Member

      Joined:
      Aug 30, 2015
      Messages:
      63
      Likes Received:
      0
      Trophy Points:
      0
      Can't wait for the update for latest patch to be released so I can try this.
       
    7. koomzy

      koomzy New Member

      Joined:
      Sep 7, 2014
      Messages:
      6
      Likes Received:
      0
      Trophy Points:
      0
      where can i find the EXtensions plugin? ty
       
    8. Unknown Buddy

      Unknown Buddy Member

      Joined:
      May 20, 2015
      Messages:
      603
      Likes Received:
      17
      Trophy Points:
      18
    9. koomzy

      koomzy New Member

      Joined:
      Sep 7, 2014
      Messages:
      6
      Likes Received:
      0
      Trophy Points:
      0
    10. lbb199

      lbb199 New Member

      Joined:
      Aug 30, 2015
      Messages:
      63
      Likes Received:
      0
      Trophy Points:
      0
      working great thanks for sharing
       
    11. lbb199

      lbb199 New Member

      Joined:
      Aug 30, 2015
      Messages:
      63
      Likes Received:
      0
      Trophy Points:
      0
      View attachment Exilebuddy 2184 2016-06-22 22.45.zip Keep coming back to it stopped. I also notice while watching it that there seems to be a timer after voll killed that forces it to tp to town before all loot is picked up after so much time rather than giving it time to pick everything up and then tp?
       
    12. clandestine

      clandestine Member

      Joined:
      May 5, 2012
      Messages:
      350
      Likes Received:
      12
      Trophy Points:
      18
      It looks like StuckDetection kicked in and logged you out. Do you have AutoLogin enabled and set up?

      The bot waits 5s to loot once Voll is killed, for me that's enough time to loot everything 99% of the time. You can increase the time the bot waits for loot in VollFarmer.cs line 139:
      Code:
      		if (_itemStopwatch.ElapsedMilliseconds > [COLOR="#FF0000"]5000[/COLOR]) {
      
      Set this to a higher value (5000 = 5s, 10000 = 10s, etc)
       
    13. lbb199

      lbb199 New Member

      Joined:
      Aug 30, 2015
      Messages:
      63
      Likes Received:
      0
      Trophy Points:
      0
      yea auto login is enabled and setup, and stuck detector set to go to login screen. it works correctly without the plugin if it happens to get stuck with Old GB. Not sure why its acting diffrently I just double checked all my settings for both.
       
    14. lbb199

      lbb199 New Member

      Joined:
      Aug 30, 2015
      Messages:
      63
      Likes Received:
      0
      Trophy Points:
      0
      so for an update, i disabled voll plugin and just ran lakes till i got a stuck, got same error, it logged me out and then logged back in. For whatever reason while using this plugin it gets the stuck to login screen, then never logs back in. Not sure why.
       
    15. clandestine

      clandestine Member

      Joined:
      May 5, 2012
      Messages:
      350
      Likes Received:
      12
      Trophy Points:
      18
      I got an idea for a fix, working on it.

      Edit: Yep, that should have fixed it. Couple logouts/logins later, still farming as it should. Grab v0.0.0.2 for the update in the first post.
       
      Last edited: Jun 25, 2016
    16. StrongBG

      StrongBG Banned

      Joined:
      Mar 13, 2012
      Messages:
      428
      Likes Received:
      0
      Trophy Points:
      16
      Full of bugs i must say.Went right beside voll's zone and kept exploaring for 2-3 mins more and when it decided to make a new run the bot went to starting zone and reset.1 time killed Voll and picked up what loot he could than reentered again to pick the rest of the loot but did not and left it on ground.The plugin itself is ok but it needs more love from you.I wouldnt recommend using it as it is right now.
       
    17. lbb199

      lbb199 New Member

      Joined:
      Aug 30, 2015
      Messages:
      63
      Likes Received:
      0
      Trophy Points:
      0
      Testing it out now will let you know if I run into any snags.
       
    18. rienshan

      rienshan Member

      Joined:
      Oct 26, 2014
      Messages:
      35
      Likes Received:
      0
      Trophy Points:
      6
      Code:
      Cannot load [VollFarmer] because an exception occurred [F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\Helpers.cs(5,7) : error CS0246: The type or namespace name 'EXtensions' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\Helpers.cs(6,7) : error CS0246: The type or namespace name 'EXtensions' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\Helpers.cs(7,7) : error CS0246: The type or namespace name 'EXtensions' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\VollFarmer.cs(10,7) : error CS0246: The type or namespace name 'EXtensions' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\VollFarmer.cs(11,7) : error CS0246: The type or namespace name 'EXtensions' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\VollFarmer.cs(12,7) : error CS0246: The type or namespace name 'EXtensions' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\VollFarmer.cs(14,7) : error CS0246: The type or namespace name 'OldRoutine' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\Helpers.cs(68,56) : error CS0246: The type or namespace name 'WalkablePosition' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\Helpers.cs(80,46) : error CS0246: The type or namespace name 'WalkablePosition' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\Helpers.cs(138,35) : error CS0246: The type or namespace name 'WalkablePosition' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\VollFarmer.cs(23,17) : error CS0246: The type or namespace name 'WalkablePosition' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\VollFarmer.cs(25,17) : error CS0246: The type or namespace name 'WalkablePosition' could not be found (are you missing a using directive or an assembly reference?)
      ].
      System.Exception: F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\Helpers.cs(5,7) : error CS0246: The type or namespace name 'EXtensions' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\Helpers.cs(6,7) : error CS0246: The type or namespace name 'EXtensions' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\Helpers.cs(7,7) : error CS0246: The type or namespace name 'EXtensions' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\VollFarmer.cs(10,7) : error CS0246: The type or namespace name 'EXtensions' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\VollFarmer.cs(11,7) : error CS0246: The type or namespace name 'EXtensions' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\VollFarmer.cs(12,7) : error CS0246: The type or namespace name 'EXtensions' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\VollFarmer.cs(14,7) : error CS0246: The type or namespace name 'OldRoutine' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\Helpers.cs(68,56) : error CS0246: The type or namespace name 'WalkablePosition' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\Helpers.cs(80,46) : error CS0246: The type or namespace name 'WalkablePosition' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\Helpers.cs(138,35) : error CS0246: The type or namespace name 'WalkablePosition' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\VollFarmer.cs(23,17) : error CS0246: The type or namespace name 'WalkablePosition' could not be found (are you missing a using directive or an assembly reference?)
      F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-3143061\VollFarmer.cs(25,17) : error CS0246: The type or namespace name 'WalkablePosition' could not be found (are you missing a using directive or an assembly reference?)
      
         在 Loki.Bot.ThirdPartyLoader.‬*‎‬‬‎*‏**‪*​*‎****‫​‪​**(Dictionary`2 , String )


      can not load ~~~ pls help
      I have create an empty file "3rdparty-required.txt" inside 3rdParty\OldGrindBot folder
      and setting Gui add VollFarmer
       
    19. Unknown Buddy

      Unknown Buddy Member

      Joined:
      May 20, 2015
      Messages:
      603
      Likes Received:
      17
      Trophy Points:
      18
      It tells you right in the error why it wont load ;p

      Code:
      The type or namespace name 'EXtensions' could not be found
      You do not have EXtensions installed (which you would get from installing QuestBot). Should work fine after you install the required plugins listed on the opening post.
       
    20. rienshan

      rienshan Member

      Joined:
      Oct 26, 2014
      Messages:
      35
      Likes Received:
      0
      Trophy Points:
      6

      Thank you .

      But is not load .

      Code:
      Cannot load [VollFarmer] because an exception occurred [E:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-42259890\VollFarmer.cs(14,7) : error CS0246: The type or namespace name 'OldRoutine' could not be found (are you missing a using directive or an assembly reference?)
      ].
      System.Exception: F:\ie\3rdParty\_CONFIGS_\Default\VollFarmer\Content-42259890\VollFarmer.cs(14,7) : error CS0246: The type or namespace name 'OldRoutine' could not be found (are you missing a using directive or an assembly reference?)
      
         在 Loki.Bot.ThirdPartyLoader.‬*‎‬‬‎*‏**‪*​*‎****‫​‪​**(Dictionary`2 , String )
      AreaVisualizer
      I setting Gui VollFarmer / EXtensions / OldRoutine /OldGrindBot and Uncheck Compile Asynchronosuly
       

    Share This Page