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

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

    1. happyharry1983

      happyharry1983 New Member

      Joined:
      Aug 3, 2014
      Messages:
      37
      Likes Received:
      2
      Trophy Points:
      0

      Gundrak - Guild Bank Money+Frostweave

      i also use your Grim Batol Version of this profile but it keeps my savage leather and ive also personally edited that one to keep my greens on that profile
      but this Gundrak version runs to the vendor and sells absolutly everything except epics and frostweave i tried to test it to kepp the greens as well and even when i change the settings it still sells them so i can only think you got your selling script it and when im looking at it with another one of my friends we cant work out which bit is the selling script so that we can manually remove it

      Thanks again Mike
       
    2. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      The [AM - Alpha] Gundrak profile can be set to what you need.
      Just disable "Sell All" and check "Deposit Frostweave" or "Deposit Cloth" using the menu.


      Or alternatively, here's an edited version that won't sell your Savage Leather:


      This version will keep and deposit the Savage Leather into the guild bank:
       
      Last edited: Aug 3, 2014
    3. happyharry1983

      happyharry1983 New Member

      Joined:
      Aug 3, 2014
      Messages:
      37
      Likes Received:
      2
      Trophy Points:
      0
      sorry i may have confused you when i started talking about grim batol but i need it to keep borean leather not savage leather but that profile would be absolutly amazing if you could just change it to borean from savage thank you very much
       
    4. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      Won't sell Borean Leather:


      Keep and deposit the Borean Leather into the guild bank:
       
    5. elderapo

      elderapo New Member

      Joined:
      Mar 31, 2013
      Messages:
      25
      Likes Received:
      0
      Trophy Points:
      0
      [AM - Alpha] The Botanica -- can some1 check if I replace code1 with code2 mailing gold will work? I am so curious but can't test it atm.

      Also u need to change value of "RangeFrameRadarPoint" to amount that u want your bot to leave instance farming mode and go for mail/vendor.
      PHP:
                  <If Condition="(Me.FreeBagSlots &lt;= (Lua.GetReturnVal&lt;uint&gt;(&quot;return RangeFrameRadarPoint&quot;, 0)))" >
                      <
      CustomBehavior File="Message" Text="Moving to Mail" LogColor="Lime" />
                      <
      SetMailbox>
                          <
      Mailboxes>
                                  <
      Mailbox Nav="Fly" X="3056.502" Y="3687.034" Z="142.7493" />
                              </
      Mailboxes>
                      </
      SetMailbox>
                      <
      CustomBehavior File="ForceSetVendor" DoSell="False" DoRepair="False" DoMail="True" />
                      <
      MoveTo Nav="Fly" X="3056.502" Y="3687.034" Z="142.7493" />
                      <
      ClearMailbox />
                  </If>
      with
      PHP:
                  <If Condition="(Me.Gold &gt;= (Lua.GetReturnVal&lt;uint&gt;(&quot;return RangeFrameRadarPoint&quot;, 0)))" >
                      <
      CustomBehavior File="Message" Text="Moving to Mail" LogColor="Lime" />
                      <
      SetMailbox>
                          <
      Mailboxes>
                                  <
      Mailbox Nav="Fly" X="3056.502" Y="3687.034" Z="142.7493" />
                              </
      Mailboxes>
                      </
      SetMailbox>
                      <
      CustomBehavior File="RunMacro" Macro="/run local amount=GetMoney() SetSendMailMoney(amount-100030) SendMail("NAMEEEEE", amount/10000 .. " gold attached", "")" />  
                      <
      CustomBehavior File="ForceSetVendor" DoSell="False" DoRepair="False" DoMail="True" />
                      <
      MoveTo Nav="Fly" X="3056.502" Y="3687.034" Z="142.7493" />
                      <
      ClearMailbox />
                  </If>
       
    6. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      <SetMailbox> is for telling Honorbuddy which mailbox to use.
      But since we're using custom codes, you won't need that.

      Instead, you'd need an InteractWith code to open the mailbox, and you would also then a code to click the 'Send Mail' page since the mailbox doesn't automatically open to it.
      Ex:
      PHP:
      <CustomBehavior File="InteractWith" MobId="Mailbox ID" WaitTime="1000" />
      <
      CustomBehavior File="Misc\RunLua" Lua="
          MailFrameTab2:Click()
          local Amount=GetMoney()
          SetSendMailMoney(Amount)
          SendMail(&quot;Name&quot;, &quot;Here's your gold!&quot;, &quot;This is the text that goes into the body of the letter.&quot;)
      />
      With the above code, all of the player's gold will be mailed.



      The return value of the GetMoney(); function is in copper.
      So with a little math we can deposit all of the player's gold minus X amount.
      Ex:
      PHP:
      Keep=100*10000;
      Amount=(GetMoney()-Keep);
      This will alter the Amount variable so that all but 100 gold is mailed.
       
      Last edited: Aug 3, 2014
    7. elderapo

      elderapo New Member

      Joined:
      Mar 31, 2013
      Messages:
      25
      Likes Received:
      0
      Trophy Points:
      0
      So this should work?
      PHP:
              <!-- Generic Mail Routine -->
                  <If 
      Condition="(Me.Gold &gt;= (Lua.GetReturnVal&lt;uint&gt;(&quot;return RangeFrameRadarPoint&quot;, 0)))" >
                      <
      CustomBehavior File="Message" Text="Moving to Mail" LogColor="Lime" />
                      <
      MoveTo Nav="Fly" X="3056.502" Y="3687.034" Z="142.7493" />
                      <
      CustomBehavior File="InteractWith" MobId="Mailbox ID" WaitTime="1000" /> 
                      <
      CustomBehavior File="Misc\RunLua" Lua=
                          MailFrameTab2:Click() 
                          local amount=GetMoney() 
                          SetSendMailMoney(amount-1000030) SendMail(&quot;Name&quot;, &quot;Mail&quot;, &quot;gold&quot;) 
                      " 
      /> 
                  </If>
              <!-- 
      END Generic Mail Routine -->
       
    8. bazaltic

      bazaltic Member

      Joined:
      Nov 14, 2012
      Messages:
      256
      Likes Received:
      0
      Trophy Points:
      16
      Wow this is great Echo, don't even need to log on farmer now :)
       
    9. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      Your conditioning codes aren't correct.
      The RangeFrameRadarPoint is a variable that's populated by "Mailing Min" on the AMS.
      Which this code looks for the player's minimum bagslots. If the player's baglsots are under the amount - it will go to mail.
      It doesn't have anything to do with the player's gold -- unless you're modifying it yourself to do that.

      Also since the profile is designed in XML, you need to escape your quotes.

      And you'll need to put the correct mailbox ID into the InteractWith MobId tunable.

      Aside from that, yes. :3
       
      Last edited: Aug 3, 2014
    10. elderapo

      elderapo New Member

      Joined:
      Mar 31, 2013
      Messages:
      25
      Likes Received:
      0
      Trophy Points:
      0
      Ok. Thanks alot! Btw. your profiles are AWESOME! :-D
       
    11. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      Thanks. ^^
       
    12. Sinndar88

      Sinndar88 Member

      Joined:
      Jun 17, 2014
      Messages:
      178
      Likes Received:
      2
      Trophy Points:
      18
      i think the wait timer for the guild bank deposit of items on the Grim batol Gbank Embersilk could do with an extention, only has time to store 10 stacks <3
       
    13. Twisty

      Twisty New Member

      Joined:
      Mar 27, 2014
      Messages:
      328
      Likes Received:
      0
      Trophy Points:
      0
      what profile is 2nd best to botanica, gph wise?
       
    14. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      I'll be sending out an update (eventually) that'll increase the standard wait time after the bot executes the Lua selling script.

      [HR][/HR]

      From raw gold - Gundrak is the next highest (rated) farm. There may betters.
       
    15. Sinndar88

      Sinndar88 Member

      Joined:
      Jun 17, 2014
      Messages:
      178
      Likes Received:
      2
      Trophy Points:
      18
      Loop

      View attachment loop.txt

      Log file of the mail loop when mailbox cords isnt inserted in the profile code :)

      Grimbatol GBank Silk
       
    16. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      I'll check it out later tonight.
      Got a lot of fixes and 'to-do' that I'm working on right now. xD
       
    17. Budoy

      Budoy New Member

      Joined:
      Jul 15, 2012
      Messages:
      22
      Likes Received:
      0
      Trophy Points:
      0
      hey guys, is there anyway u can create a CustomBehavior to check wether ur in cat form, if not it will switch u to cat form????
       
    18. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      The combat routine would handle this. So an edit would need to be made there.

      Most profiles have scripts that force you to use speed buffs / forms between pulls.
       
    19. Budoy

      Budoy New Member

      Joined:
      Jul 15, 2012
      Messages:
      22
      Likes Received:
      0
      Trophy Points:
      0
      aw thanks for the quick reply
       
    20. bazaltic

      bazaltic Member

      Joined:
      Nov 14, 2012
      Messages:
      256
      Likes Received:
      0
      Trophy Points:
      16
      Hi Echo i was kinda greedy and shortened wait timers after entering and leaving instance. Can it cause bot to stop if game is loading too long? It didnt hapened yet but i wonder.
       

    Share This Page