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
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 =)
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> 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["Depositing Mats in Guild Bank"]" IgnoreCanRun="True">
<CallSubRoutine SubRoutineName="GoToBank" />
<WaitAction Condition="false" Timeout="500" />
<!--Ghost Iron Ore-->
<While Condition="InbagCount(72235) >= 1" IgnoreCanRun="False">
<PutItemInBankAction Deposit="All" UseCategory="False" Bank="Guild" ItemID="72235" GuildTab="0" AutoFindBank="True" />
</While>
<!--Silkweed-->
<While Condition="InbagCount(76130) >= 1" IgnoreCanRun="False">
<PutItemInBankAction Deposit="All" UseCategory="False" Bank="Guild" ItemID="76130" GuildTab="0" AutoFindBank="True" />
</While>
<!--Golden Lotus-->
<While Condition="InbagCount(72238) >= 1" IgnoreCanRun="False">
<PutItemInBankAction Deposit="All" UseCategory="False" Bank="Guild" ItemID="72238" GuildTab="0" AutoFindBank="True" />
</While>
<!--Green Tea Leaf-->
<While Condition="InbagCount(72234) >= 1" IgnoreCanRun="False">
<PutItemInBankAction Deposit="All" UseCategory="False" Bank="Guild" ItemID="72234" GuildTab="0" AutoFindBank="True" />
</While>
<!--Desecrated Herb-->
<While Condition="InbagCount(89639) >= 1" IgnoreCanRun="False">
<PutItemInBankAction Deposit="All" UseCategory="False" Bank="Guild" ItemID="89639" GuildTab="0" AutoFindBank="True" />
</While>
<!--Rain Poppy-->
<While Condition="InbagCount(72237) >= 1" IgnoreCanRun="False">
<PutItemInBankAction Deposit="All" UseCategory="False" Bank="Guild" ItemID="72237" GuildTab="0" AutoFindBank="True" />
</While>
</If>
<CustomAction Code="Log("Finished!");" />
</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 =)