Replies: 2 comments
-
Still up on this. I would like to go for [SpecificPrefix] == MyValue && [AnySuffixButAlsoDon'tPickWithoutSuffix] Any Suggestions? |
Beta Was this translation helpful? Give feedback.
-
Found a way around the + to maximum/minimum damage : On the stat side, instead of using [maxdamage] ( this is actually the weapon maxdamage including all affix adds) use the following ( found in ntitemalias.dbl ) [plusmaxdamage] >= 11 //black !!!Watch out nipcheck will falsely throw an error on those, but kolbot will correctly check and pick up >= 11+ to maximum damage suffix and >= 9+ to minimum damage suffix with this ( it actually shouldn't care if suffix or prefix ) !!! I still need to find a way to get any suffix / [Suffix] == ITEM HAS SUFFIX |
Beta Was this translation helpful? Give feedback.
-
[name] == smallcharm && [quality] == magic && [Prefix] >= 1 # [maxhp] == 15 && [itemlevelreq] <= 30
Intended to pick all sc's with ANY prefix additionally to 15 life and levelreq but doesn't seem to work, Any other way to get the intended 15life / any prefix?
edit: it doesn't accept the [Prefix] on the STAT-Side ( after first #), is this a bug or is [Prefix] and [Suffix] intended to be on the Property Side (before first #)?
also:
[Type] == Sword && [Quality] == Magic # [WarCriesSkillTab] >= 3 && [maxdamage] >= 11
Intended to pick WC weapon with >=11 to max damage, but weapon base max damage seems to trigger pickup also, any workaround on this or do i have to calculate this by hand for every weapon,
Beta Was this translation helpful? Give feedback.
All reactions