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

Need help by "<If Condition=...>"

BarryDurex

New Member
Joined
Jan 20, 2010
Messages
361
Reaction score
32
Hi,

I am in the process to do a QuestProfile for Horde & Alliance and wanted to make a Fractions query.

I?ve done this, but it doesn't work:
PHP:
  <HBProfile><QuestOrder>   
    <If Condition="Me.IsAlliance">
      <PickUp QuestName="... />
     <TurnIn QuestName="... />
    <ElseIf Condition="Me.IsHorde">
      <PickUp QuestName="... />
     <TurnIn QuestName="... />
    </ElseIf>
    </If>   
 </QuestOrder></HBProfile>
PHP:
   <HBProfile><QuestOrder>   
    <If Condition="Me.Faction == Me.IsAlliance">
     <PickUp QuestName="... />
     <TurnIn QuestName="... />
    <ElseIf Condition="Me.Faction == Me.IsHorde">
     <PickUp QuestName="... />
     <TurnIn QuestName="... />
    </ElseIf>
    </If>   
 </QuestOrder></HBProfile>
HB message is: Warning: Could not parse 'If' body node!


I find no answer in Buddy Wiki: Honorbuddy Profile Tag Attribute: Condition - Buddy Wiki
Can someone help me there?
 
Try:
PHP:
<HBProfile><QuestOrder>   
  <If Condition="Me.IsAlliance">
    <PickUp QuestName="... />
    <TurnIn QuestName="... />
  </If>
  <If Condition="Me.IsHorde">
    <PickUp QuestName="... />
    <TurnIn QuestName="... />
  </If>
 </QuestOrder></HBProfile>
 
I had done it, but it did not work...
I?ve just tried again and suddenly it worked..!
no idea where the error was..

THANK YOU! :)
 
Back
Top