What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[Request] Professionbuddy profile to put mail items into gbank

Loldawg

New Member
Joined
Dec 8, 2012
Messages
16
Reaction score
0
Hi,

I'm looking for a profile to pick all mails from mailbox, deposit in gb. That's it, as long as it has mails, it should do it. This is what I have so far

PHP:
<?xml version="1.0" encoding="utf-8"?>
<Professionbuddy>
  <ChangeBotAction BotName="Combat Bot" />
  <While Condition="true" IgnoreCanRun="True">
    <If Condition="(HasNewMail || MailCount&gt; 0)" IgnoreCanRun="True">
      <GetMailAction GetMailType="AllItems" ItemID="0" CheckNewMail="True" MinFreeBagSlots="2" AutoFindMailBox="True" Location="-8860.81, 637.1594, 96.19888" />
      <WaitAction Condition="false" Timeout="2000" />
  </If>  
  </While>
  <SubRoutine SubRoutineName="DepositGemsGB">
    <If Condition="(bool)Settings[&quot;Depositing Mats in Guild Bank&quot;]" IgnoreCanRun="True">
    <CallSubRoutine SubRoutineName="GoToBank" />
    <WaitAction Condition="false" Timeout="500" />
      <!--Ghost Iron Ore-->
      <While Condition="InbagCount(72235) &gt;= 1" IgnoreCanRun="False">
        <PutItemInBankAction Deposit="All" UseCategory="False" Bank="Guild" ItemID="72235" GuildTab="0" AutoFindBank="True" />
      </While>
      <!--Silkweed-->
      <While Condition="InbagCount(76130) &gt;= 1" IgnoreCanRun="False">
        <PutItemInBankAction Deposit="All" UseCategory="False" Bank="Guild" ItemID="76130" GuildTab="0" AutoFindBank="True" />
      </While>
      <!--Golden Lotus-->
      <While Condition="InbagCount(72238) &gt;= 1" IgnoreCanRun="False">
        <PutItemInBankAction Deposit="All" UseCategory="False" Bank="Guild" ItemID="72238" GuildTab="0" AutoFindBank="True" />
      </While>
      <!--Green Tea Leaf-->
      <While Condition="InbagCount(72234) &gt;= 1" IgnoreCanRun="False">
        <PutItemInBankAction Deposit="All" UseCategory="False" Bank="Guild" ItemID="72234" GuildTab="0" AutoFindBank="True" />
      </While>
      <!--Desecrated Herb-->
      <While Condition="InbagCount(89639) &gt;= 1" IgnoreCanRun="False">
    <PutItemInBankAction Deposit="All" UseCategory="False" Bank="Guild" ItemID="89639" GuildTab="0" AutoFindBank="True" />
      </While>
      <!--Rain Poppy-->
      <While Condition="InbagCount(72237) &gt;= 1" IgnoreCanRun="False">
        <PutItemInBankAction Deposit="All" UseCategory="False" Bank="Guild" ItemID="72237" GuildTab="0" AutoFindBank="True" />
      </While>
    </If> 
     <CustomAction Code="Log(&quot;Finished!&quot;);" />
   
  </SubRoutine>
  </Professionbuddy>

It picks up mails but it doesn't deposit or move. It was tested on a mage 85 in dalaran.
Thanks to anyone who even considers helping me out =)
 
here is one i made it puts herbs and ores into Gbank

Herbs in slots 2,3, and 4
Ore in slots 5,6, and 7

If this isnt what ur looking for hopefully it will atleast help you to get yours working.

View attachment Guild deposit.xml
 
here is one i made it puts herbs and ores into Gbank

Herbs in slots 2,3, and 4
Ore in slots 5,6, and 7

If this isnt what ur looking for hopefully it will atleast help you to get yours working.

View attachment 78758

Works mate =) Thank you!

PS. For those running less then 7 tabs change all lines like this
PHP:
GuildTab="5"
PHP:
GuildTab="4"
etc to this
PHP:
GuildTab="0"

Cheers =)
 
Hi! I loaded this xml to professionbuddy. I have only 4 guild tabs but changed the numbers to 0. My toon is just standing at the guild vault and do nothing. My tabs are not empty but around half empty.
 
Try in Orgrimmar. Level 85 mage, with all mails unread, in a guild having full access to all tabs and it works :)
 
Back
Top