--1.4.1
- Fixed a bug in one handed rare mighty weapon rule applying to two handed rare mighty weapons
- Tightened The Witching Hour for strength (+33%)
- Tightened Inna's Favor (+10%)
- Tightened Natalya's Bloody Footprints (+7%)
- Tightened Ice Climbers without movement speed (+5%)
- Tightened Natalya's Sight (+26%)
- Tightened Visage of Giyua (+14%)
- Tightened Tal Rasha's Brace (+17%)
- Tightened Inna's Radiance (+12%)
// bugged rare misc items like followerspecial and polearm
[QUALITY] == "Rare" && [LEVEL] > 62 && [BASETYPE] == "Misc"
//ignore rule
[QUALITY] == "Rare" && [LEVEL] <= 62 && [BASETYPE] == "Misc" -> [IGNORE]
one question
why polearms are broken and in this section?
[QUALITY] == "Rare" && [LEVEL] <= 63 && [BASETYPE] == "Armor" && [TYPE] == "Source" -> [IGNORE]
[QUALITY] == "Rare" && [LEVEL] <= 63 && [BASETYPE] == "Armor" && [TYPE] == "Mojo" -> [IGNORE]
so... how to disable to pick up wiz offhands?
"Source" doesnt work for me
[QUALITY] == "Rare" && [TYPE] == "Mojo" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "Quiver" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "Orb" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "Shield" -> [IGNORE]
i opened up the .dis files to edit some of the code but it's all jumbled together horizontally. Is there a way i can get a cleaner organized copy?
yeah figured that out earlier today when i remembered a friend of mine talking about it.Use Notepad++
[QUALITY] == "Legendary" && [LEVEL] > 1
[QUALITY] == "Legendary" && [LEVEL] > 1 && [TYPE] == "Jewelry"
//ignore rule
[QUALITY] == "Legendary" && [LEVEL] <= 1 -> [IGNORE]