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

Whats wrong witht his PB profile?

HB6371E13

New Member
Joined
Apr 29, 2011
Messages
16
Reaction score
0
:confused: I am a bit of noob when it comes to programing but i tryed my best to make this profile for profession buddy. I made a profile that takes from mail box the ores (elementium, pyrite and obsidium) when you have free bag space and prospect them, and when you dont have bag space send the gems to an alt. If you could help me and tell me whats wrong or even fix this to do what i want i would apriciate that :) thanks a lot in response.

The code is :
Code:
 <!--?xml version="1.0" encoding="utf-8"?-->


  <while condition="Me.FreeNormalBagSlots>14" ignorecanrun="True" childrencount="3">
    <getmailaction entry="53038" getmailtype="Specific" autofindmailbox="True" x="0" y="0" z="0" minfreebagslots="8">
    <getmailaction entry="52185" getmailtype="Specific" autofindmailbox="True" x="0" y="0" z="0" minfreebagslots="8">
    <getmailaction entry="52183" getmailtype="Specific" autofindmailbox="True" x="0" y="0" z="0" minfreebagslots="8">
  </getmailaction></getmailaction></getmailaction></while>
  <if condition="Me.FreeNormalBagSlots <6" ignorecanrun="True" childrencount="1">
    <mailitemaction entry="0" autofindmailbox="True" usecategory="True" category="Gem" subcategorytype="WoWItemGemClass" subcategory="None" x="0" y="0" z="0">
  </mailitemaction></if>
  <disenchantaction actiontype="Prospect" itemtarget="Specific" itemquality="Uncommon" itemid="53038">
  <disenchantaction actiontype="Prospect" itemtarget="Specific" itemquality="Uncommon" itemid="52185">
  <disenchantaction actiontype="Prospect" itemtarget="Specific" itemquality="Uncommon" itemid="52183">
  <getmailaction entry="0" getmailtype="AllItems" autofindmailbox="True" x="0" y="0" z="0" minfreebagslots="2">
</getmailaction></disenchantaction></disenchantaction></disenchantaction>
<while condition="Me.FreeNormalBagSlots>14" ignorecanrun="True" childrencount="3"><getmailaction entry="53038" getmailtype="Specific" autofindmailbox="True" x="0" y="0" z="0" minfreebagslots="8"></getmailaction></while><disenchantaction actiontype="Prospect" itemtarget="Specific" itemquality="Uncommon" itemid="53038"><disenchantaction actiontype="Prospect" itemtarget="Specific" itemquality="Uncommon" itemid="52185"><disenchantaction actiontype="Prospect" itemtarget="Specific" itemquality="Uncommon" itemid="52183">
<getmailaction entry="0" getmailtype="AllItems" autofindmailbox="True" x="0" y="0" z="0" minfreebagslots="2">
</getmailaction></disenchantaction></disenchantaction></disenchantaction>
 

Attachments

Last edited:
I could be wrong but maybe because at the end you have 3 </disenchantaction> when u should really have each of those after each disanchantaction
 
Back
Top