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

Baffled with Deposit into Guild Bank Profile Code - HELP!

DarkThawts

New Member
Joined
Oct 8, 2014
Messages
3
Reaction score
0
Hi All,

I am trying to code a very simple profile to deposit specific items from my bags into a guild bank.

The first line to deposit ghost iron ore seems to work ok but the next 2 lines do not work at all for the 2 types of trillium, I have checked the item ids and categories but must be missing the obvious here!

Also can you deposit into a specific tab in your guild bank? and what is the code for this, I have tried 0/1/2/3 in the guild tab parameter and also tried the guild tab names but neither work???

Code:
<?xml version="1.0" encoding="utf-8"?>
<Professionbuddy>
  <ChangeBotAction BotName="Combat Bot" />

<!-- PDF Deposit all white trillium ore from bags into gbank -->
<PutItemInBankAction Category="TradeGoods" SubCategoryType="WoWItemTradeGoodsClass" SubCategory="MetalStone" Deposit="All" UseCategory="True" Bank="Guild" ItemID="72103" GuildTab="0" NpcEntry="0" Amount="0" AutoFindBank="True" Location="0, 0, 0" />

<!-- PDF Deposit all black trillium ore from bags into gbank -->
<PutItemInBankAction Category="TradeGoods" SubCategoryType="WoWItemTradeGoodsClass" SubCategory="MetalStone" Deposit="All" UseCategory="True" Bank="Guild" ItemID="72094" GuildTab="0" NpcEntry="0" Amount="0" AutoFindBank="True" Location="0, 0, 0" />

<!-- PDF Deposit all ghost iron ore from bags into gbank -->
<PutItemInBankAction Category="TradeGoods" SubCategoryType="WoWItemTradeGoodsClass" SubCategory="MetalStone" Deposit="All" UseCategory="True" Bank="Guild" ItemID="72092" GuildTab="0" NpcEntry="0" Amount="0" AutoFindBank="True" Location="0, 0, 0" />

</Professionbuddy>

Thanks in advance, apologies if I have posted in the wrong spot...
 
Back
Top