hardo
New Member
- Joined
- Aug 12, 2012
- Messages
- 160
- Reaction score
- 0
Hi people,
ich want to write a profil, which does the following:
I found a profile that is very near to what I want. here is the code
The difference is that this profile only post herbs and metal to gbank.
So to solve I have 2 options.
[*]
If I tell you I want to post inscript mats and enchanter mats. how will it look like
ich want to write a profil, which does the following:
- if mail than goto mail
- receive every item in mailbox
- post everything in gbank
- if there is more mail then do another loop if not stop
I found a profile that is very near to what I want. here is the code
Code:
<?xml version="1.0" encoding="utf-8"?>
<Professionbuddy>
<While Condition="HasNewMail" IgnoreCanRun="True">
<GetMailAction GetMailType="AllItems" ItemID="" CheckNewMail="True" MinFreeBagSlots="0" AutoFindMailBox="True" Location="0, 0, 0" />
<PutItemInBankAction Category="TradeGoods" SubCategoryType="WoWItemTradeGoodsClass" SubCategory="Herb" Deposit="All" UseCategory="True" Bank="Guild" ItemID="" GuildTab="0" NpcEntry="0" Amount="0" AutoFindBank="True" Location="0, 0, 0" />
<PutItemInBankAction Category="TradeGoods" SubCategoryType="WoWItemTradeGoodsClass" SubCategory="MetalStone" Deposit="All" UseCategory="True" Bank="Guild" ItemID="" GuildTab="0" NpcEntry="0" Amount="0" AutoFindBank="True" Location="0, 0, 0" />
</While>
</Professionbuddy>
The difference is that this profile only post herbs and metal to gbank.
So to solve I have 2 options.
[*]
- if I new the code for posting everything to gbank
- I know which materials the toon will receive so I can add the code
If I tell you I want to post inscript mats and enchanter mats. how will it look like