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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Orderbot Desynthesis

Abel1884

New Member
Joined
Jan 3, 2014
Messages
11
Hello everyone,

i want to do my own orderbot to Desy all my itemes in the bag but i cant understand now where the problem is.
Can someone take a look of this script and eventually correct my errors?

Thanks


<?xml version="1.0" encoding="utf-8"?>
<Profile>
<Name>[O] Culinarian Desynthesis</Name>
<KillRadius>50</KillRadius>
<Order>
<!-- dSkill 70: Cloud Cutter (5040) -->
</Order>
</Profile>
 
Assuming you have ExBuddy since RB doesn't come bundled with a desynth tag as far as I know, and you provided no info, this should work =)

Code:
<?xml version="1.0" encoding="utf-8"?>
<Profile>
  <Name>[O] Culinarian Desynthesis</Name>
  <Order>
    <!-- dSkill 70: Cloud Cutter (5040) -->
    <ExLog Color="#00FFFF" Message="Let me just handle this sushi for you Sempai!"/>
    <While Condition="HasItem(5040)">
      <ExSalvage ItemIds="5040" NqOnly="False"/>
    </While>
    <ExLog Color="#00FFFF" Message="All chopped up!"/>
  </Order>
</Profile>
 
Back
Top