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

[LOOT RULES] Can some one make me a loot rule please.....

Gsi_jimbo

New Member
Joined
May 18, 2012
Messages
77
Reaction score
0
Right im after a quick loot rules please,

stash: gold, tomes, flawless squares, legendary's, Plans

Pickup Ilvl 61+ Rares and magic and salvage for essence.

Thats all i want it to do cause i cant seem to get anything to sell in AH

Thanks in advance

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

<ItemRules name="Ghostie Nogems Ruleset" useRoundedValues="true">
  <!-- The order in which item rules are evaluated. Typically, this is fine for almost all rule sets. 
  However, you may want to switch things around sometimes if you want to force-sell things that may match keep rules. -->
  <Priority priority1="Keep" priority2="Salvage" priority3="Sell" />


			<Categories>
  
    <!-- The PickUp Rules -->
    <Category ruleType="PickUp">
	
		  <!-- Pick up all magic+ items with at least ilvl 61-->
		<ItemRule description="Magic Item with ilvl 61 or higher">
			<StatRules>
				<Rule stat="Quality" minValue="Magic1" />
				<!-- Change minValue to change lowest ilvl picked -->
				<Rule stat="Level" minValue="61"  />
			</StatRules>
		</ItemRule>
		
		<!-- Pick up all magic+ Jewelry with at least ilvl 59-->
		<ItemRule itemBaseType="Jewelry" description="Magic Jewelry with ilvl 59 or higher">
			<StatRules>
				<Rule stat="Quality" minValue="Magic1"/>
				<!-- Change minValue to change lowest ilvl picked -->
				<Rule stat="Level" minValue="59"/>
			</StatRules>
		</ItemRule>
		
		  <!-- Pick up all rare items -->
		<ItemRule description="Rare Item">
			<StatRules>
				<Rule stat="Quality" minValue="Rare4" />
			</StatRules>
		</ItemRule>
			
		<!-- Pick up all gold-->
		<ItemRule description="Gold" itemName="Gold">
			<StatRules>
				<Rule stacks="100" />
			</StatRules>
		</ItemRule>
		  
		<!-- Pick up all pages,tomes and plans, blacksmithing/jewelcrafting -->
		<ItemRule itemName="Tome of*" />
		<ItemRule itemName="*Plan:*" />
		<ItemRule itemName="*Design:*" />
		
		<!-- Gems -->
		<ItemRule description="Gems" itemName="Flawless*" />
			

    </Category>
	
	<Category ruleType="Keep">
	
		<ItemRule description="Legendary Item">
			<StatRules>
				<Rule quality="Legendary" />
			</StatRules>
		</ItemRule>
		
<!-- Pick up all pages,tomes and plans, blacksmithing/jewelcrafting -->
		<ItemRule itemName="Tome of*" />
		<ItemRule itemName="*Plan:*" />
		<ItemRule itemName="*Design:*" />
		<ItemRule itemName="Flawless Square*" />
	</Category>
	
	<Category ruleType="Salvage">
		  <!-- Pick up all magic+ items with at least ilvl 61-->
		<ItemRule description="Magic Item with ilvl 61 or higher">
			<StatRules>
				<Rule stat="Quality" minValue="Magic1" />
				<!-- Change minValue to change lowest ilvl picked -->
				<Rule stat="Level" minValue="61"  />
			</StatRules>
		</ItemRule>
		
		<!-- Pick up all magic+ Jewelry with at least ilvl 59-->
		<ItemRule itemBaseType="Jewelry" description="Magic Jewelry with ilvl 59 or higher">
			<StatRules>
				<Rule stat="Quality" minValue="Magic1"/>
				<!-- Change minValue to change lowest ilvl picked -->
				<Rule stat="Level" minValue="59"/>
			</StatRules>
		</ItemRule>
	</Category>
</Categories>
</ItemRules>

That should do it *should*
 
Back
Top