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

I want to construct a statement containing multiple or expressions in xml

jason805

New Member
Joined
Jul 1, 2012
Messages
117
Reaction score
0
Is there some sort of command/statement I can use to define and "or" in an xml profile?

Say for instance

<MoveTo questId="1" x="4291.727" y="3768.172" z="25.28019" pathPrecision="10" />
"or"
<MoveTo questId="1" x="4291.8727" y="3768.272" z="25.28019" pathPrecision="10" />
 
another example...

<Order>
<If condition="(not Me.IsInTown)">
<UseTownPortal questId="1" />
<WaitTimer questId="1" waitTime="5000" />
</If>
<Continue profile="TowerOfTheDamned_Level1.xml" />

OR???

<Continue profile="TowerOfTheDamned_Level2.xml" />
</Order>
 
For random profile loading you can use Radsatom and create tags like:
<Continue profile="TowerOfTheDamned_Level1.xml, TowerOfTheDamned_Level2.xml" />

Afaik the random move is not posible with the current set of xml tags...
 
Back
Top