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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[REQUEST] MAIL TO: Specified

RD808

New Member
Joined
Apr 7, 2011
Messages
128
If there is not a plugin already that does this, can one be created?

I want to have my BOT auto mail all herbs to one character and all ore to another.

If there is a plugin like this already, can someone please link it?


Thank you.
 
Download professionbuddy, then, look at this and modify the ids:
Code:
  <SubRoutine SubRoutineName="SendHerbs">
    <CustomAction Code="Log (&quot;Getting ore from mail.&quot;);" />
    <GetMailAction ItemID="53038" CheckNewMail="True" GetMailType="Specific" AutoFindMailBox="True" X="-8860.81" Y="637.1594" Z="96.19888" MinFreeBagSlots="2" />
    <GetMailAction ItemID="52185" CheckNewMail="True" GetMailType="Specific" AutoFindMailBox="True" X="-8860.81" Y="637.1594" Z="96.19888" MinFreeBagSlots="2" />
    <GetMailAction ItemID="52183" CheckNewMail="True" GetMailType="Specific" AutoFindMailBox="True" X="-8860.81" Y="637.1594" Z="96.19888" MinFreeBagSlots="2" />
  </SubRoutine>
  <SubRoutine SubRoutineName="SendOre">
    <If Condition="false || !string.IsNullOrEmpty((string)Settings[&quot;JCBanker&quot;])" IgnoreCanRun="True">
      <CustomAction Code="Log (&quot;Sending ore to JC&quot;);" />
      <CustomAction Code="var1 = CharacterSettings.Instance.MailRecipient;" />
      <CustomAction Code="CharacterSettings.Instance.MailRecipient = (string)Settings[&quot;JCBanker&quot;];" />
      <!--Obsidium Ore-->
      <MailItemAction Entry="53038" AutoFindMailBox="True" UseCategory="False" Category="TradeGoods" SubCategoryType="WoWItemTradeGoodsClass" SubCategory="None" X="0" Y="0" Z="0" />
      <!--Elementium Ore-->
      <MailItemAction Entry="52185" AutoFindMailBox="True" UseCategory="False" Category="TradeGoods" SubCategoryType="WoWItemTradeGoodsClass" SubCategory="None" X="0" Y="0" Z="0" />
      <MailItemAction Entry="52183" AutoFindMailBox="True" UseCategory="False" Category="TradeGoods" SubCategoryType="WoWItemTradeGoodsClass" SubCategory="None" X="0" Y="0" Z="0" />
      <!--Pyrite Ore-->
      <CustomAction Code="CharacterSettings.Instance.MailRecipient = (string)var1;" />
    </If>
  </SubRoutine>
</Professionbuddy>
If you can't do that, u stopid
 
Back
Top