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

can somebody help me quickly pls ?

Bagge

New Member
Joined
Nov 6, 2010
Messages
117
Reaction score
0
Code:
<Categories>
    <Category ruleType="PickUp">
      
      <!-- Pick up all rare4+ ilvl60 items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Rare4" stat="level" minValue="61" />
        </StatRules>
      </ItemRule>
      
      <!-- Pick up rare jewelry regardless of stats or level. -->    
      <ItemRule itemBaseType="Jewelry" description="Rare jewelry">
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
      
      <!-- Pick up gold, at least in stacks of 50 -->
      <ItemRule itemName="Gold" stack="50" />

using this atm for keeping my stuff

can somebody edit this part of my lootrules so it will still pick up every lvl 61+ rare and legendary but will ONLY pick up lvl 63 if its a weapon ? is that possible ?
 
Code:
<Category ruleType="PickUp">
      
    <!-- Pick up all rare4+ ilvl60 items -->
		<ItemRule itemBaseTpe="Armor" description="Rare Armor">
			<StatRules>
				<Rule quality="Rare4" stat="level" minValue="61" />
			</StatRules>
		</ItemRule>
      
    <!-- Pick up rare jewelry regardless of stats or level. -->    
		<ItemRule itemBaseType="Jewelry" description="Rare jewelry">
			<StatRules>
				<Rule quality="Rare4"/>
			</StatRules>
		</ItemRule>
		
	<!-- Rare Weapons -->
		<ItemRule itemBaseType="Weapon"  description="Rare Weapons">
			<StatRules>
				<Rule quality="Rare4" stat="level" minValue="63" />
			</StatRules>
		</ItemRule>
      
    <!-- Pick up gold, at least in stacks of 50 -->
		<ItemRule itemName="Gold" stack="50" />

Should do it, not sure, not had alcohols yet today
 
Should do it, not sure, not had alcohols yet today

oh yea lol thanks
havent thought about picking just only lvl 63, however im missing lots of crafting mats with that

if anyone has an idea how to pick up every rare, but salvage all lvl weapons under lvl 63 and only keep lvl 63 weps with 1000+dps if 2h and 700+ if 1h, salvage the others too that would be awesome

however "maxvalue" obviously isnt coded into db, there seems to only exist "minvalue"

open for suggestions tho
 
you answered your problem in your question

bring in the pseudo code

Code:
<Pick>
    < All Weapons> 
<Keep>
    < ItemRule Weapons twoHanded >
         <Rule damage minValue 1000>
         <Rule ilvl 63>
    </ItemRule>
    < ItemRule Weapons oneHanded >
         <Rule damage minValue 700 >
         <Rule ilvl 63>
     </ItemRule>
<Salvage>
    <All Weapons>


Or thereabouts.
 
you answered your problem in your question

bring in the pseudo code

Code:
<Pick>
    < All Weapons> 
<Keep>
    < ItemRule Weapons twoHanded >
         <Rule damage minValue 1000>
         <Rule ilvl 63>
    </ItemRule>
    < ItemRule Weapons oneHanded >
         <Rule damage minValue 700 >
         <Rule ilvl 63>
     </ItemRule>
<Salvage>
    <All Weapons>


Or thereabouts.

just tried ur lootrule if the picking up only lvl 63, it didnt work, not sure why tho

anbody has an idea ?

could it be because i am using "roundedvalues=true" ? i dunno what it does so could it be that ?
 
Last edited:
anyone else got an idea ? or atleat knows how to salvage all lvl 61,62 weapons ?
 
Back
Top