What of this script do i need to change so it will send all of my remaining mail to my Banker?
Reason I need this is I have 2 Farmers sending their Mats to a Sorting Character(sends ore to JC, herbs to Scribe and remaining to banker). I need the sorter to send anything that isnt a herb or ore to my Banker
Code:
<SubRoutine SubRoutineName="MailBank">
<Mail Items to Banker>
<If Condition="false || !string.IsNullOrEmpty((string)Settings["Banker"]) && (InbagCount([B][COLOR="#FF0000"]ITEM#[/COLOR][/B]) >= 1 || InbagCount([B][COLOR="#FF0000"]ITEM#[/COLOR][/B]) >= 1 || InbagCount([B][COLOR="#FF0000"]ITEM#[/COLOR][/B]) >= 1)" IgnoreCanRun="True">
<CustomAction Code="Log (Color.Crimson,"AHBuddy: ",Color.BlanchedAlmond,"Sending stuff to {0}.",(string)Settings["Banker"]);" />
<CustomAction Code="var1 = CharacterSettings.Instance.MailRecipient;" />
<CustomAction Code="CharacterSettings.Instance.MailRecipient = (string)Settings["Banker"];" />
<!--All Styff-->
<MailItemAction Category="TradeGoods" SubCategoryType="WoWItemTradeGoodsClass" SubCategory="None" Mail="All" UseCategory="False" ItemID="0" Amount="0" AutoFindMailBox="True" Location="0, 0, 0" />
<WaitAction Condition="false" Timeout="500" />
<CustomAction Code="CharacterSettings.Instance.MailRecipient = (string)var1;" />
</If>
</SubRoutine>
Reason I need this is I have 2 Farmers sending their Mats to a Sorting Character(sends ore to JC, herbs to Scribe and remaining to banker). I need the sorter to send anything that isnt a herb or ore to my Banker
Last edited: