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

DefaultItemRules (gems) : Only flawless and higher?

KiLLian

Member
Joined
Jun 14, 2012
Messages
289
Reaction score
1
How do i make the bot only pick up flawless gems & higher in defaultitemrules?

Now he's picking up squares as well (do not want).

The gem code in the file says :

<!-- Gems -->
<ItemRule itemName="*Ruby*" stack="1" />
<ItemRule itemName="*Emerald*" stack="1" />
<ItemRule itemName="*Topaz*" stack="1" />
<ItemRule itemName="*Amethyst*" stack="1" />
 
Is it really that hard? Just wondering . . .

itemName="*Flawless Square*"

Meaning that anything that has a "Flawless Square" in its name will be picked up . . .
 
Is it really that hard? Just wondering . . .

itemName="*Flawless Square*"

Meaning that anything that has a "Flawless Square" in its name will be picked up . . .
But then he won't pick up "star" gems since its not in the name. So your saying you need to add ALL the levelnames in the code (flawless, star) in front of the gem name?

Currently i think he just picks up ALL gems (and squares are the lowest form of gem in inferno) if a chipped would drop, he'd pick that up too.
 
Star does not drop at all? The highest that can drop is Flawless Square, am i wrong here?
 
Star does not drop at all? The highest that can drop is Flawless Square, am i wrong here?

change to <ItemRule itemName="Flawless*" stack="1" /> ...This should make it pick up all kind of gems with names starting with Flawless.
 
Back
Top