• Visit Rebornbuddy
  • [Azyul Project] Dungeon Farming, Gold Farming, Mount Farming, Transmog Farming, and more!

    Discussion in 'Farming' started by EchoTiger, Feb 26, 2013.

    1. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,809
      Likes Received:
      631
      Trophy Points:
      113
      The stealth issue is your combat routine.

      Which version of Botanica is going to Arcatraz?
      There's no Mesh around the ships, so it could be bad navigation.
       
    2. dutamulia

      dutamulia New Member

      Joined:
      Nov 7, 2013
      Messages:
      135
      Likes Received:
      0
      Trophy Points:
      0
      I picked the one from Heavy Pulls. It entered Arcatraz and run the dungeon normally.
      It does it again, but this time is not going to arcatraz but fly high into the empty space. I'll try clean install/clear cache and see if this happen again.
       
      Last edited: Jun 23, 2014
    3. happyfriet

      happyfriet Active Member

      Joined:
      Jan 14, 2013
      Messages:
      1,271
      Likes Received:
      19
      Trophy Points:
      38
      Just pick the dungeon where there aren't many other bots - for your sake and his, and be sure to switch once every few days :)
       
    4. dutamulia

      dutamulia New Member

      Joined:
      Nov 7, 2013
      Messages:
      135
      Likes Received:
      0
      Trophy Points:
      0
      Works flawlessly after clearling stuff. Now only if I know how to add a command line so it'll auto delete some foods that won't get sell even after I have deleted protected & forcemail file. I don't really like using pugins for this, I suspect plugins might screw the profile (at least on my own exp).
       
    5. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,809
      Likes Received:
      631
      Trophy Points:
      113
      The plugin "Refreshment Detection" will auto-protect the highest level food and water in your bags.
      So you must disable it.

      Food and water is also protected by your "Settings & Tools" option.
      Under the "Mail & Refreshment" category, erase the numbers from the boxes.

      It *should* sell them then.
       
    6. happyfriet

      happyfriet Active Member

      Joined:
      Jan 14, 2013
      Messages:
      1,271
      Likes Received:
      19
      Trophy Points:
      38
      That reminds me - In the botanica profile you coded so it will delete the stuff that cannot be vendored - but I cannot find the code responsible for it. Since I haven't found any way ( outside a plugin ) to vendor the potions, I wanted to delete them in the same way with gundrak profile. is that possible ?
       
      Last edited: Jun 23, 2014
    7. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,809
      Likes Received:
      631
      Trophy Points:
      113

      Yea, it's a LUA script.

      PHP:
      for bag 0,4,do for slot 132do local name GetContainerItemLink(bag,slot); 
          if 
      name and string.find(name,"ITEM NAME HERE"
              
      then PickupContainerItem(bag,slot); DeleteCursorItem();
              
      end;
          
      end;
      end
      There's other ways of using the code, but this method will allow you to delete the item by name.


      On a dev-level, we would need to use the item's ID instead of the item's name due to for localization issues.
      So the code I'm using in Botanica is:
      PHP:
      local item,l,i="32902"
      for bag=0,do for slot=1,GetContainerNumSlots(b)
          do 
      l=GetContainerItemLink(bag,slot)i=and l:match("item:(%d+)")
              if 
      i==item then PickupContainerItem(bag,slot)DeleteCursorItem()
              
      end
          end
      end
      Where "32902" is the ItemID.



      These LUA scripts can be triggered by using:
      <CustomBehavior File="Misc\RunLUA" Lua="script here" />

      Just keep in mind that any quotes in the script will need to be escaped by using &quot;
      Ex:
      local item,l,i="32902" → local item,l,i=&quot;32902&quot;
      "ITEM NAME HERE" &quot;ITEM NAME HERE&quot;
       
      Last edited: Jun 23, 2014
    8. happyfriet

      happyfriet Active Member

      Joined:
      Jan 14, 2013
      Messages:
      1,271
      Likes Received:
      19
      Trophy Points:
      38
      Great thanks - modified it :)
      With that the profile is 100% afkable XD unless lightning strikes and blows up my computer. :p
       
      Last edited: Jun 23, 2014
    9. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,809
      Likes Received:
      631
      Trophy Points:
      113
      Lol. xD
      That wouldn't be good. D:

      Since they can be sold - I've been telling people to just add the potions to the ForceMail file so the bot just mails them off.
       
    10. happyfriet

      happyfriet Active Member

      Joined:
      Jan 14, 2013
      Messages:
      1,271
      Likes Received:
      19
      Trophy Points:
      38
      Yea but tbh - when 15 bots send the pots to a character, it takes years to sell them all and it's not that much extra gold :p
      Or just a few minutes - but I'm lazy as hell :D

      I want to use the vendor mount on my next round aswell so flying to the mailbox will lose more gph then it would gain :p
       
      Last edited: Jun 23, 2014
    11. jackalj

      jackalj New Member

      Joined:
      Sep 29, 2013
      Messages:
      25
      Likes Received:
      0
      Trophy Points:
      1
      A question, In the Tempest Keep 3 of 4 bosses farm profile. It says it only farms for the pet, but doesn't the pet and mount drop of the same boss and thus it farms for that as well? I would like to know for sure so I can use that profile to farm the Ashes of Al'ar.

      Edit: I have tried several instance farms, HB loads the profile travels to the instance and then HB just stops, no error. It says nothing more to do. Do I need a special plugin? Or a specific version of HB for it to work properly? (I know certain profiles don't work because they are outdated but Karazhan and Tempest Keep are supported.
       
      Last edited: Jun 23, 2014
    12. happyfriet

      happyfriet Active Member

      Joined:
      Jan 14, 2013
      Messages:
      1,271
      Likes Received:
      19
      Trophy Points:
      38
      Heeya - sorry to be a pain but for the future - so when I want to sell vendor from the Travelers mount thingy.

      I only have to add the following to my modified Gundrak ?

      <CustomBehavior File="WaitTimer" WaitTime="500" />
      <CustomBehavior File="RunMacro" Macro="/cast Traveler's Tundra Mammoth\n/cast Grand Expedition Yak" />
      <CustomBehavior File="WaitTimer" WaitTime="1500" />
      <If Condition="(Me.HasAura(122708)) || (Me.HasAura(61425) || Me.HasAura(61447))" >
      <CustomBehavior File="WaitTimer" WaitTime="1100" />
      <CustomBehavior File="ForceSetVendor" DoSell="true" DoRepair="true" />
      </If>
      <If Condition="(Me.FreeBagSlots &lt;= 10)" >


      Couldn't find other diffrences :D please correct me if i'm wrong :)

      cheers
       
      Last edited: Jun 23, 2014
    13. Bhikkus

      Bhikkus Member

      Joined:
      Oct 18, 2012
      Messages:
      109
      Likes Received:
      3
      Trophy Points:
      18
      Heyho honey :p

      I just want to improve my profit from your zulfarak script. Is it possible to open every graveyard there(or half of them)?
      Jade Gauntlets drops there. Would be awesome :X
       
    14. asauve

      asauve New Member

      Joined:
      Jun 17, 2014
      Messages:
      18
      Likes Received:
      0
      Trophy Points:
      0
      Sorry one last thing... For the life of me, I cannot figure out what "mail at 40" means on the botanica.. You have 2 different ones and they seem to be the exact same
       
    15. wilderg99

      wilderg99 New Member

      Joined:
      May 31, 2014
      Messages:
      245
      Likes Received:
      0
      Trophy Points:
      0
      how is the vendor for botanica? do i need any rep or quest? or any mount?
       
    16. wilderg99

      wilderg99 New Member

      Joined:
      May 31, 2014
      Messages:
      245
      Likes Received:
      0
      Trophy Points:
      0
      what kills an HR are you guys getting on botanica profile? are you guys using anything to increase GPH?
       
    17. Wannbe

      Wannbe New Member

      Joined:
      Mar 14, 2014
      Messages:
      95
      Likes Received:
      1
      Trophy Points:
      0
      Grim Batol profile still don't mail items.

      Alliance
       
    18. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,809
      Likes Received:
      631
      Trophy Points:
      113
      There's no way (on a profile level) to detect if the player has the Mammoth/Yak.
      But, the bot knows if it has it.
      So a cheap way of triggering the vendor routine if the player owns the mount - we force the bot to cast it, then we look to see if the mount spell is active on the player.
      If it is, we then call the vendor routine.


      [HR][/HR]

      Yea, it could be done.
      The current script is just a simple instance grind - not an optimized run.
      A optimized run will be coming later in the future though.


      [HR][/HR]

      Well, since the Botanica can only be access with a flying mount - you'll need one of those.
      But the vendor doesn't require anything.


      [HR][/HR]

      Hmm, I'll tweak it a bit more.
      Seems that Honorbuddy isn't properly detecting the mailboxes.
       
    19. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,809
      Likes Received:
      631
      Trophy Points:
      113
      This profile was coded by FrostFever a little over a year ago.
      At the moment, the profile is marked as "obsolete" and it needs to be re-built.

      If it's ending abruptly, then there's probably a Quest Behavior that you need.
      All working Quest Behaviors are on the SVN/ZIP now - but any that haven't been tested are still archived.

      Here's the Quest Behavior the profile requires, it hasn't been tested so it may no longer work.
      View attachment KaelThas.cs
      Also be sure to copy the Quest Behaviors over from the SVN/ZIP.​
       
    20. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,809
      Likes Received:
      631
      Trophy Points:
      113
      That was a profile created for someone who wanted their bot to mail if there's 40 or less bagslots left (after vendoring.)
      I didn't mean for it to make it onto the ZIP. xD
       

    Share This Page