• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • [N] Firelands Raw Gold Endless Farm

    Discussion in 'Farming' started by Zojak, Mar 22, 2016.

    1. v1go

      v1go New Member

      Joined:
      Nov 4, 2014
      Messages:
      8
      Likes Received:
      0
      Trophy Points:
      1
      Code:
      bad point
      <RunTo X="-250.5062" Y="-231.5517" Z="53.00938" />
      When the bot is running it, he often falls into the lava, I replaced it with a point
      Code:
      <RunTo X="-219.4159" Y="-215.9711" Z="54.39933" />
       
      Last edited: Aug 30, 2016
    2. darttheshotz

      darttheshotz New Member

      Joined:
      Aug 8, 2016
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      I Have tested this on my Arms warrior for about ten hours i have got 2 deaths and about 8k gold Its a decent gold farming profile. I am very pleased with this profile. Just wondering myself if Gathering Ore isnt a higher GPh. Im pleased tro say though 100% AFK on that ten hour run also got around 30 lockboxes have no idea what they hold though
       
    3. Zojak

      Zojak Member

      Joined:
      Feb 2, 2016
      Messages:
      563
      Likes Received:
      6
      Trophy Points:
      18
      maybe you got a outdated version ? i did replace all the RunTo with MoveTo
       
    4. Zojak

      Zojak Member

      Joined:
      Feb 2, 2016
      Messages:
      563
      Likes Received:
      6
      Trophy Points:
      18
      the lockboxes contain about 30-40 gold and 1-2items for each lockbox
       
    5. skark76

      skark76 Member

      Joined:
      Feb 15, 2016
      Messages:
      80
      Likes Received:
      2
      Trophy Points:
      8
      what about my issue ?
       
    6. Guile

      Guile Member

      Joined:
      Aug 8, 2016
      Messages:
      56
      Likes Received:
      0
      Trophy Points:
      6
      functioning a bit weird, i just ran this profile and there were so many mobs still left when my dk created his deathgate waited there a while and then went back. Can you possibly put in a health check so that the toon can start fighting as soon as it reaches say 50% my dk just died which is 730 ivl because he pulled too many mobs and kept running until he died.
       
      Last edited: Aug 31, 2016
    7. st38

      st38 Member

      Joined:
      Oct 11, 2014
      Messages:
      39
      Likes Received:
      0
      Trophy Points:
      6
      Work with hb3?
       
    8. Lais

      Lais Member

      Joined:
      Aug 8, 2012
      Messages:
      88
      Likes Received:
      0
      Trophy Points:
      6
      [Compiler Error]: C:\Users\Lais\Desktop\HB\Quest Behaviors\QuestBehaviorCore\Utility\Query_Database.cs(23,22) : error CS0234: The type or namespace name 'Database' does not exist in the namespace 'Styx.CommonBot' (are you missing an assembly reference?)
       
    9. Adeller

      Adeller New Member

      Joined:
      Feb 3, 2016
      Messages:
      7
      Likes Received:
      0
      Trophy Points:
      0
      No longer works with the HB3 update
       
    10. Wolfman1190

      Wolfman1190 Member

      Joined:
      Jul 21, 2012
      Messages:
      291
      Likes Received:
      2
      Trophy Points:
      18
      Rip I made almost 1mil gold in 2 weeks with 2 DK's running 24/7 balls to the walls

      If you could update this for HB3 I would love you till the end of time.
       
    11. Magneto12

      Magneto12 New Member

      Joined:
      Aug 10, 2016
      Messages:
      46
      Likes Received:
      0
      Trophy Points:
      0
      If you have the old honorbuddy, its still working, that is what I'm doing to continue running the profile
       
    12. Guile

      Guile Member

      Joined:
      Aug 8, 2016
      Messages:
      56
      Likes Received:
      0
      Trophy Points:
      6
      Second that, great profile
       
    13. Zojak

      Zojak Member

      Joined:
      Feb 2, 2016
      Messages:
      563
      Likes Received:
      6
      Trophy Points:
      18
      i will update it for hb3 anyway it will take some time. remember so far hb3 is just a test release. als long as hb2 is supported use it for the profile.


      unfortunately*my accounts got banned yesterday so i will need some time untill i can go back to develop and testing. this means it will take some weeks until i can make a release
       
    14. borig

      borig Member

      Joined:
      Aug 4, 2016
      Messages:
      45
      Likes Received:
      4
      Trophy Points:
      8
      if you want, check out these mining methods while working on your profile :)
      i tried your profile its great, but the mining part with the InteractWith behavior gave me problems.

      either
      Code:
          <CustomBehavior File="CollectThings" 
                          MobId="53732" 
                          CollectUntil="NoTargetsInArea" 
                          CollectItemCount="1"
                          CollectItemId="53732" 
                          MobState="Dead" 
                          PostInteractDelay="1600" />
      or
      Code:
      <!-- add this line ONCE at top of profile, after <Questorder> -->
      <CustomBehavior File="RunCode" Type="Definition" Code="int miningCounter = 0;" />
      
      <!-- add the following complete text everytime you want the bot to mine all mobs in area -->
      <CustomBehavior File="RunCode" Code="miningCounter = 0" />
        <while Condition="miningCounter &lt; 4">
          <CustomBehavior File="TargetAndMoveToMob" MobId="53732"
                                TargetOnlyIfHealthPercentBelow="1"
                                MoveWithinMaxRangeOfMob="2"
                                WaitForNpcs="false"/>
      
        <while Condition="(Me.CurrentTarget != null) &amp;&amp; (Me.CurrentTarget.Entry == 53732)">
          <if Condition="!(Me.IsCasting)">
            <CustomBehavior File="InteractWith" MobId="53732" WaitTime="1600" MobState="Dead" KeepTargetSelected="true"/>
          </if>
          <CustomBehavior File="TargetAndMoveToMob" MobId="53732"
                              TargetOnlyIfHealthPercentBelow="1"
                              MoveWithinMaxRangeOfMob="3"
                              WaitForNpcs="false"/>
      
        </while>
        <CustomBehavior File="RunCode" Code="miningCounter++" />
      </while>
      
      the first code looks better, but i think the second one works better.

      anyone with ideas on how to further improve the mining part please let me know.

      edit: changed the second code a bit. but InteractWith is still having trouble with the new HB3, or is it the "pather" :confused:
       
      Last edited: Sep 6, 2016
    15. Dexterss

      Dexterss Member

      Joined:
      Aug 17, 2012
      Messages:
      79
      Likes Received:
      0
      Trophy Points:
      6
      Profile works with Hb3 but sometimes does not hit the mobs and they kill him, the farm is possible but a lot of times dies
       
    16. kayzer007

      kayzer007 New Member

      Joined:
      Feb 10, 2010
      Messages:
      21
      Likes Received:
      0
      Trophy Points:
      0
      I start the profile "normal with gbank" 30 minutes ago and no problem ATM...i will report after 1 or 2 hours...
       
    17. kayzer007

      kayzer007 New Member

      Joined:
      Feb 10, 2010
      Messages:
      21
      Likes Received:
      0
      Trophy Points:
      0
      I've got a problem too, the bot stop and do nothing
       
    18. Zojak

      Zojak Member

      Joined:
      Feb 2, 2016
      Messages:
      563
      Likes Received:
      6
      Trophy Points:
      18
      hey thanks for your cobtribution i really appriceate it. it looks really nice i will test it as soon when i am back running
       
    19. JJWhite

      JJWhite Member

      Joined:
      Apr 20, 2013
      Messages:
      73
      Likes Received:
      0
      Trophy Points:
      6
      Have run it on and off today. Reset instance by hand and attempted a number of other strategies - no dice.

      Bot hangs out there and walks around - will respond to combat but doesn't exit the instance or reset.

      On occasion wont respond to combat...great profile; dying for it to come back up again :p
       
    20. Showt1me

      Showt1me New Member

      Joined:
      Jul 25, 2016
      Messages:
      4
      Likes Received:
      0
      Trophy Points:
      0
      Currently running this on a 650 rogue, doing pretty good in terms of no deaths. Allthough it seems to waste allot of time outside the entrance. It completes his route inside, heads for the exit and walks through the teleporter. After that he is just standing outside waiting for something?? After a couple of mins(5?) it resets firelands and goes back inside. Why is it waiting outside? And why is it waiting for so long? Can I change this timer?

      Thanks for your response
       

    Share This Page