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

Looting issues?

Tueron

New Member
Joined
Jul 16, 2012
Messages
4
Reaction score
0
I've been trying to put together a decent set of loot rules (specifically, keep all 61+ armors, jewelery, legendaries, and 62+ weapons) to improve my gearset and allow a fair return on salvaging. As far as pickup goes, I've been averaging 350-400k/hr fairly easily with the bad gear that I have, however every time my inventory gets full, my system goes full retard mode, and does nothing but port back and forth to town endlessly.

Not entirely sure why, I've tried complex loot rules, simple loot rules, and other peoples loot rules, so I'm assuming it could be something as simple as scripting, however, most of my scripting I've pick-and-choosen out of other peoples WORKING loot rules, so I'm not entirely sure why this isn't working.

I'm running Slippery Pete's Fast Sarkoth, and using (again, using a simple one in order to make figuring out what's wrong with this) the following loot rules:

Code:
<?xml version="1.0" encoding="utf-8" ?>

<ItemRules name="Based off a No Trash - Worth It lootrules" useRoundedValues="true">

  <Priority priority1="Keep"/>

  <Categories>
    <Category ruleType="PickUp">
      
      <!-- Pick up all Legendary items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Legendary" />
        </StatRules>
      </ItemRule>

      <!-- Pick up gold, at least in stacks of 100 -->
      <ItemRule itemName="Gold" stack="1" />

      <ItemRule itembaseType="Armor" twoHanded="false" description="ilvl62 Rare">

	<StatRules>

		<Rule stat="Level" minValue="61" quality="Magic1"/>

	</StatRules>

      </ItemRule>

  </Category>

    <Category ruleType="Keep">

      <!-- Keep legendaries, regardless of stats. -->
      <ItemRule ruleType="Keep" description="Legendary items!">
        <StatRules>
          <Rule quality="Rare4" />
          <Rule quality="Legendary" />
        </StatRules>
      </ItemRule>

      <ItemRule itemName="Mythic Health Potion" />

   </Category>

   <Category ruleType="Salvage">
       <ItemRule description="Salvage Everything">
        <StatRules>
		  <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>
   </Category>
  </Categories>
</ItemRules>

With these rules, again, incredibly basic -- it should be picking up Legendaries, gold, All magic armor ilvl 61+. Upon being full, it should be keeping all rares/legendaries, health potions, and salvaging all magic items?

As far as porting back and forth endlessly or going full retard mode, I've been unable to decipher on how to salvage. Any clues? I've tried the ruleType and just itemRule description=Salvage. Guess I've stumbled into the incorrect code :(

-- After some extra searching, it looks like salvaging is just out of commision at the moment, is this correct?
 
Last edited:
<Priority priority1="Keep"/>

Change it to

<Priority priority1="Keep" priority2="Salvage" priority3="Sell" />

and give it a shot
 
Back
Top