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

Picking up Reduced Level Requirement Items

lottic

New Member
Joined
Jun 14, 2014
Messages
2
Reaction score
0
Does anyone know how to customise Trinity to allow DB to pick up items with specific stats? Notably rare items with Reduced Level Requirement?

Cheers!
 
I'd love to know how to stash any -lvl req item with say 20 or more reduced levels.
 
Level Requirement Reduced Item Rule

I'm not sure ... but , Will this work ?
- add this code to the top of your , DB / rules / DefaultItemRules.xml ?
Note : this is just a read/learn try it out theory ...

<!-- Pick up all Level Requirement Reduced items -->
<ItemRule>
<StatRules>
<Rule stat="LEVELRED" minvalue="20"
</StatRules>
</ItemRule>

EDIT : it may need to be a keep item rule ?

<!-- Keep all Level Requirement Reduced items -->
<ItemRule ruleType="Keep" description="Level Requirement Reduced">
<StatRules>
<Rule stat="LEVELRED" minvalue="20"
</StatRules>
</ItemRule>
 
Last edited:
Back
Top